我正在尝试通过转换此Shapefile来创建芬兰的jVectormap地图文件: http://www.naturalearthdata.com/downloads/110m-cultural-vectors/110m-admin-1-states-provinces/
我已经安装了Python和模块,但在尝试此命令时:
/usr/local/bin/python2.7 converter/converter.py \
/<path>/ne_110m_admin_1_states_provinces_shp.dbf \
/<path>/finland.js \
--width 1000 \
--country_name_index 8 \
--country_code_index 0 \
--longitude0 26.00 \
--where "ISO_A2='FI'" \
--name data_fin \
--language en
我得到了这个堆栈跟踪:
Traceback (most recent call last):
File "converter/converter.py", line 296, in <module>
converter.convert(args['output_file'])
File "converter/converter.py", line 167, in convert
insetBbox = self.renderMapInset(codes, 0, 0, self.width)
File "converter/converter.py", line 194, in renderMapInset
scale = (bbox[2]-bbox[0]) / width
IndexError: tuple index out of range
不确定是什么问题。
如果我用
查看shp文件ogrinfo ne_110m_admin_1_states_provinces_shp.shp ne_110m_admin_1_states_provinces_shp -where "ISO_A2='FI'"
我只收到文件摘要。
答案 0 :(得分:0)
您使用的是哪个版本的convert.py? 最新的1.2.2似乎有些问题。你可以在这里找到很多jvectormap https://github.com/jfhovinne/jvectormap-maps-builder 包括芬兰!该软件包还包括一个较旧的convert.py 1.1.1,它可以正常工作。