broken-geocoder 1.3.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 +7 -0
- data/CHANGELOG.md +467 -0
- data/LICENSE +20 -0
- data/README.md +1193 -0
- data/bin/geocode +5 -0
- data/examples/autoexpire_cache_dalli.rb +62 -0
- data/examples/autoexpire_cache_redis.rb +28 -0
- data/examples/cache_bypass.rb +48 -0
- data/examples/reverse_geocode_job.rb +40 -0
- data/lib/generators/geocoder/config/config_generator.rb +14 -0
- data/lib/generators/geocoder/config/templates/initializer.rb +21 -0
- data/lib/generators/geocoder/maxmind/geolite_city_generator.rb +28 -0
- data/lib/generators/geocoder/maxmind/geolite_country_generator.rb +28 -0
- data/lib/generators/geocoder/maxmind/templates/migration/geolite_city.rb +30 -0
- data/lib/generators/geocoder/maxmind/templates/migration/geolite_country.rb +17 -0
- data/lib/geocoder.rb +48 -0
- data/lib/geocoder/cache.rb +90 -0
- data/lib/geocoder/calculations.rb +431 -0
- data/lib/geocoder/cli.rb +121 -0
- data/lib/geocoder/configuration.rb +129 -0
- data/lib/geocoder/configuration_hash.rb +11 -0
- data/lib/geocoder/esri_token.rb +38 -0
- data/lib/geocoder/exceptions.rb +37 -0
- data/lib/geocoder/ip_address.rb +13 -0
- data/lib/geocoder/kernel_logger.rb +25 -0
- data/lib/geocoder/logger.rb +47 -0
- data/lib/geocoder/lookup.rb +110 -0
- data/lib/geocoder/lookups/baidu.rb +59 -0
- data/lib/geocoder/lookups/baidu_ip.rb +59 -0
- data/lib/geocoder/lookups/base.rb +325 -0
- data/lib/geocoder/lookups/bing.rb +80 -0
- data/lib/geocoder/lookups/dstk.rb +20 -0
- data/lib/geocoder/lookups/esri.rb +64 -0
- data/lib/geocoder/lookups/freegeoip.rb +51 -0
- data/lib/geocoder/lookups/geocoder_ca.rb +53 -0
- data/lib/geocoder/lookups/geocoder_us.rb +43 -0
- data/lib/geocoder/lookups/geocodio.rb +42 -0
- data/lib/geocoder/lookups/geoip2.rb +45 -0
- data/lib/geocoder/lookups/geoportail_lu.rb +65 -0
- data/lib/geocoder/lookups/google.rb +91 -0
- data/lib/geocoder/lookups/google_places_details.rb +50 -0
- data/lib/geocoder/lookups/google_premier.rb +47 -0
- data/lib/geocoder/lookups/here.rb +62 -0
- data/lib/geocoder/lookups/ipapi_com.rb +86 -0
- data/lib/geocoder/lookups/ipinfo_io.rb +55 -0
- data/lib/geocoder/lookups/latlon.rb +59 -0
- data/lib/geocoder/lookups/mapbox.rb +53 -0
- data/lib/geocoder/lookups/mapquest.rb +59 -0
- data/lib/geocoder/lookups/mapzen.rb +15 -0
- data/lib/geocoder/lookups/maxmind.rb +90 -0
- data/lib/geocoder/lookups/maxmind_geoip2.rb +69 -0
- data/lib/geocoder/lookups/maxmind_local.rb +65 -0
- data/lib/geocoder/lookups/nominatim.rb +52 -0
- data/lib/geocoder/lookups/okf.rb +44 -0
- data/lib/geocoder/lookups/opencagedata.rb +58 -0
- data/lib/geocoder/lookups/ovi.rb +62 -0
- data/lib/geocoder/lookups/pelias.rb +64 -0
- data/lib/geocoder/lookups/pointpin.rb +68 -0
- data/lib/geocoder/lookups/postcode_anywhere_uk.rb +51 -0
- data/lib/geocoder/lookups/smarty_streets.rb +50 -0
- data/lib/geocoder/lookups/telize.rb +55 -0
- data/lib/geocoder/lookups/test.rb +44 -0
- data/lib/geocoder/lookups/yandex.rb +58 -0
- data/lib/geocoder/models/active_record.rb +50 -0
- data/lib/geocoder/models/base.rb +39 -0
- data/lib/geocoder/models/mongo_base.rb +62 -0
- data/lib/geocoder/models/mongo_mapper.rb +26 -0
- data/lib/geocoder/models/mongoid.rb +32 -0
- data/lib/geocoder/query.rb +111 -0
- data/lib/geocoder/railtie.rb +26 -0
- data/lib/geocoder/request.rb +83 -0
- data/lib/geocoder/results/baidu.rb +79 -0
- data/lib/geocoder/results/baidu_ip.rb +62 -0
- data/lib/geocoder/results/base.rb +67 -0
- data/lib/geocoder/results/bing.rb +52 -0
- data/lib/geocoder/results/dstk.rb +6 -0
- data/lib/geocoder/results/esri.rb +75 -0
- data/lib/geocoder/results/freegeoip.rb +45 -0
- data/lib/geocoder/results/geocoder_ca.rb +60 -0
- data/lib/geocoder/results/geocoder_us.rb +39 -0
- data/lib/geocoder/results/geocodio.rb +70 -0
- data/lib/geocoder/results/geoip2.rb +62 -0
- data/lib/geocoder/results/geoportail_lu.rb +69 -0
- data/lib/geocoder/results/google.rb +139 -0
- data/lib/geocoder/results/google_places_details.rb +35 -0
- data/lib/geocoder/results/google_premier.rb +6 -0
- data/lib/geocoder/results/here.rb +71 -0
- data/lib/geocoder/results/ipapi_com.rb +45 -0
- data/lib/geocoder/results/ipinfo_io.rb +48 -0
- data/lib/geocoder/results/latlon.rb +71 -0
- data/lib/geocoder/results/mapbox.rb +47 -0
- data/lib/geocoder/results/mapquest.rb +48 -0
- data/lib/geocoder/results/mapzen.rb +5 -0
- data/lib/geocoder/results/maxmind.rb +135 -0
- data/lib/geocoder/results/maxmind_geoip2.rb +9 -0
- data/lib/geocoder/results/maxmind_local.rb +49 -0
- data/lib/geocoder/results/nominatim.rb +99 -0
- data/lib/geocoder/results/okf.rb +106 -0
- data/lib/geocoder/results/opencagedata.rb +90 -0
- data/lib/geocoder/results/ovi.rb +71 -0
- data/lib/geocoder/results/pelias.rb +58 -0
- data/lib/geocoder/results/pointpin.rb +40 -0
- data/lib/geocoder/results/postcode_anywhere_uk.rb +42 -0
- data/lib/geocoder/results/smarty_streets.rb +106 -0
- data/lib/geocoder/results/telize.rb +45 -0
- data/lib/geocoder/results/test.rb +33 -0
- data/lib/geocoder/results/yandex.rb +92 -0
- data/lib/geocoder/sql.rb +107 -0
- data/lib/geocoder/stores/active_record.rb +305 -0
- data/lib/geocoder/stores/base.rb +116 -0
- data/lib/geocoder/stores/mongo_base.rb +58 -0
- data/lib/geocoder/stores/mongo_mapper.rb +13 -0
- data/lib/geocoder/stores/mongoid.rb +13 -0
- data/lib/geocoder/version.rb +3 -0
- data/lib/hash_recursive_merge.rb +74 -0
- data/lib/maxmind_database.rb +109 -0
- data/lib/tasks/geocoder.rake +38 -0
- data/lib/tasks/maxmind.rake +73 -0
- metadata +167 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
require 'geocoder/results/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class Okf < Base
|
|
5
|
+
|
|
6
|
+
def coordinates
|
|
7
|
+
['lat', 'lng'].map{ |i| geometry['location'][i] }
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def address(format = :full)
|
|
11
|
+
formatted_address
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def city
|
|
15
|
+
fields = [:locality, :sublocality,
|
|
16
|
+
:administrative_area_level_3,
|
|
17
|
+
:administrative_area_level_2]
|
|
18
|
+
fields.each do |f|
|
|
19
|
+
if entity = address_components_of_type(f).first
|
|
20
|
+
return entity['long_name']
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
return nil # no appropriate components found
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def state
|
|
27
|
+
""
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def sub_state
|
|
31
|
+
""
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def state_code
|
|
35
|
+
""
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def country
|
|
39
|
+
if country = address_components_of_type(:country).first
|
|
40
|
+
country['long_name']
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def country_code
|
|
45
|
+
if country = address_components_of_type(:country).first
|
|
46
|
+
country['short_name']
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def postal_code
|
|
51
|
+
if postal = address_components_of_type(:postal_code).first
|
|
52
|
+
postal['long_name']
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def route
|
|
57
|
+
if route = address_components_of_type(:route).first
|
|
58
|
+
route['long_name']
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def street_number
|
|
63
|
+
if street_number = address_components_of_type(:street_number).first
|
|
64
|
+
street_number['long_name']
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def street_address
|
|
69
|
+
[route, street_number].compact.join(' ')
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def types
|
|
73
|
+
@data['types']
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def formatted_address
|
|
77
|
+
@data['formatted_address']
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def address_components
|
|
81
|
+
@data['address_components']
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
##
|
|
85
|
+
# Get address components of a given type. Valid types are defined in
|
|
86
|
+
# Google's Geocoding API documentation and include (among others):
|
|
87
|
+
#
|
|
88
|
+
# :street_number
|
|
89
|
+
# :locality
|
|
90
|
+
# :neighborhood
|
|
91
|
+
# :route
|
|
92
|
+
# :postal_code
|
|
93
|
+
#
|
|
94
|
+
def address_components_of_type(type)
|
|
95
|
+
address_components.select{ |c| c['types'].include?(type.to_s) }
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def geometry
|
|
99
|
+
@data['geometry']
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def precision
|
|
103
|
+
geometry['location_type'] if geometry
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
end
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
require 'geocoder/results/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class Opencagedata < Base
|
|
5
|
+
|
|
6
|
+
def poi
|
|
7
|
+
%w[stadium bus_stop tram_stop].each do |key|
|
|
8
|
+
return @data['components'][key] if @data['components'].key?(key)
|
|
9
|
+
end
|
|
10
|
+
return nil
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def house_number
|
|
14
|
+
@data['components']['house_number']
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def address
|
|
18
|
+
@data['formatted']
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def street
|
|
22
|
+
%w[road pedestrian highway].each do |key|
|
|
23
|
+
return @data['components'][key] if @data['components'].key?(key)
|
|
24
|
+
end
|
|
25
|
+
return nil
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def city
|
|
29
|
+
%w[city town village hamlet].each do |key|
|
|
30
|
+
return @data['components'][key] if @data['components'].key?(key)
|
|
31
|
+
end
|
|
32
|
+
return nil
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def village
|
|
36
|
+
@data['components']['village']
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def state
|
|
41
|
+
@data['components']['state']
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
alias_method :state_code, :state
|
|
45
|
+
|
|
46
|
+
def postal_code
|
|
47
|
+
@data['components']['postcode'].to_s
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def county
|
|
51
|
+
@data['components']['county']
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def country
|
|
55
|
+
@data['components']['country']
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def country_code
|
|
59
|
+
@data['components']['country_code']
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def suburb
|
|
63
|
+
@data['components']['suburb']
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def coordinates
|
|
67
|
+
[@data['geometry']['lat'].to_f, @data['geometry']['lng'].to_f]
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def viewport
|
|
71
|
+
bounds = @data['bounds'] || fail
|
|
72
|
+
south, west = %w(lat lng).map { |i| bounds['southwest'][i] }
|
|
73
|
+
north, east = %w(lat lng).map { |i| bounds['northeast'][i] }
|
|
74
|
+
[south, west, north, east]
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def self.response_attributes
|
|
78
|
+
%w[boundingbox license
|
|
79
|
+
formatted stadium]
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
response_attributes.each do |a|
|
|
83
|
+
unless method_defined?(a)
|
|
84
|
+
define_method a do
|
|
85
|
+
@data[a]
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
end
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
require 'geocoder/results/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class Ovi < Base
|
|
5
|
+
|
|
6
|
+
##
|
|
7
|
+
# A string in the given format.
|
|
8
|
+
#
|
|
9
|
+
def address(format = :full)
|
|
10
|
+
address_data['Label']
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
##
|
|
14
|
+
# A two-element array: [lat, lon].
|
|
15
|
+
#
|
|
16
|
+
def coordinates
|
|
17
|
+
fail unless d = @data['Location']['DisplayPosition']
|
|
18
|
+
[d['Latitude'].to_f, d['Longitude'].to_f]
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def state
|
|
22
|
+
address_data['County']
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def province
|
|
26
|
+
address_data['County']
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def postal_code
|
|
30
|
+
address_data['PostalCode']
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def city
|
|
34
|
+
address_data['City']
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def state_code
|
|
38
|
+
address_data['State']
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def province_code
|
|
42
|
+
address_data['State']
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def country
|
|
46
|
+
fail unless d = address_data['AdditionalData']
|
|
47
|
+
if v = d.find{|ad| ad['key']=='CountryName'}
|
|
48
|
+
return v['value']
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def country_code
|
|
53
|
+
address_data['Country']
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def viewport
|
|
57
|
+
map_view = data['Location']['MapView'] || fail
|
|
58
|
+
south = map_view['BottomRight']['Latitude']
|
|
59
|
+
west = map_view['TopLeft']['Longitude']
|
|
60
|
+
north = map_view['TopLeft']['Latitude']
|
|
61
|
+
east = map_view['BottomRight']['Longitude']
|
|
62
|
+
[south, west, north, east]
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
private # ----------------------------------------------------------------
|
|
66
|
+
|
|
67
|
+
def address_data
|
|
68
|
+
@data['Location']['Address'] || fail
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
end
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
require 'geocoder/results/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class Pelias < Base
|
|
5
|
+
def address(format = :full)
|
|
6
|
+
properties['label']
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def city
|
|
10
|
+
locality
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def coordinates
|
|
14
|
+
geometry['coordinates'].reverse
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def country_code
|
|
18
|
+
properties['country_a']
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def postal_code
|
|
22
|
+
properties['postalcode'].to_s
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def province
|
|
26
|
+
state
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def state
|
|
30
|
+
properties['region']
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def state_code
|
|
34
|
+
properties['region_a']
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def self.response_attributes
|
|
38
|
+
%w[county confidence country gid id layer localadmin locality neighborhood]
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
response_attributes.each do |a|
|
|
42
|
+
define_method a do
|
|
43
|
+
properties[a]
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
private
|
|
48
|
+
|
|
49
|
+
def geometry
|
|
50
|
+
@data.fetch('geometry', {})
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def properties
|
|
54
|
+
@data.fetch('properties', {})
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
require 'geocoder/results/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class Pointpin < Base
|
|
5
|
+
|
|
6
|
+
def address
|
|
7
|
+
[ city_name, state, postal_code, country ].select{ |i| i.to_s != "" }.join(", ")
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def city
|
|
11
|
+
@data['city_name']
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def state
|
|
15
|
+
@data['region_name']
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def state_code
|
|
19
|
+
@data['region_code']
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def country
|
|
23
|
+
@data['country_name']
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def postal_code
|
|
27
|
+
@data['postcode']
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def self.response_attributes
|
|
31
|
+
%w[continent_code ip country_code country_name region_name city_name postcode latitude longitude time_zone languages]
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
response_attributes.each do |a|
|
|
35
|
+
define_method a do
|
|
36
|
+
@data[a]
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
require 'geocoder/results/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class PostcodeAnywhereUk < Base
|
|
5
|
+
|
|
6
|
+
def coordinates
|
|
7
|
+
[@data['Latitude'].to_f, @data['Longitude'].to_f]
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def blank_result
|
|
11
|
+
''
|
|
12
|
+
end
|
|
13
|
+
alias_method :state, :blank_result
|
|
14
|
+
alias_method :state_code, :blank_result
|
|
15
|
+
alias_method :postal_code, :blank_result
|
|
16
|
+
|
|
17
|
+
def address
|
|
18
|
+
@data['Location']
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def city
|
|
22
|
+
# is this too big a jump to assume that the API always
|
|
23
|
+
# returns a City, County as the last elements?
|
|
24
|
+
city = @data['Location'].split(',')[-2] || blank_result
|
|
25
|
+
city.strip
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def os_grid
|
|
29
|
+
@data['OsGrid']
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# This is a UK only API; all results are UK specific and
|
|
33
|
+
# so ommitted from API response.
|
|
34
|
+
def country
|
|
35
|
+
'United Kingdom'
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def country_code
|
|
39
|
+
'UK'
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
require 'geocoder/lookups/base'
|
|
2
|
+
|
|
3
|
+
module Geocoder::Result
|
|
4
|
+
class SmartyStreets < Base
|
|
5
|
+
def coordinates
|
|
6
|
+
%w(latitude longitude).map do |i|
|
|
7
|
+
zipcode_endpoint? ? zipcodes.first[i] : metadata[i]
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def address
|
|
12
|
+
[
|
|
13
|
+
delivery_line_1,
|
|
14
|
+
delivery_line_2,
|
|
15
|
+
last_line
|
|
16
|
+
].select{ |i| i.to_s != "" }.join(" ")
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def state
|
|
20
|
+
zipcode_endpoint? ?
|
|
21
|
+
city_states.first['state'] :
|
|
22
|
+
components['state_abbreviation']
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def state_code
|
|
26
|
+
zipcode_endpoint? ?
|
|
27
|
+
city_states.first['state_abbreviation'] :
|
|
28
|
+
components['state_abbreviation']
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def country
|
|
32
|
+
# SmartyStreets returns results for USA only
|
|
33
|
+
"United States"
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def country_code
|
|
37
|
+
# SmartyStreets returns results for USA only
|
|
38
|
+
"US"
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
## Extra methods not in base.rb ------------------------
|
|
42
|
+
|
|
43
|
+
def street
|
|
44
|
+
components['street_name']
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def city
|
|
48
|
+
zipcode_endpoint? ?
|
|
49
|
+
city_states.first['city'] :
|
|
50
|
+
components['city_name']
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def zipcode
|
|
54
|
+
zipcode_endpoint? ?
|
|
55
|
+
zipcodes.first['zipcode'] :
|
|
56
|
+
components['zipcode']
|
|
57
|
+
end
|
|
58
|
+
alias_method :postal_code, :zipcode
|
|
59
|
+
|
|
60
|
+
def zip4
|
|
61
|
+
components['plus4_code']
|
|
62
|
+
end
|
|
63
|
+
alias_method :postal_code_extended, :zip4
|
|
64
|
+
|
|
65
|
+
def fips
|
|
66
|
+
zipcode_endpoint? ?
|
|
67
|
+
zipcodes.first['county_fips'] :
|
|
68
|
+
metadata['county_fips']
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def zipcode_endpoint?
|
|
72
|
+
zipcodes.any?
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
[
|
|
76
|
+
:delivery_line_1,
|
|
77
|
+
:delivery_line_2,
|
|
78
|
+
:last_line,
|
|
79
|
+
:delivery_point_barcode,
|
|
80
|
+
:addressee
|
|
81
|
+
].each do |m|
|
|
82
|
+
define_method(m) do
|
|
83
|
+
@data[m.to_s] || ''
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
[
|
|
88
|
+
:components,
|
|
89
|
+
:metadata,
|
|
90
|
+
:analysis
|
|
91
|
+
].each do |m|
|
|
92
|
+
define_method(m) do
|
|
93
|
+
@data[m.to_s] || {}
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
[
|
|
98
|
+
:city_states,
|
|
99
|
+
:zipcodes
|
|
100
|
+
].each do |m|
|
|
101
|
+
define_method(m) do
|
|
102
|
+
@data[m.to_s] || []
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
end
|