import shapefile w = shapefile.Writer(shapeType=shapefile.POLYGONZ) #x,y,z et pour type=15, voir la documentation sur les shapefiles) w.poly([[[-89.0, 33, 12], [-90, 31, 11], [-91, 30, 12]]], shapeType=15) w.field("nom") w.record("test") w.save("MonpolyZ")
création de shapefile 3D
- 6323 lectures