Sto riscontrando un piccolo problema con l'API OGR di Python. Quello che sto cercando di fare è ottenere tutte le coordinate di ciascun vertice dell'anello esterno di un poligono.
Questo è quello che ho finora:
import osgeo.ogr
import glob
path = "/home/woo/maps/"
out = path + 'output.txt'
file = open(out,'w')
for filename in glob.glob(path + "*.shp"):
ds = osgeo.ogr.Open(filename)
layer1 = ds.GetLayer(0)
print layer1.GetExtent()
for feat in layer1:
geom = feat.GetGeometryRef()
ring = geom.GetGeometryRef(0)
points = ring.GetPointCount()
#Not sure what to do here
file.close()
Ho sentito che puoi appena for
oltre la regione, ma che restituisce solo gli anelli nel poligono, non i nodi.
Chiunque sia in grado di aiutare.