@turf/polygon-tangents 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.
Files changed (2) hide show
  1. package/README.md +4 -8
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -9,7 +9,7 @@ Finds the tangents of a [(Multi)Polygon][1] from a [Point][2].
9
9
  ### Parameters
10
10
 
11
11
  * `pt` **[Coord][3]** to calculate the tangent points from
12
- * `polygon` **[Feature][4]<([Polygon][5] | [MultiPolygon][6])>** to get tangents from
12
+ * `polygon` **[Feature][4]<([Polygon][1] | [MultiPolygon][5])>** to get tangents from
13
13
 
14
14
  ### Examples
15
15
 
@@ -23,7 +23,7 @@ var tangents = turf.polygonTangents(point, polygon)
23
23
  var addToMap = [tangents, point, polygon];
24
24
  ```
25
25
 
26
- Returns **[FeatureCollection][7]<[Point][8]>** Feature Collection containing the two tangent points
26
+ Returns **[FeatureCollection][6]<[Point][2]>** Feature Collection containing the two tangent points
27
27
 
28
28
  [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6
29
29
 
@@ -33,13 +33,9 @@ Returns **[FeatureCollection][7]<[Point][8]>** Feature Collection containing the
33
33
 
34
34
  [4]: https://tools.ietf.org/html/rfc7946#section-3.2
35
35
 
36
- [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6
36
+ [5]: https://tools.ietf.org/html/rfc7946#section-3.1.7
37
37
 
38
- [6]: https://tools.ietf.org/html/rfc7946#section-3.1.7
39
-
40
- [7]: https://tools.ietf.org/html/rfc7946#section-3.3
41
-
42
- [8]: https://tools.ietf.org/html/rfc7946#section-3.1.2
38
+ [6]: https://tools.ietf.org/html/rfc7946#section-3.3
43
39
 
44
40
  <!-- 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. -->
45
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/polygon-tangents",
3
- "version": "7.1.0-alpha.7+0ce6ecca0",
3
+ "version": "7.1.0",
4
4
  "description": "turf polygon tangents module",
5
5
  "author": "Turf Authors",
6
6
  "contributors": [
@@ -69,13 +69,14 @@
69
69
  "write-json-file": "^5.0.0"
70
70
  },
71
71
  "dependencies": {
72
- "@turf/bbox": "^7.1.0-alpha.7+0ce6ecca0",
73
- "@turf/boolean-within": "^7.1.0-alpha.7+0ce6ecca0",
74
- "@turf/explode": "^7.1.0-alpha.7+0ce6ecca0",
75
- "@turf/helpers": "^7.1.0-alpha.7+0ce6ecca0",
76
- "@turf/invariant": "^7.1.0-alpha.7+0ce6ecca0",
77
- "@turf/nearest-point": "^7.1.0-alpha.7+0ce6ecca0",
72
+ "@turf/bbox": "^7.1.0",
73
+ "@turf/boolean-within": "^7.1.0",
74
+ "@turf/explode": "^7.1.0",
75
+ "@turf/helpers": "^7.1.0",
76
+ "@turf/invariant": "^7.1.0",
77
+ "@turf/nearest-point": "^7.1.0",
78
+ "@types/geojson": "^7946.0.10",
78
79
  "tslib": "^2.6.2"
79
80
  },
80
- "gitHead": "0ce6ecca05829690270fec6d6bed2003495fe0ea"
81
+ "gitHead": "68915eeebc9278bb40dec3f1034499698a0561ef"
81
82
  }