Socket
Socket
Sign inDemoInstall

turf-intersect

Package Overview
Dependencies
Maintainers
8
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turf-intersect

find the intersection of spatial features


Version published
Weekly downloads
17K
decreased by-0.25%
Maintainers
8
Weekly downloads
 
Created
Source

turf-intersect

build status

find the intersection of spatial features

turf.intersect(poly1, poly2)

Takes two Polygon features and finds their intersection.

Parameters

parametertypedescription
poly1Polygonthe first Polygon
poly2Polygonthe second Polygon

Example

var poly1 = turf.polygon([[
 [-122.801742, 45.48565],
 [-122.801742, 45.60491],
 [-122.584762, 45.60491],
 [-122.584762, 45.48565],
 [-122.801742, 45.48565]
]]);
poly1.properties.fill = '#0f0';
var poly2 = turf.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]
]]);
poly2.properties.fill = '#00f';
var polygons = turf.featurecollection([poly1, poly2]);

var intersection = turf.intersect(poly1, poly2);

//=polygons

//=intersection

Installation

Requires nodejs.

$ npm install turf-intersect

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