Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@turf/boolean-equal
Advanced tools
@turf/boolean-equal is a module from the Turf.js library that provides functionality to determine if two geometries of the same type have equivalent coordinate values.
Check if two geometries are equal
This feature allows you to check if two geometries are equal by comparing their coordinate values. In this example, two points with the same coordinates are compared, and the result is true.
const turf = require('@turf/turf');
const point1 = turf.point([0, 0]);
const point2 = turf.point([0, 0]);
const isEqual = turf.booleanEqual(point1, point2);
console.log(isEqual); // true
Geolib is a library for geospatial calculations. It provides a variety of functions for distance calculations, area calculations, and more. While it does not have a direct equivalent to @turf/boolean-equal, it offers a wide range of geospatial utilities that can be used in conjunction with other libraries to achieve similar functionality.
JSTS (JavaScript Topology Suite) is a library for performing operations on geometries. It includes functions for spatial analysis, such as intersection, union, and difference. JSTS can be used to compare geometries, but it is more complex and offers a broader range of spatial operations compared to @turf/boolean-equal.
Determine whether two geometries of the same type have identical X,Y coordinate values. See spatial relations.
Parameters
feature1
(Geometry | Feature<any>) GeoJSON Feature or Geometryfeature2
(Geometry | Feature<any>) GeoJSON Feature or GeometryExamples
var pt1 = turf.point([0, 0]);
var pt2 = turf.point([0, 0]);
var pt3 = turf.point([1, 1]);
turf.equal(pt1, pt2);
//= true
turf.equal(pt2, pt3);
//= false
Returns Boolean true/false
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/boolean-equal
Or install the Turf module that includes it as a function:
$ npm install @turf/turf
4.5.0
@turf/clusters
Takes a set of points and partition them into clusters using the k-means clustering algorithm.
(PR https://github.com/Turfjs/turf/pull/787 - Author @stebogit )
@turf/boolean-disjoint
Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set.
(PR https://github.com/Turfjs/turf/pull/805 - Author @rowanwins)
@turf/boolean-contains
Boolean-contains returns True if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and, the interior and boundary of the secondary (geometry b) must not intersect the exterior of the primary (geometry a). Boolean-contains returns the exact opposite result of the @turf/boolean-within
.
(PR https://github.com/Turfjs/turf/pull/797 - Author @rowanwins)
@turf/boolean-crosses
Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.
Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons.
(PR https://github.com/Turfjs/turf/pull/796 - Author @rowanwins)
@turf/boolean-clockwise
Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.
(PR https://github.com/Turfjs/turf/pull/789 - Authors @morganherlocker @stebogit)
@turf/clone
Prevents GeoJSON coordinates from being mutated, similar to JSON.parse(JSON.stringify(geojson))
.
Only cloning the coordinates can be 3x-20x faster than the parse + stringify approach.
(PR https://github.com/Turfjs/turf/pull/824 - Author @DenisCarriere)
convertArea
Converts a area to the requested unit. (PR https://github.com/Turfjs/turf/pull/821 - Author @wnordmann)@turf/point-grid
(PR https://github.com/Turfjs/turf/pull/791)@turf/idw
bad property name #774 (PR https://github.com/Turfjs/turf/pull/800)FAQs
turf boolean-equal module
The npm package @turf/boolean-equal receives a total of 473,753 weekly downloads. As such, @turf/boolean-equal popularity was classified as popular.
We found that @turf/boolean-equal 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.