/Geojson2Wkt

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

Primary LanguageJavaScriptMIT LicenseMIT

Geojson2Wkt

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

Install

npm install geojson2wkt

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