我怀疑这是一个需要回答的微不足道的问题,但是如何将 mapinfo mid/mif 文件加载到 geopandas 中?
虽然加载和操作 .shp 文件很简单,但我不知道要使用什么代码:
以下是我尝试使用的一些数据示例:http: //www.stoke.gov.uk/ccm/content/business/general/open-geospatial-consortium-data-catalogue.en
cylpaths = geopandas.GeoDataFrame.from_file(path)
我试图测试几何,它显示:
cylpaths.crs
Out[15]:
{u'ellps': u'airy',
u'k': 0.9996012717,
u'lat_0': 49,
u'lon_0': -2,
u'no_defs': True,
u'proj': u'tmerc',
u'towgs84': u'375,-111,431,-0,-0,-0,0',
u'units': u'm',
u'x_0': 400000,
u'y_0': -100000}
但是当我尝试预览数据时,我得到一个空数据框:
cylpaths
Out[16]:
Int64Index([], dtype='int64') Empty GeoDataFrame
我有点迷失在弄清楚我接下来需要做什么。