sábado, 5 de agosto de 2017

EPSG Sad69 UTM 22S MC -51


UTM SAD69 22S --> EPSG:29192
WGS84                 --> EPSG:4326
SIRGAS 2000 / UTM zone 23S     ->  EPSG:31983
SIRGAS 2000 -> EPSG:4674

from osgeo import osr

src = osr.SpatialReference()
tgt = osr.SpatialReference()
src.ImportFromEPSG(31983)
tgt.ImportFromEPSG(4674)

transform = osr.CoordinateTransformation(src, tgt)
coords = transform.TransformPoint(580210.101, 7787362.590)
x,y = coords[0:2]

Nenhum comentário: