I am having trouble getting GDAL to read a file geodatabase with data projected in NAD83(2011) State Plane Arizona Central FIPS 0202. I have developed the following code:
# standard imports
import sys
# import OGR
from osgeo import ogr
# use OGR specific exceptions
ogr.UseExceptions()
# get the driver
driver = ogr.GetDriverByName("OpenFileGDB")
print ("I made it to line 12")
# opening the FileGDB
try:
gdb = driver.Open("CM_2009_DEM.gdb", 0)
except Exception, e:
print e
sys.exit()
The data can be downloaded here. I am new to python and GDAL and I am simply trying to list out the items in the specified geodatabase. When i run the code I get the following error:
EPSG PCS/GCS code 102988 not found in EPSG support files. IS this a valid EPSG coordinate system?
The projection was made in house and there hasn't been an EPSG of ESRI code assigned to it yet. I know its valid, but is there a way to make GDAL think its valid?
The projection file reads as follows:
PROJCS["NAD_1983_2011_StatePlane_Arizona_Central_FIPS_0202",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",213360.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-111.9166666666667],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",31.0],UNIT["Meter",1.0]]