0

我已经运行了以下代码:

python \
converter.py \
ne_10m_admin_1_states_provinces_shp.shp \
test-map.js \
--width 400 \
--where "ISO_3166_2 = 'ID-' " \
--minimal_area 4000000 \
--buffer_distance -0.5 \
--simplify_tolerance 10000 \
--longitude0 54.8270 \
--name indonesia

我不包括 --country_name_index 和 --country_code_index 因为我无法在我的国家/地区的 shp 文件中找到这些值(它留空)。

这是该命令的结果:

ERROR 1: No such field: '1'
ERROR 1: No such field: '0'
Traceback (most recent call last):
    File "converter.py", line 295, in <module>
        converter.conver(args['output_file'])
    File "converter.py", line 143, in convert
        self.loadData()
    File "converter.py", line 88, in LoadData
        self.loadDataSource( SourcceConfig )
    File "converter.py", line 118, in loadDataSource
        name = feature.GetFieldAsString( sourceConfig.get('country_name_index') ).decode(SourceConfig).get('input_file_encoding'))
AtributeError: 'NoneType' object has no attribute 'decode'

我希望任何人都可以回答我的问题或帮助我转换“印度尼西亚”地图

之前谢谢。

4

1 回答 1

0

最后我可以转换它,对于一些没有的国家,country_name_index我们country_code_index只需要手动添加它们。

首先我们需要使用 GIS 软件编辑 shp 文件,我使用的是 QuantumGIS ( http://www.qgis.org/ )

根据这个答案,country_name_index是区域名称属性/列,而 country_code_index 是region_code column,因此添加一些整数值,例如 65 或其他值,现在您可以创建自定义地图。

于 2013-08-13T08:52:50.207 回答