Obtain Latitude and Longitude from a GeoTIFF File Obtain Latitude and Longitude from a GeoTIFF File python python

Obtain Latitude and Longitude from a GeoTIFF File


To get the coordinates of the corners of your geotiff do the following:

from osgeo import gdalds = gdal.Open('path/to/file')width = ds.RasterXSizeheight = ds.RasterYSizegt = ds.GetGeoTransform()minx = gt[0]miny = gt[3] + width*gt[4] + height*gt[5] maxx = gt[0] + width*gt[1] + height*gt[2]maxy = gt[3] 

However, these might not be in latitude/longitude format. As Justin noted, your geotiff will be stored with some kind of coordinate system. If you don't know what coordinate system it is, you can find out by running gdalinfo:

gdalinfo ~/somedir/somefile.tif 

Which outputs:

Driver: GTiff/GeoTIFFSize is 512, 512Coordinate System is:PROJCS["NAD27 / UTM zone 11N",    GEOGCS["NAD27",        DATUM["North_American_Datum_1927",            SPHEROID["Clarke 1866",6378206.4,294.978698213901]],        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",0],    UNIT["metre",1]]Origin = (440720.000000,3751320.000000)Pixel Size = (60.000000,-60.000000)Corner Coordinates:Upper Left  (  440720.000, 3751320.000) (117d38'28.21"W, 33d54'8.47"N)Lower Left  (  440720.000, 3720600.000) (117d38'20.79"W, 33d37'31.04"N)Upper Right (  471440.000, 3751320.000) (117d18'32.07"W, 33d54'13.08"N)Lower Right (  471440.000, 3720600.000) (117d18'28.50"W, 33d37'35.61"N)Center      (  456080.000, 3735960.000) (117d28'27.39"W, 33d45'52.46"N)Band 1 Block=512x16 Type=Byte, ColorInterp=Gray

This output may be all you need. If you want to do this programmaticly in python however, this is how you get the same info.

If the coordinate system is a PROJCS like the example above you are dealing with a projected coordinate system. A projected coordiante system is a representation of the spheroidal earth's surface, but flattened and distorted onto a plane. If you want the latitude and longitude, you need to convert the coordinates to the geographic coordinate system that you want.

Sadly, not all latitude/longitude pairs are created equal, being based upon different spheroidal models of the earth. In this example, I am converting to WGS84, the geographic coordinate system favoured in GPSs and used by all the popular web mapping sites. The coordinate system is defined by a well defined string. A catalogue of them is available from spatial ref, see for example WGS84.

from osgeo import osr, gdal# get the existing coordinate systemds = gdal.Open('path/to/file')old_cs= osr.SpatialReference()old_cs.ImportFromWkt(ds.GetProjectionRef())# create the new coordinate systemwgs84_wkt = """GEOGCS["WGS 84",    DATUM["WGS_1984",        SPHEROID["WGS 84",6378137,298.257223563,            AUTHORITY["EPSG","7030"]],        AUTHORITY["EPSG","6326"]],    PRIMEM["Greenwich",0,        AUTHORITY["EPSG","8901"]],    UNIT["degree",0.01745329251994328,        AUTHORITY["EPSG","9122"]],    AUTHORITY["EPSG","4326"]]"""new_cs = osr.SpatialReference()new_cs .ImportFromWkt(wgs84_wkt)# create a transform object to convert between coordinate systemstransform = osr.CoordinateTransformation(old_cs,new_cs) #get the point to transform, pixel (0,0) in this casewidth = ds.RasterXSizeheight = ds.RasterYSizegt = ds.GetGeoTransform()minx = gt[0]miny = gt[3] + width*gt[4] + height*gt[5] #get the coordinates in lat longlatlong = transform.TransformPoint(minx,miny) 

Hopefully this will do what you want.


I don't know if this is a full answer, but this site says:

The x/y map dimensions are called easting and northing. For datasets in a geographic coordinate system these would hold the longitude and latitude. For projected coordinate systems they would normally be the easting and northing in the projected coordinate system. For ungeoreferenced images the easting and northing would just be the pixel/line offsets of each pixel (as implied by a unity geotransform).

so they may actually be longitude and latitude.