0.0.1 • Published 9 years ago
geojson-polygons-equal v0.0.1
geojson-polygons-equal
Checks two GeoJSON Polygons or MultiPolygons for equality.
This includes detecting polygons whose coordinates are rotated left or right differently.
Usage
var polyEqual = require('geojson-polygons-equal')
var poly1 = {
type: 'Polygon',
coordinates: [
[
[0, 0],
[0, 1],
[1, 1],
[1, 0],
[0, 0]
]
]
}
var poly2 = {
type: 'Polygon',
coordinates: [
[
[1, 1],
[1, 0],
[0, 0],
[0, 1],
[1, 1]
]
]
}
console.log(polyEqual(poly1, poly2))outputs
trueAPI
var polyEquals = require('geojson-polygons-equal')polyEquals(poly1, poly2)
Compares the two GeoJSON objects poly1 and poly2, which can be either
Polygon or MultiPolygon objects.
Install
With npm installed, run
$ npm install geojson-polygons-equalLicense
ISC
0.0.1
9 years ago