@turf/turf 6.5.0 → 7.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/index.js +10 -10
- package/dist/js/index.js +457 -545
- package/index.d.ts +3 -24
- package/package.json +116 -110
- package/turf.min.js +144 -83
package/dist/es/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export { default as isolines } from '@turf/isolines';
|
|
2
2
|
export { default as convex } from '@turf/convex';
|
|
3
|
-
export { default as pointsWithinPolygon
|
|
3
|
+
export { default as pointsWithinPolygon } from '@turf/points-within-polygon';
|
|
4
4
|
export { default as concave } from '@turf/concave';
|
|
5
5
|
export { default as collect } from '@turf/collect';
|
|
6
6
|
export { default as flip } from '@turf/flip';
|
|
7
7
|
export { default as simplify } from '@turf/simplify';
|
|
8
|
-
export { default as
|
|
8
|
+
export { default as bezierSpline } from '@turf/bezier-spline';
|
|
9
9
|
export { default as tag } from '@turf/tag';
|
|
10
10
|
export { default as sample } from '@turf/sample';
|
|
11
11
|
export { default as envelope } from '@turf/envelope';
|
|
@@ -21,19 +21,19 @@ export { default as explode } from '@turf/explode';
|
|
|
21
21
|
export { default as bbox } from '@turf/bbox';
|
|
22
22
|
export { default as tesselate } from '@turf/tesselate';
|
|
23
23
|
export { default as bboxPolygon } from '@turf/bbox-polygon';
|
|
24
|
-
export { default as booleanPointInPolygon
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as nearestPointOnLine
|
|
24
|
+
export { default as booleanPointInPolygon } from '@turf/boolean-point-in-polygon';
|
|
25
|
+
export { default as nearestPoint } from '@turf/nearest-point';
|
|
26
|
+
export { default as nearestPointOnLine } from '@turf/nearest-point-on-line';
|
|
27
27
|
export { default as nearestPointToLine } from '@turf/nearest-point-to-line';
|
|
28
28
|
export { default as planepoint } from '@turf/planepoint';
|
|
29
29
|
export { default as tin } from '@turf/tin';
|
|
30
30
|
export { default as bearing } from '@turf/bearing';
|
|
31
31
|
export { default as destination } from '@turf/destination';
|
|
32
32
|
export { default as kinks } from '@turf/kinks';
|
|
33
|
-
export { default as pointOnFeature
|
|
33
|
+
export { default as pointOnFeature } from '@turf/point-on-feature';
|
|
34
34
|
export { default as area } from '@turf/area';
|
|
35
35
|
export { default as along } from '@turf/along';
|
|
36
|
-
export { default as length
|
|
36
|
+
export { default as length } from '@turf/length';
|
|
37
37
|
export { default as lineSlice } from '@turf/line-slice';
|
|
38
38
|
export { default as lineSliceAlong } from '@turf/line-slice-along';
|
|
39
39
|
export { default as pointGrid } from '@turf/point-grid';
|
|
@@ -46,8 +46,8 @@ export { default as greatCircle } from '@turf/great-circle';
|
|
|
46
46
|
export { default as lineSegment } from '@turf/line-segment';
|
|
47
47
|
export { default as lineSplit } from '@turf/line-split';
|
|
48
48
|
export { default as lineArc } from '@turf/line-arc';
|
|
49
|
-
export { default as polygonToLine
|
|
50
|
-
export { default as
|
|
49
|
+
export { default as polygonToLine } from '@turf/polygon-to-line';
|
|
50
|
+
export { default as lineToPolygon } from '@turf/line-to-polygon';
|
|
51
51
|
export { default as bboxClip } from '@turf/bbox-clip';
|
|
52
52
|
export { default as lineOverlap } from '@turf/line-overlap';
|
|
53
53
|
export { default as sector } from '@turf/sector';
|
|
@@ -71,6 +71,7 @@ export { default as booleanPointOnLine } from '@turf/boolean-point-on-line';
|
|
|
71
71
|
export { default as booleanEqual } from '@turf/boolean-equal';
|
|
72
72
|
export { default as booleanWithin } from '@turf/boolean-within';
|
|
73
73
|
export { default as booleanIntersects } from '@turf/boolean-intersects';
|
|
74
|
+
export { default as booleanTouches } from '@turf/boolean-touches';
|
|
74
75
|
export { default as clone } from '@turf/clone';
|
|
75
76
|
export { default as cleanCoords } from '@turf/clean-coords';
|
|
76
77
|
export { default as clustersDbscan } from '@turf/clusters-dbscan';
|
|
@@ -99,7 +100,6 @@ export { clusters };
|
|
|
99
100
|
export * from '@turf/helpers';
|
|
100
101
|
import * as helpers from '@turf/helpers';
|
|
101
102
|
export { helpers };
|
|
102
|
-
export { bearingToAzimuth as bearingToAngle, convertLength as convertDistance, degreesToRadians as degrees2radians, lengthToDegrees as distanceToDegrees, lengthToRadians as distanceToRadians, radiansToDegrees as radians2degrees, radiansToLength as radiansToDistance } from '@turf/helpers';
|
|
103
103
|
export * from '@turf/invariant';
|
|
104
104
|
import * as invariant from '@turf/invariant';
|
|
105
105
|
export { invariant };
|