@turf/moran-index 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 +7 -7
  2. 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>**&#x20;
32
+ * `options` **[Object][4]**&#x20;
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]**&#x20;
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]>**&#x20;
61
61
 
62
- Returns **[number][6]**
62
+ Returns **[number][6]**&#x20;
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]>**&#x20;
71
71
 
72
- Returns **[number][6]**
72
+ Returns **[number][6]**&#x20;
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.7+0ce6ecca0",
3
+ "version": "7.1.0",
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.7+0ce6ecca0",
68
- "@turf/helpers": "^7.1.0-alpha.7+0ce6ecca0",
69
- "@turf/meta": "^7.1.0-alpha.7+0ce6ecca0",
67
+ "@turf/distance-weight": "^7.1.0",
68
+ "@turf/helpers": "^7.1.0",
69
+ "@turf/meta": "^7.1.0",
70
+ "@types/geojson": "^7946.0.10",
70
71
  "tslib": "^2.6.2"
71
72
  },
72
- "gitHead": "0ce6ecca05829690270fec6d6bed2003495fe0ea"
73
+ "gitHead": "68915eeebc9278bb40dec3f1034499698a0561ef"
73
74
  }