geojson-dissolve

3.1.0 • Public • Published

geojson-dissolve

Build Status npm

Dissolve contiguous GeoJSON (Multi)LineStrings and (Multi)Polygons into single units.

Usage

var dissolve = require('geojson-dissolve')
 
var line1 = {
  type: 'LineString',
  coordinates: [
    [0.0, 0.0],
    [1.0, 1.0],
    [2.0, 2.0]
  ]
}
 
var line2 = {
  type: 'LineString',
  coordinates: [
    [2.0, 2.0],
    [3.0, 3.0]
  ]
}
 
console.log(dissolve([line1, line2]))

This will output

{
  type: 'LineString',
  coordinates: [
    [0.0, 0.0],
    [1.0, 1.0],
    [2.0, 2.0],
    [3.0, 3.0]
  ]
}

API

var dissolve = require('geojson-dissolve')

dissolve([geojson]) or dissolve(gj1, gj2, ...)

Consumes a list of homogenous GeoJSON objects, and returns a single GeoJSON Geometry Object, with all touching LineStrings and Polygons dissolved into single geometries.

Install

With npm installed, run

$ npm install geojson-dissolve

License

ISC

Package Sidebar

Install

npm i geojson-dissolve

Weekly Downloads

2,700

Version

3.1.0

License

ISC

Last publish

Collaborators

  • gmaclennan
  • noffle