标签: python coordinates coordinate-systems coordinate-transformation
当我解析.shp文件(使用Python模块pyshp)时,点坐标存储在英尺坐标系(ftUS)中。如何将此数据转换为纬度和经度格式?
import shapefile sf = shapefile.Reader("test") shapes = sf.shapes() print(shapes[0].points)
结果:[[1447887.395856008,552512.2958560139]]