0

我正在尝试创建美国学区的 TopoJSON 文件。我有一组三个 shapefile,我试图使用以下批处理脚本将它们组合成一个 topojson 文件:

call topojson ^
    -o SDs11_Topo.json ^
    -p NAME ^
    --simplify-proportion .1 ^
    --id-property GEOID ^
    -- ^
    ESDs11.shp ^
    SSDs11.shp ^
    USDs11.shp

运行一段时间后(例如,不是立即) - 我看到以下输出和错误消息:

coordinate system: spherical
quantization: maximum error 0.00m (0.00°)

...\npm\node_modules\topojson\lib\topojson\spherical.js:13
  var a = distance(t[0], t[1]),
          ^
ReferenceError: distance is not defined
at ...

如果有帮助,我已将我正在使用的源 shapefile 放在http://jsl6906.net/D3/SDs/

任何有关如何解决此错误的帮助将不胜感激

4

1 回答 1

1

根据上面的@nrabinowitz 评论,此错误是由于未运行最新版本的 topojson 引起的。不带参数使用topojson将返回库的安装版本。

于 2013-05-07T00:12:25.630 回答