pyshp

How to append data to shapefile?

浪尽此生 提交于 2021-02-10 15:57:57
问题 I have a shapefile. and some data there. It's the way I created it: w = shapefile.Writer('shapefiles/test/line_2') w.field('Latitude','C') w.poly(arr) w.record('linestring3') w.close() Now, I want to append data to this shapefile. How it can be done? Thanks 来源: https://stackoverflow.com/questions/60902385/how-to-append-data-to-shapefile