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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!