evapotranspiration 0.1.3 → 0.1.4
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 +7 -7
- data/evapotranspiration.gemspec +1 -1
- data/lib/evapotranspiration/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 117d459a7c1ca9b91e4a48642979cb06d3ecf9f0
|
|
4
|
+
data.tar.gz: 8466ee4d50b09b6971b0193e743c7e24454f9b10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c1e88d1c030409588185b754d6d944b736706473ba42e0884f1fa12ef8296e8842b38ca822ec6e1497086d838a80e69fbadbbf102abee99a50725c5f951294b
|
|
7
|
+
data.tar.gz: fecfeb80bac8cf721d664c2ed1cf1d5e83ea27a0d23210cb5cc2f82ec7dd201d4bcb6df2f674b9d59f045aa0180460a2867421e2f78d9fc8be51b106e9cdb249
|
data/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Evapotranspiration
|
|
2
2
|
|
|
3
3
|
[][gem]
|
|
4
|
-
[][travis]
|
|
5
5
|
|
|
6
6
|
[gem]: https://rubygems.org/gems/evapotranspiration
|
|
7
|
-
[travis]: http://travis-ci.org/
|
|
7
|
+
[travis]: http://travis-ci.org/brycejohnston/evapotranspiration
|
|
8
8
|
|
|
9
|
-
Ruby library for calculating reference crop evapotranspiration (ETo), also referred to as potential evapotranspiration (PET), using the FAO-56 Penman-Monteith method. This was originally ported into Ruby from [
|
|
9
|
+
Ruby library for calculating reference crop evapotranspiration (ETo), also referred to as potential evapotranspiration (PET), using the FAO-56 Penman-Monteith method. This was originally ported into Ruby from the [PyETo Python package from Mark Richards](https://github.com/woodcrafty/PyETo). The library provides numerous methods for estimating missing meteorological data.
|
|
10
10
|
|
|
11
11
|
Three methods for estimating ETo/PET are implemented:
|
|
12
12
|
|
|
@@ -42,11 +42,11 @@ http://www.rubydoc.info/gems/evapotranspiration
|
|
|
42
42
|
|
|
43
43
|
The Evapotranspiration wiki provides some usage examples and "how-to" articles:
|
|
44
44
|
|
|
45
|
-
https://github.com/
|
|
45
|
+
https://github.com/brycejohnston/evapotranspiration/wiki
|
|
46
46
|
|
|
47
47
|
## Contributing
|
|
48
48
|
|
|
49
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/brycejohnston/evapotranspiration.
|
|
50
50
|
|
|
51
51
|
### Development
|
|
52
52
|
|
|
@@ -54,6 +54,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
54
54
|
|
|
55
55
|
## License
|
|
56
56
|
|
|
57
|
-
The gem is available as open source under the terms of the BSD 3-Clause License (see [LICENSE.txt](https://github.com/
|
|
57
|
+
The gem is available as open source under the terms of the BSD 3-Clause License (see [LICENSE.txt](https://github.com/brycejohnston/evapotranspiration/blob/master/LICENSE.txt)).
|
|
58
58
|
|
|
59
|
-
The original PyETo Python package it is based on was released under the BSD 3-Clause License (see [LICENSE-ORIGINAL.txt](https://github.com/
|
|
59
|
+
The original PyETo Python package it is based on was released under the BSD 3-Clause License (see [LICENSE-ORIGINAL.txt](https://github.com/brycejohnston/evapotranspiration/blob/master/LICENSE-ORIGINAL.txt)).
|
data/evapotranspiration.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["johnstonbrc@gmail.com"]
|
|
11
11
|
spec.summary = %q{Ruby library for calculating reference crop evapotranspiration (ETo)}
|
|
12
12
|
spec.description = %q{Ruby library for calculating reference crop evapotranspiration (ETo), also referred to as potential evapotranspiration (PET), using the FAO-56 Penman-Monteith method.}
|
|
13
|
-
spec.homepage = "https://github.com/
|
|
13
|
+
spec.homepage = "https://github.com/brycejohnston/evapotranspiration"
|
|
14
14
|
spec.license = "BSD 3-Clause"
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
16
16
|
spec.bindir = "exe"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: evapotranspiration
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bryce Johnston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-06-
|
|
11
|
+
date: 2016-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -78,7 +78,7 @@ files:
|
|
|
78
78
|
- lib/evapotranspiration/thornthwaite.rb
|
|
79
79
|
- lib/evapotranspiration/validation.rb
|
|
80
80
|
- lib/evapotranspiration/version.rb
|
|
81
|
-
homepage: https://github.com/
|
|
81
|
+
homepage: https://github.com/brycejohnston/evapotranspiration
|
|
82
82
|
licenses:
|
|
83
83
|
- BSD 3-Clause
|
|
84
84
|
metadata: {}
|