Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@turf/explode
Advanced tools
@turf/explode is a module from the Turf.js library that is used to convert a GeoJSON object into a collection of points. This can be useful for various geospatial analyses where you need to work with individual points extracted from more complex geometries like polygons or lines.
Convert Polygon to Points
This feature allows you to convert a polygon into a collection of points. Each vertex of the polygon becomes an individual point in the resulting GeoJSON FeatureCollection.
const turf = require('@turf/turf');
const polygon = turf.polygon([[
[-81, 41],
[-81, 47],
[-72, 47],
[-72, 41],
[-81, 41]
]]);
const exploded = turf.explode(polygon);
console.log(exploded);
Convert LineString to Points
This feature allows you to convert a LineString into a collection of points. Each vertex of the LineString becomes an individual point in the resulting GeoJSON FeatureCollection.
const turf = require('@turf/turf');
const line = turf.lineString([
[-81, 41],
[-81, 47],
[-72, 47],
[-72, 41]
]);
const exploded = turf.explode(line);
console.log(exploded);
Convert MultiPolygon to Points
This feature allows you to convert a MultiPolygon into a collection of points. Each vertex of each polygon in the MultiPolygon becomes an individual point in the resulting GeoJSON FeatureCollection.
const turf = require('@turf/turf');
const multiPolygon = turf.multiPolygon([[
[[-81, 41], [-81, 47], [-72, 47], [-72, 41], [-81, 41]]
], [
[[-91, 31], [-91, 37], [-82, 37], [-82, 31], [-91, 31]]
]]);
const exploded = turf.explode(multiPolygon);
console.log(exploded);
The geojson-flatten package is used to flatten nested GeoJSON objects into simpler geometries. While it doesn't specifically convert geometries into points like @turf/explode, it can be used to simplify complex GeoJSON structures, making it easier to work with individual geometries.
The geojson-utils package provides a variety of utility functions for working with GeoJSON data, including point-in-polygon tests and distance calculations. While it doesn't offer the specific explode functionality, it provides a broader set of tools for GeoJSON manipulation.
The jsts (JavaScript Topology Suite) package offers a wide range of spatial operations and geometric algorithms. It includes functionality for converting geometries to points, but it is more complex and feature-rich compared to @turf/explode.
Takes a feature or set of features and returns all positions as points.
Parameters
geojson
GeoJSON input featuresExamples
var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);
var explode = turf.explode(polygon);
//addToMap
var addToMap = [polygon, explode]
Returns FeatureCollection<point> points representing the exploded input features
This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.
Install this module individually:
$ npm install @turf/explode
Or install the Turf module that includes it as a function:
$ npm install @turf/turf
FAQs
turf explode module
The npm package @turf/explode receives a total of 743,561 weekly downloads. As such, @turf/explode popularity was classified as popular.
We found that @turf/explode demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.