Skip to content

kylepollina/topo2geo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

topo2geo

CLI for converting TopoJSON files to GeoJSON

Installation

pip install topo2geo

Depends on shapely and click

Usage

$ topo2geo input.topojson output.geojson

Multilayered Topojsons

If the topojson contains mulitple layers (i.e. there are multiple values in the "objects" key). Then seperate geojson files will be output with the layer name.

For example a topojson containing states and counties:

{
    "type": "Topology",
    "objects": {
        "county": {
            "type": "GeometryCollection",
            "geometries": [...]
        },
        "state": {
            "type": "GeometryCollection",
            "geometries": [...]
        }
    }
}

would produce two geojson files, output_geo_county.json and output_geo_state.json

Troubleshooting

If you experience a "segmentation fault" one thing to try is explained here:

pip install shapely --no-binary shapely

Credits

Originally written by sgillies and perrygeo. Converted to Python3 and packaged into a CLI by kylepollina.

Sources:


License - https://github.com/topojson/topojson/blob/master/LICENSE.md

About

CLI for converting TopoJSON files to GeoJSON

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages