将GeoJSON转换为TopoJSON


37

如何将GeoJSON数据转换为TopoJSON

为什么

Topojson文件通常比geojson小,并且如果需要,转换可以让您逐步简化数据集。


步骤3:转换数据:topojson -o output_file.json input_file.json不起作用!!!!!!

1
topojson -o output_file.json input_file.json在1.1.0和1.4.0下为我工作。也许您可以在这里问一个正式问题,并提供有关您所遇到问题的更多信息?干杯!
杰夫

Answers:


27

很高兴你问,哦,帅哥。

安装 topojson

从命令行(Mac OSX 10.8,假定已安装自制软件):

brew install node.js
npm install -g topojson

转换数据

topojson -o output.json input.json

OP很帅,但需要更新他的答案。
马修·詹姆斯·戴维斯

5

从topojson中的geojson创建topojson的功能已移至geo2topo

npm install topojson-server
geo2topo input.geojson > output.topojson
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.