@turf/great-circle 7.1.0-alpha.7 → 7.1.0
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/README.md +1 -5
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ var greatCircle = turf.greatCircle(start, end, {properties: {name: 'Seattle to D
|
|
|
31
31
|
var addToMap = [start, end, greatCircle]
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
Returns **[Feature][6]<([LineString][
|
|
34
|
+
Returns **[Feature][6]<([LineString][1] | [MultiLineString][2])>** great circle line feature
|
|
35
35
|
|
|
36
36
|
[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4
|
|
37
37
|
|
|
@@ -45,10 +45,6 @@ Returns **[Feature][6]<([LineString][7] | [MultiLineString][8])>** great circle
|
|
|
45
45
|
|
|
46
46
|
[6]: https://tools.ietf.org/html/rfc7946#section-3.2
|
|
47
47
|
|
|
48
|
-
[7]: https://tools.ietf.org/html/rfc7946#section-3.1.4
|
|
49
|
-
|
|
50
|
-
[8]: https://tools.ietf.org/html/rfc7946#section-3.1.5
|
|
51
|
-
|
|
52
48
|
<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run "yarn docs" from the root of the turf project. -->
|
|
53
49
|
|
|
54
50
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/great-circle",
|
|
3
|
-
"version": "7.1.0
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"description": "turf great-circle module",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"contributors": [
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@turf/truncate": "^7.1.0
|
|
61
|
+
"@turf/truncate": "^7.1.0",
|
|
62
62
|
"@types/benchmark": "^2.1.5",
|
|
63
63
|
"@types/tape": "^4.2.32",
|
|
64
64
|
"benchmark": "^2.1.4",
|
|
@@ -70,8 +70,9 @@
|
|
|
70
70
|
"write-json-file": "^5.0.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@turf/helpers": "^7.1.0
|
|
74
|
-
"@turf/invariant": "^7.1.0
|
|
73
|
+
"@turf/helpers": "^7.1.0",
|
|
74
|
+
"@turf/invariant": "^7.1.0",
|
|
75
|
+
"@types/geojson": "^7946.0.10"
|
|
75
76
|
},
|
|
76
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "68915eeebc9278bb40dec3f1034499698a0561ef"
|
|
77
78
|
}
|