May 2019
Beginner to intermediate
650 pages
14h 50m
English
Many GIS applications and online tools convert GeoJSON to TopoJSON. MapShaper (mapshaper.org) is very simple to use, and supports big GeoJSON files. You can also install the topojson-server in your computer with NPM:
npm install -g topojson-server
Now you can call the geo2topo command-line application and transform GeoJSON files into TopoJSON. The simplest way to do it is to use:
geo2topo source.geojson –o target.topojson
The transformation can be tuned by applying a quantization parameter. This may be necessary if your input data is messy and there are gaps between adjacent borders. The parameter is a number, usually a power of ten. Very low values will produce a pixelated map. Higher values allow more points ...
Read now
Unlock full access