Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@turf/line-intersect
Advanced tools
@turf/line-intersect is a module from the Turf.js library that provides geospatial analysis tools. This specific module is used to find the intersection points between two or more lines. It is useful in various geospatial applications, such as mapping, urban planning, and geographic information systems (GIS).
Find Intersection Points
This feature allows you to find the intersection points between two lines. In the code sample, two lines are defined, and the `lineIntersect` function is used to find their intersection points.
const turf = require('@turf/turf');
const line1 = turf.lineString([[0, 0], [2, 2]]);
const line2 = turf.lineString([[0, 2], [2, 0]]);
const intersections = turf.lineIntersect(line1, line2);
console.log(intersections);
JSTS is a JavaScript library of spatial predicates and functions for processing geometry. It is a port of the Java Topology Suite (JTS). JSTS provides more comprehensive geometry processing capabilities compared to @turf/line-intersect, including operations like buffering, union, and difference.
Martinez Polygon Clipping is a library for performing boolean operations on polygons, such as intersection, union, and difference. While it focuses on polygon operations, it can also be used to find intersections between line segments within polygons, offering more specialized functionality compared to @turf/line-intersect.
Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).
Parameters
line1
(Geometry | FeatureCollection | Feature<(LineString | MultiLineString | Polygon | MultiPolygon)>) any LineString or Polygonline2
(Geometry | FeatureCollection | Feature<(LineString | MultiLineString | Polygon | MultiPolygon)>) any LineString or PolygonExamples
var line1 = {
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [[126, -11], [129, -21]]
}
};
var line2 = {
"type": "Feature",
"properties": {},
"geometry": {
"type": "LineString",
"coordinates": [[123, -18], [131, -14]]
}
};
var intersects = turf.lineIntersect(line1, line2);
//addToMap
var addToMap = [line, line2, intersects]
Returns FeatureCollection<Point> point(s) that intersect both
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/line-intersect
Or install the Turf module that includes it as a function:
$ npm install @turf/turf
4.4.0
@turf/line-offset
Adds a new lineOffset module as per this issue. Basically takes an input line and returns a new line offset by the distance. (PR https://github.com/Turfjs/turf/pull/729 - Author @rowanwins)@turf/polygonize
Polygonizes (Multi)LineString(s) into Polygons. Implementation of GEOSPolygonize function (geos::operation::polygonize::Polygonizer). (PR https://github.com/Turfjs/turf/pull/767 - Author @NickCis)@turf/transform-rotate
Rotates any geojson Feature or Geometry of a specified angle, around its centroid or a given pivot point; all rotations follow the right-hand rule. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)@turf/transform-translate
Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)@turf/transform-scale
Scale a GeoJSON from a given point by a factor of scaling (ex: factor=2 would make the GeoJSON 200% larger). If a FeatureCollection is provided, the origin point will be calculated based on each individual Feature. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)@turf/turf-tin
(PR https://github.com/Turfjs/turf/pull/772)@turf/centroid
and @turf/center
(PR https://github.com/Turfjs/turf/pull/769)Tap
at root which enables code coverage reports (Issue https://github.com/Turfjs/turf/issues/328 & PR https://github.com/Turfjs/turf/pull/762)@turf/pointplane
(PR https://github.com/Turfjs/turf/pull/754)@turf/rhumb-destination
issue at 180th meridian (Issue https://github.com/Turfjs/turf/issues/770 & PR https://github.com/Turfjs/turf/pull/771)@turf/point-on-line
(Issue https://github.com/Turfjs/turf/issues/691)@turf/point-on-line
. (PR https://github.com/Turfjs/turf/pull/750)@turf/buffer
(PR https://github.com/Turfjs/turf/pull/746)FAQs
turf line-intersect module
The npm package @turf/line-intersect receives a total of 0 weekly downloads. As such, @turf/line-intersect popularity was classified as not popular.
We found that @turf/line-intersect 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.