-
-
Save lb1a/4329457 to your computer and use it in GitHub Desktop.
This file contains 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 gdal, osr | |
>>> ds = gdal.Open('C:/Users/kshannon/Desktop/test.tif') | |
>>> sr = osr.SpatialReference() | |
>>> sr.ImportFromWkt(ds.GetProjection()) | |
0 | |
>>> sr.ExportToProj4() | |
'+proj=sinu +lon_0=0 +x_0=0 +y_0=0 +a=6371007.181 +b=6371007.181 +units=m +no_defs ' | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment