1.0.0 • Published 10 years ago

geojson2wkt v1.0.0

Weekly downloads
38
License
MIT
Repository
github
Last release
10 years ago

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