multigeojson

0.0.1 • Public • Published

multigeojson

Converts mutli parts geojson to many single part geojsons and vice-versa.

Installation

npm install multigeojson

Usage

var multigeojson = require('multigeojson');
var manyGeojsons = multigeojson.explode( 
  {
      "type": "MultiLineString", 
      "coordinates": [
        [[10, 10], [20, 20], [10, 40]], 
        [[40, 40], [30, 30], [40, 20], [30, 10]]
      ]
    }
);
// manyGeojsons: [{"type":"LineString","coordinates":[[10,10],[20,20],[10,40]]},{"type":"LineString","coordinates":[[40,40],[30,30],[40,20],[30,10]]}]
 
var singleGeojson = multigeojson.implode([{"type":"LineString","coordinates":[[10,10],[20,20],[10,40]]},{"type":"LineString","coordinates":[[40,40],[30,30],[40,20],[30,10]]}])
 
//singleGeojson: {"type":"MultiLineString","coordinates":[[[10,10],[20,20],[10,40]],[[40,40],[30,30],[40,20],[30,10]]]}

License

This project is licensed under the terms of the MIT license.

/multigeojson/

    Package Sidebar

    Install

    npm i multigeojson

    Weekly Downloads

    8,615

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • gagan-bansal