Guest User

Untitled

a guest
Jul 20th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # Shapefile in state plane to geojson wgs84
  2. docker run -v $(pwd):/data -i fuzzytolerance/gdal ogr2ogr -f "GeoJSON" parcels.geojson PWD_PARCELS.shp -s_srs EPSG:2272 -t_srs EPSG:4326
  3.  
  4. # Geojson to directory of uncompressed vector tiles
  5. docker run -it -v $(pwd):/tmp klokantech/tippecanoe tippecanoe --no-feature-limit --no-tile-size-limit --no-tile-compression --minimum-zoom=11 --maximum-zoom=15 --exclude-all --drop-fraction-as-needed --output-to-directory /tmp/tiles -L parcels:/tmp/parcels.geojson
Add Comment
Please, Sign In to add comment