@turf/quadrat-analysis 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 +11 -11
- package/package.json +13 -12
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ which is simply the area of the study area divided by the number of features.
|
|
|
36
36
|
|
|
37
37
|
* `options.studyBbox` **bbox?** bbox representing the study area
|
|
38
38
|
* `options.confidenceLevel` **[number][4]** a confidence level.
|
|
39
|
-
The unit is percentage . 5 means 95%, value must be in [
|
|
39
|
+
The unit is percentage . 5 means 95%, value must be in [K\_TABLE][5] (optional, default `20`)
|
|
40
40
|
|
|
41
41
|
### Examples
|
|
42
42
|
|
|
@@ -48,7 +48,7 @@ var result = turf.quadratAnalysis(dataset);
|
|
|
48
48
|
|
|
49
49
|
Returns **[Object][3]** result [QuadratAnalysisResult][6]
|
|
50
50
|
|
|
51
|
-
##
|
|
51
|
+
## K\_TABLE
|
|
52
52
|
|
|
53
53
|
the confidence level
|
|
54
54
|
|
|
@@ -56,12 +56,12 @@ Type: [Object][3]
|
|
|
56
56
|
|
|
57
57
|
### Properties
|
|
58
58
|
|
|
59
|
-
* `20` **[number][4]
|
|
60
|
-
* `15` **[number][4]
|
|
61
|
-
* `10` **[number][4]
|
|
62
|
-
* `5` **[number][4]
|
|
63
|
-
* `2` **[number][4]
|
|
64
|
-
* `1` **[number][4]
|
|
59
|
+
* `20` **[number][4]** 
|
|
60
|
+
* `15` **[number][4]** 
|
|
61
|
+
* `10` **[number][4]** 
|
|
62
|
+
* `5` **[number][4]** 
|
|
63
|
+
* `2` **[number][4]** 
|
|
64
|
+
* `1` **[number][4]** 
|
|
65
65
|
|
|
66
66
|
## QuadratAnalysisResult
|
|
67
67
|
|
|
@@ -71,9 +71,9 @@ Type: [Object][3]
|
|
|
71
71
|
|
|
72
72
|
### Properties
|
|
73
73
|
|
|
74
|
-
* `criticalValue` **[number][4]
|
|
75
|
-
* `maxAbsoluteDifference` **[number][4]
|
|
76
|
-
* `isRandom` **[boolean][7]
|
|
74
|
+
* `criticalValue` **[number][4]** 
|
|
75
|
+
* `maxAbsoluteDifference` **[number][4]** 
|
|
76
|
+
* `isRandom` **[boolean][7]** 
|
|
77
77
|
* `observedDistribution` **[Array][8]<[number][4]>** the cumulative distribution of observed features,
|
|
78
78
|
the index represents the number of features in the quadrat.
|
|
79
79
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/quadrat-analysis",
|
|
3
|
-
"version": "7.1.0
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"description": "turf quadrat-analysis module",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"contributors": [
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"test:tape": "tsx test.ts"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@turf/nearest-neighbor-analysis": "^7.1.0
|
|
55
|
+
"@turf/nearest-neighbor-analysis": "^7.1.0",
|
|
56
56
|
"@types/benchmark": "^2.1.5",
|
|
57
57
|
"@types/tape": "^4.2.32",
|
|
58
58
|
"benchmark": "^2.1.4",
|
|
@@ -65,16 +65,17 @@
|
|
|
65
65
|
"write-json-file": "^5.0.0"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@turf/area": "^7.1.0
|
|
69
|
-
"@turf/bbox": "^7.1.0
|
|
70
|
-
"@turf/bbox-polygon": "^7.1.0
|
|
71
|
-
"@turf/centroid": "^7.1.0
|
|
72
|
-
"@turf/helpers": "^7.1.0
|
|
73
|
-
"@turf/invariant": "^7.1.0
|
|
74
|
-
"@turf/point-grid": "^7.1.0
|
|
75
|
-
"@turf/random": "^7.1.0
|
|
76
|
-
"@turf/square-grid": "^7.1.0
|
|
68
|
+
"@turf/area": "^7.1.0",
|
|
69
|
+
"@turf/bbox": "^7.1.0",
|
|
70
|
+
"@turf/bbox-polygon": "^7.1.0",
|
|
71
|
+
"@turf/centroid": "^7.1.0",
|
|
72
|
+
"@turf/helpers": "^7.1.0",
|
|
73
|
+
"@turf/invariant": "^7.1.0",
|
|
74
|
+
"@turf/point-grid": "^7.1.0",
|
|
75
|
+
"@turf/random": "^7.1.0",
|
|
76
|
+
"@turf/square-grid": "^7.1.0",
|
|
77
|
+
"@types/geojson": "^7946.0.10",
|
|
77
78
|
"tslib": "^2.6.2"
|
|
78
79
|
},
|
|
79
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "68915eeebc9278bb40dec3f1034499698a0561ef"
|
|
80
81
|
}
|