0.0.1 • Published 10 years ago

multigeojson v0.0.1

Weekly downloads
2,327
License
MIT
Repository
github
Last release
10 years ago

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.