GDAL / Python: come posso ottenere il nome del sistema di coordinate da SpatialReference?


18

In Python, usando GDAL, ho estratto la proiezione di un raster come stringa WKT come segue:

wkt = dataset.GetProjection()
# wkt is 'PROJCS["GDA_1994_Transverse_Mercator",GEOGCS["GDA_1994",DATUM["GDA_1994",SPHEROID["GRS_1980",6378137,298.2572221010002],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",117],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",10000000],UNIT["Meter",1]]'

Utilizzando la stringa WKT, posso creare un'istanza SpatialReference come segue:

src = osr.SpatialReference()
src.ImportFromWkt(wkt)

Questo è facile. Posso estrarre srcabbastanza facilmente diversi parametri della proiezione come la zona UTM, ecc. Ma non riesco a capire come estrarre qualcosa come il nome della proiezione, cioè "GDA_1994_Transverse_Mercator". Questo deve sicuramente essere possibile, ma la documentazione dell'API Python potrebbe anche essere inesistente per tutto l'uso che è.

Come estraggo i nomi della proiezione e il sistema di coordinate geografiche?

Risposte:


46

Vedi il tutorial sulle proiezioni OGR e la classe OGRSpatialReference . In particolare, il metodo GetAttrValue .

Ecco un esempio funzionante.

from osgeo import gdal,osr
ds=gdal.Open(r'SOMERASTER.TIF')
prj=ds.GetProjection()
print prj

srs=osr.SpatialReference(wkt=prj)
if srs.IsProjected:
    print srs.GetAttrValue('projcs')
print srs.GetAttrValue('geogcs')

Per il mio raster questo stampa:

PROJCS["WGS 84 / UTM zone 55N",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433],AUTHORITY["EPSG","4326"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",147],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","32655"]]
'WGS 84 / UTM zone 55N'
'WGS 84'
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.