-
-
Save marioblas/b756bb01bb02a18fb993 to your computer and use it in GitHub Desktop.
🌍 ogr2ogr - Get a GeoJSON with 4326 projection from a shapefile
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
# Get a geojson with 4326 projection from a shapefile | |
ogr2ogr -f GeoJSON -t_srs crs:84 name.geojson name.shp | |
# -f format_name: GeoJSON (ESRI Shapefile, GML, MapInfo file...) | |
# -t_srs: Reproject/transform to this SRS on output (crs:84 is WGS84) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment