Last active
November 1, 2022 17:54
-
-
Save frankrowe/6071443 to your computer and use it in GitHub Desktop.
PyShp, shp to geojson in python
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
import shapefile | |
# read the shapefile | |
reader = shapefile.Reader("my.shp") | |
fields = reader.fields[1:] | |
field_names = [field[0] for field in fields] | |
buffer = [] | |
for sr in reader.shapeRecords(): | |
atr = dict(zip(field_names, sr.record)) | |
geom = sr.shape.__geo_interface__ | |
buffer.append(dict(type="Feature", \ | |
geometry=geom, properties=atr)) | |
# write the GeoJSON file | |
from json import dumps | |
geojson = open("pyshp-demo.json", "w") | |
geojson.write(dumps({"type": "FeatureCollection",\ | |
"features": buffer}, indent=2) + "\n") | |
geojson.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey I am trying to do same thing using pycharm but its giving error feedback. can you assist me sire.