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

shapifier

v0.1.1

Published

Command-line utility to add geojson polygon property (e.g., name or ID) to csv point data

Downloads

4

Readme

Shapifier

Command-line utility to add polygon fields (e.g., name or ID) to point data. Built on the geojson-geometries-lookup package, Shapifier provides a command-line interface to handle a common use-case: matching point-based data to shape-based bada based on their geometries (i.e., assign states to cities based on their latitude and longitude alone).

Installation

$ npm install -g shapifier

Basic Usage

In the terminal, navigate to the directory containing: (1) a csv file with point data you want to match and (2) a geojson file with the polygons you want to match the points to.

Use the shapify command to match points to polygons:

$ shapifier shapify points.csv polygons.geojson fieldname

This will take the points from points.csv, compare them to the polygons in polygons.geojson and return points-shapified-[timestamp].csv file, which will include a new column with the values from fieldname.

For example, if you have us-cities.csv (with fields called latitude and longitude) and want to know what congressional district each city falls in (from cong-districts.geojson where dist-code is field name for congressional district number), you would call shapify like this:

$ shapifier shapify us-cities.csv cong-districts.geojson dist-number

This will return a csv file identical to us-cities.csv with a new column dist-code that includes the code from the congressional district each city falls in. Shapifier will return MULTIPLE for any cities that match to multiple congressional districts and NONE for cities that do not match to any congressional districts.

Syntax

The shapify command has the following <required> and [optional] arguments:

$ shapifier shapify <point-file-name> <polygon-file-name> <polygon-field> [latitude-field] [longitude-field]

point-file-name

Required Name of csv file containing the points you want to match. Does not have to include file extension (e.g., points.csv and points will both work).

polygon-file-name

Required Name of the geojson file containing the polygons you want to match the points to. Does not have to include file extension (e.g., polygons.geojson and polygons will both work).

polygon-field

Required Name of the geojson feature property field that you want to attach to the point data (e.g., name, ID, code, etc.).

latitude-field

Optional Name of the csv field containing latitude data for each point. If blank, defaults to latitude.

longitude-field

Optional Name of the csv field containing longitude data for each point. If blank, defaults to longitude.

Multiple Match Flag

Add the -m flag to the shapify command to specify how to handle points that match to more than one polygon. If -m flag is included, data will be returned for all matching polygons in a semicolon-separated list. This is useful if your polygon file includes multiple layers of geographic data (e.g., counties and states). If -m flag is not included, the default behavior is to return MULTIPLE for each point with multiple matches.