interior 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +10 -5
- data/interior.gemspec +1 -1
- data/lib/interior/version.rb +1 -1
- data/lib/interior.rb +2 -2
- metadata +4 -4
data/README.md
CHANGED
@@ -4,17 +4,22 @@ Interior
|
|
4
4
|
Township GeoCoder Web Service
|
5
5
|
-----------------------------
|
6
6
|
This gem uses the GeoCommunicator GeoCoder Web Service provided by the
|
7
|
-
[US Department of the Interior]
|
8
|
-
|
9
|
-
|
7
|
+
[US Department of the Interior] [1]. For detailed documentation on the web service API, consult the
|
8
|
+
[Methods, Parameters, and Results PDF] [2].
|
9
|
+
|
10
|
+
[1]: http://www.geocommunicator.gov/GeoComm/lsis_home/townshipdecoder/index.htm "US Department of the Interior"
|
11
|
+
[2]: http://www.blm.gov/nils/GeoComm/documents/NILS_GeoCommunicator_Web_Services_TGC_Formats.pdf "Methods, Parameters, and Results PDF"
|
10
12
|
|
11
13
|
US Meridian Map
|
12
14
|
---------------
|
13
|
-
The US is divided into several meridians. A [larger map]
|
14
|
-
is also available for reference.
|
15
|
+
The US is divided into several meridians. A [larger map] [3] and table are available for reference.
|
15
16
|
|
16
17
|
![USA Meridians](https://github.com/climate/interior/raw/master/maps/meridians_small.jpg "USA Meridians")
|
17
18
|
|
19
|
+
[3]: https://github.com/climate/interior/raw/master/maps/meridians.jpg "Larger Map"
|
20
|
+
|
21
|
+
US Meridian Table
|
22
|
+
-----------------
|
18
23
|
Each meridian has a corresponding numeric key mapping:
|
19
24
|
|
20
25
|
<table>
|
data/interior.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Interior::VERSION
|
8
8
|
s.authors = ["Chris Hunt"]
|
9
9
|
s.email = ["chunt@climate.com"]
|
10
|
-
s.homepage = "
|
10
|
+
s.homepage = "https://github.com/climate/interior"
|
11
11
|
s.summary = %q{Convert PLSS to latitude and longitude}
|
12
12
|
s.description = %q{Find the center latitude/longitude for any grid in the PLSS given township, range, and section.}
|
13
13
|
|
data/lib/interior/version.rb
CHANGED
data/lib/interior.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
require '
|
2
|
-
require '
|
1
|
+
require 'interior/response.rb'
|
2
|
+
require 'interior/geocoder.rb'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: interior
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 61
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 0.8.
|
9
|
+
- 1
|
10
|
+
version: 0.8.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Chris Hunt
|
@@ -86,7 +86,7 @@ files:
|
|
86
86
|
- spec/lib/interior/geocoder_spec.rb
|
87
87
|
- spec/lib/interior/response_spec.rb
|
88
88
|
- spec/spec_helper.rb
|
89
|
-
homepage:
|
89
|
+
homepage: https://github.com/climate/interior
|
90
90
|
licenses: []
|
91
91
|
|
92
92
|
post_install_message:
|