Socket
Socket
Sign inDemoInstall

turf-within

Package Overview
Dependencies
Maintainers
8
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
8
Weekly downloads
 
Created
Source

turf-within

build status

turf within module

turf.within(points, polygons)

Returns a FeatureCollection of points representing all points that fall within a collection of polygons.

Parameters

parametertypedescription
pointsFeatureCollection
polygonsFeatureCollection

Example

var searchWithin = turf.featurecollection([
  turf.polygon([
    [[-46.653,-23.543],
     [-46.634,-23.5346],
     [-46.613,-23.543],
     [-46.614,-23.559],
     [-46.631,-23.567],
     [-46.653,-23.560],
     [-46.653,-23.543]]
  ])
]);
var points = turf.featurecollection([
  turf.point([-46.6318, -23.5523]),
  turf.point([-46.6246, -23.5325]),
  turf.point([-46.6062, -23.5513]),
  turf.point([-46.663, -23.554]),
  turf.point([-46.643, -23.557])]);
var ptsWithin = turf.within(points, searchWithin);
//=points
//=searchWithin
//=ptsWithin

Installation

Requires nodejs.

$ npm install turf-within

Tests

$ npm test

Keywords

FAQs

Package last updated on 06 Feb 2015

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