We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GeoJSON is nice, but SHP is more portable.
If ogr2ogr is present:
Note: ogr2ogr won't replace an existing file, so remove them, and in the clean make sure that dir exists
rm -f shp/z2-labels.* shp/z2-points.* ogr2ogr -f "ESRI Shapefile" shp/z2-labels.shp geojson/z2-labels.json ogr2ogr -f "ESRI Shapefile" shp/z2-points.shp geojson/z2-points.json
In the general Makefile,
clean: mkdir -p shp
The text was updated successfully, but these errors were encountered:
with the -overwrite flag on.
Sorry, something went wrong.
No branches or pull requests
GeoJSON is nice, but SHP is more portable.
If ogr2ogr is present:
Note: ogr2ogr won't replace an existing file, so remove them, and in the clean make sure that dir exists
rm -f shp/z2-labels.* shp/z2-points.*
ogr2ogr -f "ESRI Shapefile" shp/z2-labels.shp geojson/z2-labels.json
ogr2ogr -f "ESRI Shapefile" shp/z2-points.shp geojson/z2-points.json
In the general Makefile,
clean:
mkdir -p shp
The text was updated successfully, but these errors were encountered: