@turf/turf
Advanced tools
Comparing version 3.1.2 to 3.2.0
26
index.js
@@ -10,2 +10,5 @@ /*eslint global-require: 0*/ | ||
*/ | ||
var helpers = require('@turf/helpers'); | ||
module.exports = { | ||
@@ -54,15 +57,12 @@ isolines: require('@turf/isolines'), | ||
triangleGrid: require('@turf/triangle-grid'), | ||
hexGrid: require('@turf/hex-grid') | ||
hexGrid: require('@turf/hex-grid'), | ||
point: helpers.point, | ||
polygon: helpers.polygon, | ||
lineString: helpers.lineString, | ||
multiPoint: helpers.multiPoint, | ||
multiPolygon: helpers.multiPolygon, | ||
multiLineString: helpers.multiLineString, | ||
feature: helpers.feature, | ||
featureCollection: helpers.featureCollection, | ||
geometryCollection: helpers.geometryCollection | ||
}; | ||
var helpers = require('@turf/helpers'); | ||
module.exports.point = helpers.point; | ||
module.exports.polygon = helpers.polygon; | ||
module.exports.lineString = helpers.lineString; | ||
module.exports.multiPoint = helpers.multiPoint; | ||
module.exports.multiPolygon = helpers.multiPolygon; | ||
module.exports.multiLineString = helpers.multiLineString; | ||
module.exports.feature = helpers.feature; | ||
module.exports.featureCollection = helpers.featureCollection; | ||
module.exports.geometryCollection = helpers.geometryCollection; |
{ | ||
"name": "@turf/turf", | ||
"version": "3.1.2", | ||
"version": "3.2.0", | ||
"description": "a JavaScript library for performing geospatial operations with GeoJSON", | ||
@@ -61,3 +61,3 @@ "main": "index.js", | ||
"@turf/bezier": "^3.1.1", | ||
"@turf/buffer": "^3.1.2", | ||
"@turf/buffer": "^3.2.0", | ||
"@turf/center": "^3.1.2", | ||
@@ -67,3 +67,3 @@ "@turf/centroid": "^3.1.2", | ||
"@turf/combine": "^3.1.2", | ||
"@turf/concave": "^3.1.2", | ||
"@turf/concave": "^3.2.0", | ||
"@turf/convex": "^3.1.2", | ||
@@ -84,3 +84,3 @@ "@turf/destination": "^3.1.1", | ||
"@turf/line-distance": "^3.1.1", | ||
"@turf/line-slice": "^3.1.1", | ||
"@turf/line-slice": "^3.2.0", | ||
"@turf/meta": "^3.1.2", | ||
@@ -91,3 +91,3 @@ "@turf/midpoint": "^3.1.1", | ||
"@turf/point-grid": "^3.1.1", | ||
"@turf/point-on-line": "^3.1.1", | ||
"@turf/point-on-line": "^3.2.0", | ||
"@turf/point-on-surface": "^3.1.2", | ||
@@ -102,3 +102,3 @@ "@turf/random": "^3.0.16", | ||
"@turf/triangle-grid": "^3.1.1", | ||
"@turf/union": "^3.0.18", | ||
"@turf/union": "^3.2.0", | ||
"@turf/within": "^3.1.1", | ||
@@ -105,0 +105,0 @@ "@turf/helpers": "^3.0.16" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1234164
Updated@turf/buffer@^3.2.0
Updated@turf/concave@^3.2.0
Updated@turf/line-slice@^3.2.0
Updated@turf/point-on-line@^3.2.0
Updated@turf/union@^3.2.0