npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

geosvg

v1.2.3

Published

🗺 Generate SVGs or Cartesian coordinates of a path from a GPX file or list of coordinates

Downloads

27

Readme

geosvg

🗺 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).

Install

$ npm install geosvg

Usage

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 }, ...] }

Options

.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
}

License

MIT