Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/briansorahan/wkt2json
- Owner: briansorahan
- Created: 2021-08-20T15:15:53.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-20T15:17:32.000Z (about 3 years ago)
- Last Synced: 2024-06-21T01:49:44.075Z (5 months ago)
- Language: Go
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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}
```