geokit 1.12.0 → 1.13.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/fixtures/vcr_cassettes/fcc_reverse_geocode.yml +30 -16
- data/lib/geokit/geocoders/fcc.rb +1 -1
- data/lib/geokit/geocoders/ipstack.rb +1 -1
- data/lib/geokit/version.rb +1 -1
- data/test/test_fcc_geocoder.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: b1691dc33f515a09d9431feb7dd7e27c269a5758
|
|
4
|
+
data.tar.gz: 1fdefbe0c8ab0a0cd87f6fc77b1043b03d331f63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a541accf3c238702d5ac93ca705aa6a4bc848539bee8a7ae0a0c0b9b85317ae21dc890fed73e43dcb816bb8db08dfbcb1cdc32b9cb6a20f24bf0a19322dc9754
|
|
7
|
+
data.tar.gz: 97e24c8f53e37a1fb3762177ae0dd78daf4b089bb44417f01ac2400daee9851c4ba920d55814e36fbab36dbafec0fee532b40a8a2fb651196897a9a190575936
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://
|
|
5
|
+
uri: https://geo.fcc.gov/api/census/block/find?format=json&latitude=34.05&longitude=-118.25
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
|
10
10
|
Accept-Encoding:
|
|
11
11
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
12
|
Accept:
|
|
13
|
-
-
|
|
13
|
+
- "*/*"
|
|
14
14
|
User-Agent:
|
|
15
15
|
- Ruby
|
|
16
16
|
response:
|
|
@@ -18,22 +18,36 @@ http_interactions:
|
|
|
18
18
|
code: 200
|
|
19
19
|
message: OK
|
|
20
20
|
headers:
|
|
21
|
-
Server:
|
|
22
|
-
- Sun-Java-System-Web-Server/7.0
|
|
23
21
|
Date:
|
|
24
|
-
-
|
|
22
|
+
- Wed, 06 Jun 2018 23:16:19 GMT
|
|
25
23
|
Content-Type:
|
|
26
|
-
- application/json
|
|
27
|
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
-
|
|
24
|
+
- application/json; charset=utf-8
|
|
25
|
+
Content-Length:
|
|
26
|
+
- '318'
|
|
27
|
+
Connection:
|
|
28
|
+
- keep-alive
|
|
29
|
+
Server:
|
|
30
|
+
- Apache
|
|
31
|
+
Access-Control-Allow-Origin:
|
|
32
|
+
- "*"
|
|
33
|
+
Etag:
|
|
34
|
+
- W/"1b9-TirplOWInFVSA/jLG2kuS95iDQU"
|
|
35
|
+
X-Content-Type-Options:
|
|
36
|
+
- nosniff
|
|
37
|
+
X-Dns-Prefetch-Control:
|
|
38
|
+
- 'off'
|
|
39
|
+
X-Download-Options:
|
|
40
|
+
- noopen
|
|
41
|
+
X-Frame-Options:
|
|
42
|
+
- SAMEORIGIN
|
|
43
|
+
X-Xss-Protection:
|
|
44
|
+
- 1; mode=block
|
|
33
45
|
body:
|
|
34
46
|
encoding: UTF-8
|
|
35
|
-
string: '{"
|
|
36
|
-
|
|
47
|
+
string: '{"messages":["FCC0001: The coordinate lies on the boundary of mulitple
|
|
48
|
+
blocks, the block contains the clicked location is selected. For a complete
|
|
49
|
+
list use showall=true to display ''intersection'' element in the Block"],"Block":{"FIPS":"060372073012003","bbox":[-118.250429,34.049521,-118.248017,34.051658]},"County":{"FIPS":"06037","name":"Los
|
|
50
|
+
Angeles"},"State":{"FIPS":"06","code":"CA","name":"California"},"status":"OK","executionTime":"0"}'
|
|
37
51
|
http_version:
|
|
38
|
-
recorded_at:
|
|
39
|
-
recorded_with: VCR
|
|
52
|
+
recorded_at: Wed, 06 Jun 2018 23:16:19 GMT
|
|
53
|
+
recorded_with: VCR 4.0.0
|
data/lib/geokit/geocoders/fcc.rb
CHANGED
|
@@ -8,7 +8,7 @@ module Geokit
|
|
|
8
8
|
# Template method which does the reverse-geocode lookup.
|
|
9
9
|
def self.do_reverse_geocode(latlng)
|
|
10
10
|
latlng = LatLng.normalize(latlng)
|
|
11
|
-
url = "#{protocol}://
|
|
11
|
+
url = "#{protocol}://geo.fcc.gov/api/census/block/find?format=json&latitude=#{Geokit::Inflector.url_escape(latlng.lat.to_s)}&longitude=#{Geokit::Inflector.url_escape(latlng.lng.to_s)}"
|
|
12
12
|
process :json, url
|
|
13
13
|
end
|
|
14
14
|
|
data/lib/geokit/version.rb
CHANGED
data/test/test_fcc_geocoder.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geokit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Noack
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2018-
|
|
14
|
+
date: 2018-06-14 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: bundler
|
|
@@ -341,7 +341,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
341
341
|
version: '0'
|
|
342
342
|
requirements: []
|
|
343
343
|
rubyforge_project:
|
|
344
|
-
rubygems_version: 2.
|
|
344
|
+
rubygems_version: 2.4.5.1
|
|
345
345
|
signing_key:
|
|
346
346
|
specification_version: 4
|
|
347
347
|
summary: 'Geokit: encoding and distance calculation gem'
|