
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@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.
geojson
GeoJSON input featuresvar 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 single module individually:
$ npm install @turf/explode
Or install the all-encompassing @turf/turf module that includes all modules as functions:
$ npm install @turf/turf
FAQs
turf explode module
The npm package @turf/explode receives a total of 446,107 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 0 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.