Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
🗺 Generate SVGs or Cartesian coordinates of a path from a GPX file or list of coordinates
🗺 Generate SVGs or Cartesian points of a path from a GPX file or list of coordinates
Get an SVG string, the svg's path
string or list of Cartesian coordinates mapped to the path supplied by a GPX file or an array of geographical coordinates (lat/long).
$ npm install geosvg
import geosvg from "geosvg";
// Read the GPX string from a file first
const gpx = readFileSync(PATH_TO_GPX, "utf-8");
// ...or directly create a list of coordinates
const coordinates = [
{ latitude: 28.1234, longitude: 77.4567 },
{ latitude: 28.1235, longitude: 77.4568 },
{ latitude: 28.1236, longitude: 77.4569 },
];
// Get the SVG string
const svg = geosvg.fromGpx(gpx).toSvg();
const svg = geosvg.fromCoordinates(coordinates).toSvg();
//=> `<svg xmlns="..." width="..." height="..." viewBox="..."><path d="..." /></svg>`
// Get the SVG path string
const svgPath = geosvg.fromGpx(gpx).toSvgPath();
const svgPath = geosvg.fromCoordinates(coordinates).toSvgPath();
//=> { width: 1000, height: 1200, path: `M 296.072357,57.331839 C 295.681288,57.932999 294.762101...` }
// Get the cartesian points
const points = geosvg.fromGpx(gpx).toCartesianDetails();
const points = geosvg.fromCoordinates(coordinates).toCartesianDetails();
//=> { width: 1000, height: 1200, points: [{ x: 300, y: 700 }, { x: 301, y: 700.25 }, ...] }
.toSvg(options?)
, .toSvgPath(options?)
{
smooth?: boolean = true; // whether to smoothen the lines or not
smoothing?: number = 0.2; // smoothening factor
accuracy?: number = 0.001; // accuracy of distance measurements
scale?: number = undefined; // max-dimensions to scale the svg too
svg?: {
width?: number = undefined; // width of the svg, ideally leave it undefined
height?: number = undefined; // height of the svg, ideally leave it undefined
stroke?: string = "red"; // stroke color of the svg
strokeWidth?: number = 4; // stroke with of the svg
strokeLinecap?: string = "round"; // stroke's line-cap style
strokeMiterlimit?: number = 4; // stroke's Miter limit
fill?: string = "none"; // whether to fill in the path with a color
};
}
.toCartesianDetails(options?)
{
accuracy?: number = 0.001; // accuracy of distance measurements
}
FAQs
🗺 Generate SVGs or Cartesian coordinates of a path from a GPX file or list of coordinates
The npm package geosvg receives a total of 13 weekly downloads. As such, geosvg popularity was classified as not popular.
We found that geosvg demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.