Socket
Socket
Sign inDemoInstall

turf-within

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turf-within

turf within module


Version published
Weekly downloads
12K
decreased by-1.27%
Maintainers
1
Weekly downloads
 
Created
Source

turf-within

Build Status

Returns a feature collection of points representing all points that fall withing a collection of polygons.

###Install

npm install turf-within

###Parameters

namedescription
pointsA FeatureCollection of Point Features
polygonsA FeatureCollection of Polygon Features

###Usage

within(points, polygons)

###Example

var within = require('turf-within')
var point = require('turf-point')
var polygon = require('turf-polygon')
var featurecollection = require('turf-featurecollection')


var poly = polygon([[[10,0],[20,10],[20,20], [20,0]]])
var polyFC = featurecollection([poly])
var pt1 = point(1,1)
var pt2 = point(1,3)
var pt3 = point(14,2)
var pt4 = point(13,1)
var pt5 = point(19,7)
var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5])

var ptsWithin = within(ptFC, polyFC)

console.log(ptsWithin) // feature collection with 3 pts

Keywords

FAQs

Package last updated on 15 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc