How to merge several shapefile? · Issue #191 ...
github.com › GeospatialPython › pyshpAug 27, 2019 · Unfortunately it requires iterating through every feature of the shapefile, instead of just extending a list of shapes/records. import shapefile as pyshp def merge_shapefiles (shapefiles, out_shapefile): '''Merge shapefiles into one''' with pyshp.Writer (out_shapefile) as shp_writer: for shapefile in shapefiles: with pyshp.Reader (shapefile) as ...