geojson2wkt

Converter to parse GeoJSON geometries in WKT format

Usage no npm install needed!

<script type="module">
  import geojson2wkt from 'https://cdn.skypack.dev/geojson2wkt';
</script>

README

Geojson2Wkt

Node module to convert GeoJSON geometry objects or string representations into WKT format.

Usage

Import the module:

var Geojson2wkt = require('Geojson2Wkt'); 

Parse a GeoJSON object

Geojson2wkt.convert({"type": "Point", "coordinates": [102.0, 0.5]}); // -- 'POINT(102 0.5)'

Or parse a string representation of a GeoJson object. The method automatically parses the string into an object.

Geojson2wkt.convert('{"type": "Point", "coordinates": [102.0, 0.5]}'); // -- 'POINT(102 0.5)'

Roadmap

  • documentation
  • Extend convert method to support
    • GeometryCollection
    • Polygons with holes