[GIS] Testing if two GDAL datasets are in same projection

coordinate systemgdalpython

I'm attemping to write a function to test if a list of datasets are in the same projection. Naively, I thought I could test the text of WKTs, but that does not work in the following case:

'PROJCS["NAD_1983_UTM_Zone_14N",GEOGCS["NAD83",DATUM["North_American_Datum_1983", …'

'PROJCS["NAD83 / UTM zone 14N",GEOGCS["NAD83",DATUM["North_American_Datum_1983", …'

Even though the projections are identical, and the rest of the WKT is identical, the tags leading them are not which makes me wonder if there is a formal mechanism for testing the equality of projection systems.

I am programming with the GDAL extensions in Python.

Best Answer

Try importing the WKT into an GDAL/OSR SpatialReference object, and compare the non-zero SRIDs. It is much simpler to compare two integers than to compare two text markups.

Look at this answer to Shapefile PRJ to PostGIS SRID lookup table? to get an idea how to use GDAL for this purpose.

Related Question