@turf/points-with-polygonAdd MultiPoint support (PR #2137 - Author @twelch)
-
@turf/dissolveComplete rewrite of the dissolve module to resolve many bugs (PR #2110 - Author @rowanwins) -
@turf/maskComplete rewrite of the mask module to resolve many bugs (PR #2130 - Author @rowanwins) -
@turf/boolean-validAdd missing dependency to (PR #2094 - Author @rycgar)
@turf/boolean-overlapImprove clarity (PR #2133 - Author @patrickbrett)
- Enable TS Strict Mode (PR #2126 - Author @mfedderly)
@turf/boolean-point-on-lineAdded anepislonoption to help in floating point comparison. (PR #2051 - Author @okcoker)
-
@turf/line-slice-alongFixed a bug where the offset distance equal to the length of the line (PR #2030 - Author @EricPKerr) -
@turf/helpersFixed the conversion ratio for converting meters to yards and vice-versa (PR #2046 - Author @anotherhale) -
@turf/center-medianFixed a missing TS type import (PR #2044 - Author @Seairth) -
`@turf/bezier-spline Fix a bug ensuring the spline result reaches the end of the input (PR #2090 - Author @the-nemz)
-
@turf/transform-rotateand@turf/ellipse) Improve documentation for angle parameter (PR #2016 - Author @pasieronen) -
@turf/line-chunkFix an invalid anchor (PR #2071 - Author @GraxMonzo) -
@turf/distanceEnhance distance doco so supported inputs are clearer (PR #2032 - Author @rowanwins)
-
@turf/concaveReplace deprecated topojson dependency (PR #2037 - Author @elliots) -
Work towards enabling TS Strict Mode (PR #2053 - Author @mfedderly)
(PR #2004 - Author r0b0t3d) (PR #2011 - Author mfedderly)
(PR #2007 - Author rowanwins)
After a bit of hiatus, TurfJS is resuming releases.
- ES Modules available for all packages
- Tree shaking should significantly reduce import size of @turf/turf
- Better support for ESM modules (PR #1942 - Author @diachedelic)
- Clean-up of test and benchmark running to make publishing easier
- Enforce styling using Prettier
- Enable ESLint and get rid of unused variables
- Upgrade rollup for more correct javascript module builds
- Only include ES5 code
Determines if two features touch but do not intersect
Checks if the geometry is a valid according to the OGC Simple Feature Specification
Performs a quadrat analysis on a set of points
Creates a grid of rectangles from a bounding box
Typescript types for the options parameter have been fixed (PR #1424 - Author @stevage)
Typescript types around the Feature's Properties will now be preserved. (PR #1761 - Author @rugheid)
Typescript types for the 'reverse' option are now correct. Previously it was misnamed as 'reversed'. (PR #1786 - Author @jonnycornwell)
No longer publishes an .mjs file.
No longer publishes an .mjs file.
Add MultiPolygon support. (PR #1996 - Author bryceroney)
-
@turf/centroidDon't visit first point twice when calculating centroid (PR #1894 - Author @rowanwins) -
@turf/transform-translateBetter handling of negative distances (PR #1895 - Author @rowanwins) -
@turf/union,@turf/difference,@turf/intersectUse polygon-clipping library to fix correctness issues (PR #1916 - Authors @mbullington, @ngottlieb) -
@turf/bufferChange default number of steps to 8, and actually support the steps option (PR #1931 - Author stevenchanin) -
@turf/bufferFix projection issues that produce undersized buffers at non-equatorial latitudes (PR #1956 - Author dyakovlev) -
@turf/helpersAdd runtime checks to point() method, fixing an API break (PR #1964)
-
@turf/boolean-overlapBetter performance for MultiPoint geometries (PR #1910 - Author @mfedderly) -
@turf/helpersAdd hectares to convertArea (PR #1943 - Author @DanielJDufour) -
@turf/great-circleUpdate Typescript types to support MultiLineString input (PR #1928 - Author kronick)
-
@turf/square-gridClarify inputs (PR #1885 - Author @raphael-leger) -
@turf/greater-circleClarify properties option example (PR #1888 - Author @chris-catignani)
-
@turf/line-to-polygonno longer modifies its input unless the mutate option is true (PR #1879 - Author @MortenBirk) -
@turf/unkink-polygonremove Number.prototype.modulo override (PR #1978)
- TurfJS now supports ES Modules (Related PR's)
- Optional parameters are now defined as an
Object.
Takes a FeatureCollection of points, and a bounding box, and returns a FeatureCollection of Voronoi polygons. (PR #1043 - Author @stevage)
Returns the shortest path from start to end without colliding with any feature in obstacles (PR #956 - Author @stebogit)
Boolean-Parallel returns True if each segment of line1 is parallel to the correspondent segment of line2
(PR #941 - Author @stebogit)
Takes a {@link Point} and a {@link LineString} and calculates the closest Point on the (Multi)LineString. (PR #939 - Author @stebogit)
-
Updates
@turf/unkink-polygontesting & addedflattenEachinstead of usingflatten. (PR #889) -
Add multi-geomtry support to
@turf/line-split(PR #1078) -
Improve
@turf/metalineEachmethod to provide properties, id and bbox (PR #1010)
-
Fixes
@turf/helpersearth radius variable (PR #1012) -
Fixes
@turf/polygon-tangentsbug (PR #1058) -
Fixes
@turf/line-chunkbug when the number of segments is integer (PR #1046) -
Fixes
segmentEachandsegmentReducemethods in@turf/metato ensure something is returned (PR #968)
- Optional parameters are now defined as an
Object:
Before
var from = [-75.343, 39.984];
var to = [-75.534, 39.123];
var units = 'miles';
var distance = turf.distance(from, to, units);After
var from = [-75.343, 39.984];
var to = [-75.534, 39.123];
var options = {units: 'miles'};
var distance = turf.distance(from, to, options);- Reworked
@turf/randomPR #994 - Deprecate
@turf/idwIssue #887 - Reworked Grid modules
@turf/point-grid/hex/square/trianglePR #1029 - Renamed Modules/Methods
-
@turf/inside=>@turf/boolean-point-in-polygon#860 (comment) -
@turf/within=>@turf/points-within-polygon#860 (comment) -
@turf/bezier=>@turf/bezier-splineIssue #661 -
@turf/nearest=>@turf/nearest-point#858 (comment) -
@turf/point-on-line=>@turf/nearest-point-on-line#858 (comment) -
@turf/lineDistance=>@turf/length#860 (comment) -
@turf/helpers-
radians2degrees=>radiansToDegrees -
degrees2radians=>degreesToRadians -
distanceToDegrees=>lengthToDegrees -
distanceToRadians=>lengthToRadians -
radiansToDistance=>radiansToLength -
bearingToAngle=>bearingToAzimuth -
convertDistance=>convertLength
-
-
- toMercator: Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection
- toWgs84: Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection
(PR #927 - Author @stebogit)
Returns the minimum distance between a {@link Point} and a {@link LineString}, being the distance from a line the minimum distance between the point and any segment of the LineString.
(PR #925 - Author @stebogit)
Boolean-within returns true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and, the interior and boundary of the primary (geometry a) must not intersect the exterior of the secondary (geometry b). Boolean-within returns the exact opposite result of the @turf/boolean-contains.
(PR #924 - Author @rowanwins)
- Updates
@turf/unkink-polygontesting & addedflattenEachinstead of usingflatten. (PR #889) @turf/concaverefactoring, replacing@turf/unionwithgeojson-dissolveto increase speed and added support tonullgeometries (PR #907 - Contributor @stebogit @DenisCarriere)- Adds doc note on
@turf/polygonizeabout "Edges must be correctly noded" (PR #898 - Contributor @stebogit @NickCis) - Adds support to foreign Members to
@turf/clone(PR #904 - Contributor @DenisCarriere) - Extends support of any
GeoJSONto@turf/simplify(PR #903 - Contributor @DenisCarriere @stebogit) - Adds new
isNumberfunction and improves type checking for few@turf/helpersmethods (PR #920 - Contributor @DenisCarriere @stebogit) - Adds throw errors to invalid
MultiPolygonsfor@turf/simplify(PR #922 - Contributor @DenisCarriere)
- Fixes
@turf/bbox-clippoint intersection handling, adding sanity-checks the lineclip output (PR #886) - Fixes
@turf/line-splitendpoint case handling applying@turf/truncateonsplitter(PR #892 and #855 - Contributor @stebogit) - Fixes
@turf/intersectthrowing "uncaught exception", adding@turf/truncateto inputs and returningFeature<null>if no geometry (PR #890 - Contributor @stebogit @vicvolk) - Fixes
@turf/hex-gridnot properly cloning the last ring vertex (PR #897 - Contributor @stebogit @DenisCarriere) - Fixes
@turf/boolean-disjointincorrect behaviour where a poly was completely contained within another poly (PR #908 - Contributor @rowanwins) - Fixes
@turf/simplifyprocess pending on particular geometries, applying@turf/clean-coordsto input. (PR #903 - Contributor @stebogit @DenisCarriere) - Fixes
booleanproperties not being translated with@turf/clone(PR #909 - Contributor @DenisCarriere) - Fixes
@turf/boolean-containsincorrect output when checking two polygons (PR #923 - Contributor @rowanwins @DenisCarriere)
@turf/clean-coordsRemoves redundant coordinates from any GeoJSON Geometry. (PR #875 - Author @stebogit)@turf/interpolateTakes a set of points and estimates their 'property' values on a grid using the Inverse Distance Weighting (IDW) method.. (PR #832 - Author @stebogit)@turf/clusters-dbscanTakes a set of Points and partition them into clusters according to DBSCAN's data clustering algorithm. (PR #812 and #851 - Author @DenisCarriere)special mention to this incredibly instructive and fun interactive map by @DenisCarriere 😎👏
@turf/clustersProvidesgetCluster,clusterEach, andclusterReducefunctions. (PR #847 - Author @DenisCarriere)@turf/boolean-point-on-lineReturns true if a point is on a line. Accepts a optional parameter to ignore the start and end vertices of the linestring. (PR #858 - Author @rowanwins)@turf/boolean-overlapTakes two features and returns true or false whether or not they overlap, i.e. whether any pair of edges on the two polygons intersect. If there are any edge intersections, the polygons overlap. (PR #856 and #868 - Author @stebogit @tcql)@turf/boolean-equalDetermine whether two geometries of the same type have identical X,Y coordinate values. (PR #869 - Author @stebogit @tcql)
- Sets
centeredparam default totruein@turf/point-grid(PR #836 - Contributor @stebogit) - Adds
MultiLineStringsupport for@turf/point-on-line(PR #838 - Contributor @stebogit) - Renames
@turf/clusters=>@turf/clusters-kmeans, plus adds deprecated warning message to@turf/clusters@4.5.2(See Issue #845) - Changes output type of
@turf/clusters-kmeans(See Issue #850 - Contributor @DenisCarriere) - Adds
segmentEachandsegmentReducefunctions to@turf/meta(See Issue #850 - Contributor @DenisCarriere) - Adds tests and linting on JSDoc in TurfJS core from
turf-www; see Issue #859 (PR #857 + #864 + #870 - Contributor @DenisCarriere @stebogit) - Introduces
nullGeometry support across TurfJS modules (See Issue #853) (PR #866 - Contributor @DenisCarriere) - Includes feature(Sub)Index in
coordEach/coordReduce(@turf/meta) 🎉 (PR #872 - Contributor @DenisCarriere) - Adds
bboxandidparams plusgeometrymethod to@turf/helpers(PR #877 - Contributor @DenisCarriere)
- Applies
@turf/truncateto@turf/line-splitsplitterinput to avoid approximation errors. Fixed #852 (PR #855) - Fixes
@turf-maskerror (See Issue #837) (PR #865 - Contributor @thiagoxvo) - Fixes
create-new-modulescript error onLICENSEfile creation (See Issue #861) (commit df6986e) - Fixes
@turf/isobandserror oncommonProperties(See Issue #831) (commit 1663f07)
-
@turf/clustersTakes a set of points and partition them into clusters using the k-means clustering algorithm. (PR #787 - Author @stebogit ) -
@turf/boolean-disjointBoolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set. (PR #805 - Author @rowanwins) -
@turf/boolean-containsBoolean-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 #797 - Author @rowanwins) -
@turf/boolean-crossesBoolean-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 #796 - Author @rowanwins) -
@turf/boolean-clockwiseTakes a ring and return true or false whether or not the ring is clockwise or counter-clockwise. (PR #789 - Authors @morganherlocker @stebogit) -
@turf/clonePrevents GeoJSON coordinates from being mutated, similar toJSON.parse(JSON.stringify(geojson)). Only cloning the coordinates can be 3x-20x faster than the parse + stringify approach. (PR #824 - Author @DenisCarriere)
convertAreaConverts a area to the requested unit. (PR #821 - Author @wnordmann)- Adds mask option to
@turf/point-grid(PR #791) - New @turf/isolines based on MarchingSquares.js (PR #781)
- Use ES6 modules / Add module.js to @turf/turf (PR #793)
- Create-new-module script (PR #823)
- Buffer - Drop circle buffer operation (PR #786)
- Fixes
@turf/idwbad property name #774 (PR #800) - Fix for @turf/polygon-tangents - Resolves #785 (PR #792)
@turf/line-offsetAdds a new lineOffset module as per this issue. Basically takes an input line and returns a new line offset by the distance. (PR #729 - Author @rowanwins)@turf/polygonizePolygonizes (Multi)LineString(s) into Polygons. Implementation of GEOSPolygonize function (geos::operation::polygonize::Polygonizer). (PR #767 - Author @NickCis)@turf/transform-rotateRotates 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 #747 - Author @stebogit)@turf/transform-translateMoves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. (Issue #747 - Author @stebogit)@turf/transform-scaleScale 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 #747 - Author @stebogit)
- Support z-coordinate as input for
@turf/turf-tin(PR #772) - Adds properties parameter to
@turf/centroidand@turf/center(PR #769) - Include Yarn.lock for all modules & Lerna uses Yarn (Issue #704, #765, PR #766)
- Use
Tapat root which enables code coverage reports (Issue #328 & PR #762) - Support z-coordinate as input for
@turf/pointplane(PR #754) - Add core tests - file management & package.json rules (PR #749 & #756)
- Website http://turfjs.org is back up and running (Issue #777)
@turf/rhumb-destinationissue at 180th meridian (Issue #770 & PR #771)- Getting too large numbers for Longitude (Issue #758 & PR #763)
- Throw error if FeatureCollection not array #751 (PR #760)
- Change default param coordinates to 3 @turf/truncate (PR #757)
- along returns a point that is not found by
@turf/point-on-line(Issue #691) - Fix location of intersect point for
@turf/point-on-line. (PR #750) - Handle empty geometries as undefined
@turf/buffer(PR #746)
- Rhumb Line Modules (#728)
@turf/polygon-tangentsFinds the tangents of a (Multi)Polygon from a Point. (#708)@turf/rewindRewind LineString or Polygon outer ringclockwisecounter-clockwise and inner ringscounterclockwiseclockwise (#700 & #66)@turf/isobands- Takes a grid FeatureCollection of Point features with z-values and an array of value breaks and generates filled contour isobands. (#619)
- New function convertDistance to
@turf/helpers(#732) - Add ignoreBoundary param
@turf/inside(#706) - Add flattenEach/flattenReduce to
@turf/meta. (#712 & #692) - New Feature
getGeom&getGeomTypein@turf/invariant(#720) - Adds
round(),radians2degrees()anddegrees2radians()toturf-helpers(#715) - ⭐️ New Add FeatureCollection & GeometryCollection support to
@turf/rewind(#741)
- Fix
@turf/circletranslate properties (#717) - Apply equidistance
@turf/bufferto polygons (#660 & #718) - Fix jsts empty (Multi)Polygon error
@turf/difference(#725) - Support Geometry Objects & Collection (#710)
- New Reverse winding - Polygon CCW & Polygon CW
@turf/rewind(#741) - ⭐️ New Fix Feature GeometryCollection to
@turf/buffer(#739) - ⭐️ New Re-enable negative
radiusto@turf/buffer(#736)
- Add mutate param to
@turf/flip - Add Geometry & GeometryCollection support to
@turf/truncate @turf/insideperformance increase- Add properties param to
@turf/circle - Added
bearingToAnglemethod to turf-helpers
- Fix
@turf/bufferpoints in high latitudes - lineIntersect returns the same point several times
@turf/flipincorrect if z-elevation is present
- added centered param to point-grid (PR: #650)
- Single
module.exporthelpers, invariant & meta (Commit: https://github.com/Turfjs/turf/commit/9cebb2100cf545fec49488c80140909ab54358b5)
- Turf.invariant fails on string value as coordinate (PR: #643)
- Handle precision=0 turf-truncate (PR: #641)
- Added
radiansToDistance,distanceToRadians&distanceToDegreesto Turf core library from@turf/helpers. (Commit: https://github.com/Turfjs/turf/commit/a88d77a3e7f76860b3c138a716da8b603a407c8e) - Removed process.hrtime in
@turf/polygon-unkink(issue: mclaeysb/simplepolygon#5)
Typescript definitions index.d.ts added to all the packages.
Fix turf-line-slice bug with vertical linestrings.
This is a big change in Turf! 3.0.0 is a release that targets the development cycle of Turf, letting us work on it more and release more often.
Monorepo
Turf 3.x and forward is a monorepo project. We publish lots of little modules as usual, but there's one repo - turfjs/turf - that contains all the code and the issues for the Turf source code. We use lerna to link these packages together and make sure they work.
Why? We already had internal turf modules, like turf-meta, and development
was harder and harder - we had a bunch of custom scripts to do releases and
tests, and these were just written for Turf. Lerna is from the very popular
and very well-maintained babel project, and it
works really well, and reduces maintainer sadness.
Simplicity
Turf grew a bunch of modules that weren't totally necessary, or were expressing only a line or two of JavaScript. We want to make things easier, but these modules didn't make code more expressive and they hid complexity where it didn't need to be hidden. Turf 3.x focuses on the core functionalities we need, making sure they're tested and performant.
turf-erase has been renamed turf-difference to make its name more similar to the equivalents in other libraries.
Removed modules: merge, sum, min, max, average, median, variance, deviation, filter, remove, jenks, quantile. See the upgrade guide below for replacements.
Upgrading from v2
If you were using turf-merge
turf-merge repeatedly called turf-union on an array of polygons. Here's how to implement the same thing without the special module
var clone = require('clone');
var union = require('turf-union');
function merge(polygons) {
var merged = clone(polygons.features[0]), features = polygons.features;
for (var i = 0, len = features.length; i < len; i++) {
var poly = features[i];
if (poly.geometry) merged = union(merged, poly);
}
return merged;
}An alternative method that merges pairs of features recursively. With large numbers and similar complexity of input geometries this can speed up run time by factor 10. Choose depending on your use case.
var union = require('turf-union');
function mergeBin(polygons) {
var features = polygons.features;
do {
var merged = [], len = features.length;
for (var i = 0; i < len-1; i += 2) {
merged.push(turf.union(features[i], features[i+1]));
}
if (len % 2 !== 0) {
merged.push(features[len-1]);
}
features = merged;
} while(features.length > 1);
return features[0];
}If you were using turf-sum, min, max, average, median, variance, deviation
The turf-collect method provides the core of these statistical methods
and lets you bring your own statistical library, like simple-statistics,
science.js, or others.
For example, here's how to find the median of matched values with simple-statistics. Finding other statistics, like variance, mean, and so on simply use other methods from the statistics library.
var ss = require('simple-statistics');
var turf = require('@turf/turf');
var poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]);
var poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]);
var polyFC = turf.featureCollection([poly1, poly2]);
var pt1 = turf.point([5,5], {population: 200});
var pt2 = turf.point([1,3], {population: 600});
var pt3 = turf.point([14,2], {population: 100});
var pt4 = turf.point([13,1], {population: 200});
var pt5 = turf.point([19,7], {population: 300});
var ptFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]);
// collects values from matching points into an array called 'values'
var collected = turf.collect(polyFC, ptFC, 'population', 'values');
// finds the median of those values.
collected.features.forEach(function (feature) {
feature.properties.median = ss.median(feature.properties.values);
});
console.log(JSON.stringify(collected, null, 2));If you were using turf-filter, turf-remove
These modules were thin wrappers around native JavaScript methods: use Array.filter instead:
var filteredFeatures = features.filter(function(feature) {
return feature.properties.value > 10;
});If you were using turf-jenks, turf-quantile
Use Array.map to get values, and then bring your own statistical calculation, like simple-statistics or science.js.
var values = features.map(function(feature) {
return feature.properties.value;
});If you were using turf-extent
turf-extent's name was changed to turf-bbox. It is functionally the same.
turf.bbox(poly) // [minx, miny, maxx, maxy]- turf-grid renamed turf-point-grid (turf.grid => turf.pointGrid)
- turf-hex renamed turf-hex-grid (turf.hex => turf.hexGrid)
- turf-hex-grid now has a required
unitparameter - remove turf-isobands; use turf-isolines instead
- added turf-square-grid (turf.squareGrid)
- added turf-triangle-grid (turf.triangleGrid)
- constrain turf-point-grid to the bbox
- update all module dependencies to master
- add support for features in turf.intersection
- fix issues with turf.polygon coordinate wrapping inconsistencies
- add
unitparameter to turf.concave
- harmonize turf-tin dependency tree
- fixes bug in turf-along
- added turf-line-slice for segmenting LineStrings with Points
- turf-point-on-line for calculating the closest Point from a Point to a LineString
- tin ~7x faster
- Fix mutability issues with
flip,erase: data passed to Turf should never be changed in place. - added turf-line-distance for geodesic measuring of LineStrings
- added turf-along for calculating a the location of a Point x distance along a LineString
- added turf-area for calculating the area of a given feature