turf-inside icon indicating copy to clipboard operation
turf-inside copied to clipboard

Checks to see if a point is inside of a polygon.

Results 9 turf-inside issues
Sort by recently updated
recently updated
newest added

https://gist.github.com/onderaltintas/1c9c0023aece9e53b8fe57aa175d11fd tried on: https://turf-sandbox.netlify.app/

Point: ``` { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -122.2171193047933, 37.047091805854045 ] } } ``` Polygon: ``` { "type": "Feature", "properties": { }, "geometry": {...

Replacement link is broken. [https://github.com/Turfjs/turf/tree/master/packages/turf-inside](https://github.com/Turfjs/turf/tree/master/packages/turf-inside) is a github 404. Maybe the new replacement is [http://turfjs.org/docs#pointsWithinPolygon](http://turfjs.org/docs#pointsWithinPolygon) ?

The current link to @turf/inside is broken. I'm assuming it should now point to @turf/boolean-contains, right?

I'm seeing inconsistent results at different points on the boundary of this rectangular polygon ``` javascript var ul = [-79.4586181640625,39.53793974517629] var ur = [ul[0] + 0.03, ul[1]] var ll =...

E.g. use following polygon: [[179, -1],[-179, -1],[-179, 1],[179, 1],[179, -1]] and test for inclusion of points: [179.5, 0.5], [-179.5, -0.5] they lie within the polygon but are not detected as...

- [x] support all types to compare the point against - [ ] check for bbox intersect

- [ ] point - [ ] multipoint - [ ] linestring - [ ] multilinestring - [ ] multipolygon

enhancement