Skip to content

Instantly share code, notes, and snippets.

@max-mapper
Last active March 9, 2021 19:51
Show Gist options
  • Save max-mapper/c6924fc82e573e851eb1e2ffa49d6416 to your computer and use it in GitHub Desktop.
Save max-mapper/c6924fc82e573e851eb1e2ffa49d6416 to your computer and use it in GitHub Desktop.
filtering and converting geojson to shapefiles and back
// data from geojson lines file from https://mapzen.com/data/metro-extracts/
cat portland_oregon_osm_line.geojson | jsonfilter features.* > lines.ndjson
cat lines.ndjson | jsonfilter --match="this.properties.bicycle && this.properties.bicycle !== 'no'" > sharedpaths.json
cat lines.ndjson | grep "cycleway" >> sharedpaths.json
cat sharedpaths.json | sort | uniq > dedupe.json
mv dedupe.json sharedpaths.json
cat sharedpaths.json | ndjson-reduce | ndjson-map '{type: "FeatureCollection", features: d}' > sharedpaths.geojson
mkdir shp
cd shp
ogr2ogr -f "ESRI Shapefile" sharedpaths.shp ../sharedpaths.geojson OGRGeoJSON
// then drag drop the shapefile on mapshaper.org, or use the geojson on geojson.io if it's under 5MB or so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment