@turf/moran-index 7.1.0-alpha.7 → 7.1.0-alpha.70
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 +7 -7
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -28,8 +28,8 @@ the z-score can be calculated based on a normal or random assumption.
|
|
|
28
28
|
|
|
29
29
|
### Parameters
|
|
30
30
|
|
|
31
|
-
* `fc` **[FeatureCollection][3]\<any
|
|
32
|
-
* `options` **[Object][4]
|
|
31
|
+
* `fc` **[FeatureCollection][3]\<any>** 
|
|
32
|
+
* `options` **[Object][4]** 
|
|
33
33
|
|
|
34
34
|
* `options.inputField` **[string][5]** the property name, must contain numeric values
|
|
35
35
|
* `options.threshold` **[number][6]** the distance threshold (optional, default `100000`)
|
|
@@ -49,7 +49,7 @@ const result = turf.moranIndex(dataset, {
|
|
|
49
49
|
});
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
Returns **[MoranIndex][8]
|
|
52
|
+
Returns **[MoranIndex][8]** 
|
|
53
53
|
|
|
54
54
|
## mean
|
|
55
55
|
|
|
@@ -57,9 +57,9 @@ get mean of a list
|
|
|
57
57
|
|
|
58
58
|
### Parameters
|
|
59
59
|
|
|
60
|
-
* `y` **[Array][9]<[number][6]
|
|
60
|
+
* `y` **[Array][9]<[number][6]>** 
|
|
61
61
|
|
|
62
|
-
Returns **[number][6]
|
|
62
|
+
Returns **[number][6]** 
|
|
63
63
|
|
|
64
64
|
## variance
|
|
65
65
|
|
|
@@ -67,9 +67,9 @@ get variance of a list
|
|
|
67
67
|
|
|
68
68
|
### Parameters
|
|
69
69
|
|
|
70
|
-
* `y` **[Array][9]<[number][6]
|
|
70
|
+
* `y` **[Array][9]<[number][6]>** 
|
|
71
71
|
|
|
72
|
-
Returns **[number][6]
|
|
72
|
+
Returns **[number][6]** 
|
|
73
73
|
|
|
74
74
|
## MoranIndex
|
|
75
75
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/moran-index",
|
|
3
|
-
"version": "7.1.0-alpha.
|
|
3
|
+
"version": "7.1.0-alpha.70+948cdafaf",
|
|
4
4
|
"description": "turf moran-index module",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"contributors": [
|
|
@@ -64,10 +64,11 @@
|
|
|
64
64
|
"write-json-file": "^5.0.0"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@turf/distance-weight": "^7.1.0-alpha.
|
|
68
|
-
"@turf/helpers": "^7.1.0-alpha.
|
|
69
|
-
"@turf/meta": "^7.1.0-alpha.
|
|
67
|
+
"@turf/distance-weight": "^7.1.0-alpha.70+948cdafaf",
|
|
68
|
+
"@turf/helpers": "^7.1.0-alpha.70+948cdafaf",
|
|
69
|
+
"@turf/meta": "^7.1.0-alpha.70+948cdafaf",
|
|
70
|
+
"@types/geojson": "^7946.0.10",
|
|
70
71
|
"tslib": "^2.6.2"
|
|
71
72
|
},
|
|
72
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "948cdafaf70606d2e27fcc79973fa48ee1182067"
|
|
73
74
|
}
|