- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
澳大利亚选举委员会免费提供澳大利亚选举边界的 ESRI 和 MapInfo GIS 图层 download 。我想使用免费工具将此数据转换为缩略图多边形图像。
最佳答案
我假设您想要为每个选民提供单独的图像?如果是这样,我将使用 python 采取以下方法:
安装GDAL/OGR tools和他们的python bindings 。下载选举边界的 ESRI shapefile。确保您可以使用 OGR 读取多边形几何图形:
import sys
import ogr
ds = ogr.Open( "/path/to/boundary/file.shp" )
if ds is None:
print "Open failed.\n"
sys.exit( 1 )
lyr = ds.GetLayer(0)
lyr.ResetReading()
feat = lyr.GetNextFeature()
while feat is not None:
geom = feat.GetGeometryRef()
if geom is None or geom.GetGeometryType() != ogr.wkbPolygon:
print "no poly geometry\n"
feat = lyr.GetNextFeature()
ds.Destroy()
安装matplotlib , shapely和 descartes 。修改上面的脚本,通过 shapely 和 descartes 将每个多边形加载到 matplob 中:
import sys
import ogr
from shapely.wkb import loads
from descartes import PolygonPatch
from matplotlib import pyplot
ds = ogr.Open( "/path/to/boundary/file.shp" )
if ds is None:
print "Open failed.\n"
sys.exit( 1 )
lyr = ds.GetLayer(0)
lyr.ResetReading()
feat = lyr.GetNextFeature()
while feat is not None:
geom = feat.GetGeometryRef()
if geom is None or geom.GetGeometryType() != ogr.wkbPolygon:
print "no poly geometry\n"
else:
# create matplotlib figure:
fig = pyplot.figure(1, figsize = [10,10], dpi = 300) #create 10x10 figure
ax = fig.addsubplot(111) #Add the map frame (single plot)
# add polygon:
patch = PolygonPatch(loads(feature.GetGeometryRef().ExportToWkb()), plus colour and line considerations)
ax.addpatch(patch) # simply add the patch to the subplot
# set plot vars
ax.set_xlim(get xmin and xmax values from data)
ax.set_ylim(get ymin and ymax values from data)
ax.set_aspect(1)
# save as image
pyplot.savefig('somefile.png', some arguments you like)¶
feat = lyr.GetNextFeature()
ds.Destroy()
显然,您需要对此进行一些修复,以使其按照您想要的方式绘制,但一般方法应该是合理的。
关于image - 如何使用免费工具将 ESRI 或 MapInfo GIS 数据转换为图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3226018/
我怀疑这是一个需要回答的小问题,但我如何将 mapinfo mid/mif 文件加载到 geopandas 中? 虽然加载和操作 .shp 文件很简单,但我不知道要使用什么代码: 以下是我尝试使用的一
法国国家研究所 (Insee) 提供 MapInfo 格式的地理数据(两个文件 .mid 和 .mif 以及一个 dbf 文件)。如何在 R 中读取这些文件? 这是一个 example . 最佳答案
我正在使用mitab.dll 来读取MapInfo 文件(*.tab + friend )。这些文件可能包含简单的折线和曲线。到目前为止,我无法区分这两者并将所有内容都视为折线。是否有任何 mitab
我在处理澳大利亚人口普查收集形状时遇到问题 provided in MapInfo format by the Australian Bureau of Statistics .我正在使用 ogr2o
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 已关闭 8 年前。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便用事实和引文来回答
使用导入 gdal,ogr,并给定一个 EPSG(例如此处为 2154),用 python 编写(几乎)空的 MapInfo TAB 文件的代码是什么,或者只是投影的摘要行(TAB 格式): Coor
我需要一种使用 .NET (C Sharp) 并且最好是开源(免费)库来创建 MapInfo 选项卡(以及相关文件、IDX、DAT 等)包的方法? 我有一些数据与相关的 GIS(经度/纬度等)信息,我
我在链接器命令行中输入:/MAPINFO:EXPORTS/MAPINFO:LINES 我得到这个错误: error LNK1117: syntax error in option 'MAPINFO:L
我是一名优秀的程序员,十分优秀!