spatial_stats 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/README.md +10 -3
- data/lib/spatial_stats/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 56905c84e53f041ed8acc1437d7d3ee1312ff9515f3e11e08bd31120e7ed0c26
|
|
4
|
+
data.tar.gz: 2879c58f356b430285d55717cba5fc27f239097c35067032bd9d4407688c5086
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fd244b8cc798e4806d6c380bd3e1e261da3f8f509ed87f4f920f9eb706cb8d94150e1a915cc3f73417196ae8d91fc29579d6604f05c38cbd4c1a82b6cb34e48
|
|
7
|
+
data.tar.gz: 205d0850f885b0e0d673d51976d0d69d7357bd2a2f0382aaa0140f096fd5164db1cce7f1fc0c31cb204b97153f75cb1a18ff9d4120c905d2f73c4a9b247659cb
|
data/README.md
CHANGED
|
@@ -69,14 +69,17 @@ RGeo::Geos.supported?
|
|
|
69
69
|
|
|
70
70
|
## TODO
|
|
71
71
|
|
|
72
|
-
- Memoize expensive functions within classes
|
|
73
|
-
- Make star a parameter to getis-ord class
|
|
72
|
+
- ~~Memoize expensive functions within classes~~
|
|
73
|
+
- ~~Make star a parameter to getis-ord class~~
|
|
74
|
+
- Add examples to docs
|
|
75
|
+
- Create RDocs
|
|
74
76
|
|
|
75
77
|
## Future Work
|
|
76
78
|
|
|
77
79
|
#### General
|
|
78
80
|
|
|
79
|
-
- Refactor stats to inherit an abstract class
|
|
81
|
+
- ~~Refactor stats to inherit an abstract class.~~
|
|
82
|
+
- Change WeightsMatrix class and Stat classes to utilize sparse matrix methods.
|
|
80
83
|
|
|
81
84
|
#### Weights
|
|
82
85
|
|
|
@@ -91,6 +94,10 @@ RGeo::Geos.supported?
|
|
|
91
94
|
|
|
92
95
|
- Join Count Statistic
|
|
93
96
|
|
|
97
|
+
### PPA
|
|
98
|
+
|
|
99
|
+
- Add descriptive stat methods for point clusters.
|
|
100
|
+
|
|
94
101
|
## License
|
|
95
102
|
|
|
96
103
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spatial_stats
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keith Doggett
|
|
@@ -108,8 +108,8 @@ dependencies:
|
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: 1.2.6
|
|
111
|
-
description: An ActiveRecord/PostGIS extension that
|
|
112
|
-
spatial postgresql databases.It integrates with ActiveRecord to perform spatial
|
|
111
|
+
description: An ActiveRecord/PostGIS extension that provides statistical methods to
|
|
112
|
+
spatial postgresql databases. It integrates with ActiveRecord to perform spatial
|
|
113
113
|
weighting in PostGIS and performs statistical computations inside your rails app.
|
|
114
114
|
Supports contiguious and distance-based calculations.
|
|
115
115
|
email:
|
|
@@ -147,7 +147,7 @@ files:
|
|
|
147
147
|
- lib/spatial_stats/weights/distant.rb
|
|
148
148
|
- lib/spatial_stats/weights/weights_matrix.rb
|
|
149
149
|
- lib/tasks/spatial_stats_tasks.rake
|
|
150
|
-
homepage: https://www.github.com/
|
|
150
|
+
homepage: https://www.github.com/keithdoggett/spatial_stats
|
|
151
151
|
licenses:
|
|
152
152
|
- MIT
|
|
153
153
|
metadata: {}
|