I have coordinate data consisting of two 6-digit numbers (e.g., 300,000 250,000) that I want to convert into long., lat. coordinates. I'm told that the coordinate data (referred to as GLNX, GLNY) come from the Michigan State Plane coordinate system, EPSG number ESRI:102121 However, when I pass that 102121 number to gdal.ImportFromEPSG, it complains that it knows it not. Two questions:
- How do I create a SpatialReference for ESRI:102121
- Can I pass my 6-digit number pair directly to reProject, or do I need to "adjust" it, e.g., scale by some power of 10, or convert from feet to meters, or what?