推特: Mike Bostock recently tweeted:
如果您想在Illustrator中制作地图, TopoJSON 1.6.9 支持转换为SVG。没有代码 需要! https://github.com/mbostock/topojson/blob/master/bin/topojson-svg
--Mike Bostock(@mbostock)30 Avril 2014
酷!
在我的终端上Topojson版本,我检查了版本......
$topojson --version
>1.6.11
$node --version
>v0.10.25
似乎很好。
Topojson-svg试验所以我给了它一个拍摄......
curl -o uk.topo.json 'http://bost.ocks.org/mike/map/uk.json' #get an online topoJSON file
topojson-svg -o output.svg uk.topo.json #this fails
错误:我收到了一个损坏的.svg文件以及这个丑陋的错误消息
fs.js:393
binding.close(fd, makeCallback(callback));
^
TypeError: Bad argument
at Object.fs.close (fs.js:393:11)
at Object.<anonymous> (/home/yug/local/lib/node_modules/topojson/bin/topojson-svg:85:32)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:902:3
问题:如何处理以成功使用topojson-svg
?
/node_module
编辑也出现了:
npm install topojson #locally install topojson.js & topojson-svg
curl -o uk.topo.json 'http://bost.ocks.org/mike/map/uk.json' #get an online topoJSON file
node_modules/.bin/topojson-svg -o output.svg uk.topo.json #this fails
答案 0 :(得分:2)
<强> Fixed on github within 4minutes after reporting the issue 强>
将npm
与topojson v.1.6.12+