This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from osgeo import osr | |
wgs84 = osr.SpatialReference() | |
wgs84.ImportFromEPSG(4326) | |
utm10 = osr.SpatialReference() | |
utm10.ImportFromEPSG(26910) | |
# Play with these settings, you'll find the utm10 strategey makes no difference bu | |
# the wgs84 one needs traditional order | |
wgs84.SetAxisMappingStrategy(osr.OAMS_TRADITIONAL_GIS_ORDER) |
NewerOlder