@turf/intersect
Advanced tools
Comparing version 3.5.2 to 3.5.3
60
index.js
@@ -1,2 +0,2 @@ | ||
// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html | ||
// depend on jsts for now http://bjornharrtell.github.io/jsts/ | ||
var jsts = require('jsts'); | ||
@@ -12,47 +12,23 @@ | ||
* @example | ||
* var poly1 = { | ||
* "type": "Feature", | ||
* "properties": { | ||
* "fill": "#0f0" | ||
* }, | ||
* "geometry": { | ||
* "type": "Polygon", | ||
* "coordinates": [[ | ||
* [-122.801742, 45.48565], | ||
* [-122.801742, 45.60491], | ||
* [-122.584762, 45.60491], | ||
* [-122.584762, 45.48565], | ||
* [-122.801742, 45.48565] | ||
* ]] | ||
* } | ||
* } | ||
* var poly2 = { | ||
* "type": "Feature", | ||
* "properties": { | ||
* "fill": "#00f" | ||
* }, | ||
* "geometry": { | ||
* "type": "Polygon", | ||
* "coordinates": [[ | ||
* [-122.520217, 45.535693], | ||
* [-122.64038, 45.553967], | ||
* [-122.720031, 45.526554], | ||
* [-122.669906, 45.507309], | ||
* [-122.723464, 45.446643], | ||
* [-122.532577, 45.408574], | ||
* [-122.487258, 45.477466], | ||
* [-122.520217, 45.535693] | ||
* ]] | ||
* } | ||
* } | ||
* var poly1 = polygon([[ | ||
* [-122.801742, 45.48565], | ||
* [-122.801742, 45.60491], | ||
* [-122.584762, 45.60491], | ||
* [-122.584762, 45.48565], | ||
* [-122.801742, 45.48565] | ||
* ]]); | ||
* | ||
* var polygons = { | ||
* "type": "FeatureCollection", | ||
* "features": [poly1, poly2] | ||
* }; | ||
* var poly2 = polygon([[ | ||
* [-122.520217, 45.535693], | ||
* [-122.64038, 45.553967], | ||
* [-122.720031, 45.526554], | ||
* [-122.669906, 45.507309], | ||
* [-122.723464, 45.446643], | ||
* [-122.532577, 45.408574], | ||
* [-122.487258, 45.477466], | ||
* [-122.520217, 45.535693] | ||
* ]]); | ||
* | ||
* var intersection = turf.intersect(poly1, poly2); | ||
* | ||
* //=polygons | ||
* | ||
* //=intersection | ||
@@ -59,0 +35,0 @@ */ |
{ | ||
"name": "@turf/intersect", | ||
"version": "3.5.2", | ||
"version": "3.5.3", | ||
"description": "find the intersection of spatial features", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -15,47 +15,23 @@ # @turf/intersect | ||
```javascript | ||
var poly1 = { | ||
"type": "Feature", | ||
"properties": { | ||
"fill": "#0f0" | ||
}, | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [[ | ||
[-122.801742, 45.48565], | ||
[-122.801742, 45.60491], | ||
[-122.584762, 45.60491], | ||
[-122.584762, 45.48565], | ||
[-122.801742, 45.48565] | ||
]] | ||
} | ||
} | ||
var poly2 = { | ||
"type": "Feature", | ||
"properties": { | ||
"fill": "#00f" | ||
}, | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [[ | ||
[-122.520217, 45.535693], | ||
[-122.64038, 45.553967], | ||
[-122.720031, 45.526554], | ||
[-122.669906, 45.507309], | ||
[-122.723464, 45.446643], | ||
[-122.532577, 45.408574], | ||
[-122.487258, 45.477466], | ||
[-122.520217, 45.535693] | ||
]] | ||
} | ||
} | ||
var poly1 = polygon([[ | ||
[-122.801742, 45.48565], | ||
[-122.801742, 45.60491], | ||
[-122.584762, 45.60491], | ||
[-122.584762, 45.48565], | ||
[-122.801742, 45.48565] | ||
]]); | ||
var polygons = { | ||
"type": "FeatureCollection", | ||
"features": [poly1, poly2] | ||
}; | ||
var poly2 = polygon([[ | ||
[-122.520217, 45.535693], | ||
[-122.64038, 45.553967], | ||
[-122.720031, 45.526554], | ||
[-122.669906, 45.507309], | ||
[-122.723464, 45.446643], | ||
[-122.532577, 45.408574], | ||
[-122.487258, 45.477466], | ||
[-122.520217, 45.535693] | ||
]]); | ||
var intersection = turf.intersect(poly1, poly2); | ||
//=polygons | ||
//=intersection | ||
@@ -62,0 +38,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5766
5
73
65