Last active
March 9, 2021 19:51
-
-
Save max-mapper/c6924fc82e573e851eb1e2ffa49d6416 to your computer and use it in GitHub Desktop.
filtering and converting geojson to shapefiles and back
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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