As a python newbie I am searching for help :) hope to find it here.
I have a Geotiff file. I need to find coordinates in the Geotiff to find the position of a thermometer within the geotiff (the thermometer has the coordinates -115.47083484975207, 35.75837483423 e.g.).
I have these geotiff information:
PROJCS["NAD83 / UTM zone 12N",
GEOGCS["NAD83",DATUM["North_American_Datum_1983",
SPHEROID["GRS 1980",6378137,298.2572221010002,AUTHORITY["EPSG","7019"]],
AUTHORITY["EPSG","6269"]],
PRIMEM["Greenwich",0],
UNIT["degree",0.0174532925199433],
AUTHORITY["EPSG","4269"]],
PROJECTION["Transverse_Mercator"],
PARAMETER["latitude_of_origin",0],
PARAMETER["central_meridian",-111],
PARAMETER["scale_factor",0.9996],
PARAMETER["false_easting",500000],
PARAMETER["false_northing",0],
UNIT["metre",1,AUTHORITY["EPSG","9001"]],
AUTHORITY["EPSG","26912"]]
How do I transform the geotiff, so that I get coordinates in lat and lon? I have already tried this
But I don't quiet know if this leads me to a solution. I just want to know how to find to position of the thermometer in the geotiff. Any help is very much appreciated, please tell me if you need any more information!!