Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/briansorahan/wkt2json

Convert wkt to geojson
https://github.com/briansorahan/wkt2json

Last synced: 18 days ago
JSON representation

Convert wkt to geojson

Awesome Lists containing this project

README

        

# wkt2json

Convert wkt to geojson.

Usage:
```
echo 'POINT(0 0)' | wkt2json
```
outputs:
```
{"type":"Feature","geometry":{"type":"Point","coordinates":[0,0]},"properties":null}
```