Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个形状文件。以及那里的一些数据。这是我创建它的方式:
w = shapefile.Writer('shapefiles/test/line_2') w.field('Latitude','C') w.poly(arr) w.record('linestring3') w.close()
现在,我想将数据附加到这个 shapefile。怎么做?
谢谢