geocoder 1.1.9 → 1.3.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of geocoder might be problematic. Click here for more details.

Files changed (174) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +157 -0
  3. data/README.md +467 -70
  4. data/examples/reverse_geocode_job.rb +40 -0
  5. data/lib/generators/geocoder/config/templates/initializer.rb +16 -16
  6. data/lib/generators/geocoder/maxmind/geolite_city_generator.rb +28 -0
  7. data/lib/generators/geocoder/maxmind/geolite_country_generator.rb +28 -0
  8. data/lib/generators/geocoder/maxmind/templates/migration/geolite_city.rb +30 -0
  9. data/lib/generators/geocoder/maxmind/templates/migration/geolite_country.rb +17 -0
  10. data/lib/geocoder/cache.rb +3 -2
  11. data/lib/geocoder/calculations.rb +44 -2
  12. data/lib/geocoder/configuration.rb +17 -10
  13. data/lib/geocoder/esri_token.rb +38 -0
  14. data/lib/geocoder/exceptions.rb +19 -0
  15. data/lib/geocoder/ip_address.rb +13 -0
  16. data/lib/geocoder/kernel_logger.rb +25 -0
  17. data/lib/geocoder/logger.rb +47 -0
  18. data/lib/geocoder/lookup.rb +32 -8
  19. data/lib/geocoder/lookups/baidu.rb +18 -13
  20. data/lib/geocoder/lookups/baidu_ip.rb +59 -0
  21. data/lib/geocoder/lookups/base.rb +81 -19
  22. data/lib/geocoder/lookups/bing.rb +40 -7
  23. data/lib/geocoder/lookups/esri.rb +42 -5
  24. data/lib/geocoder/lookups/freegeoip.rb +9 -1
  25. data/lib/geocoder/lookups/geocoder_ca.rb +1 -2
  26. data/lib/geocoder/lookups/geocoder_us.rb +6 -2
  27. data/lib/geocoder/lookups/geocodio.rb +42 -0
  28. data/lib/geocoder/lookups/geoip2.rb +45 -0
  29. data/lib/geocoder/lookups/geoportail_lu.rb +65 -0
  30. data/lib/geocoder/lookups/google.rb +29 -5
  31. data/lib/geocoder/lookups/google_places_details.rb +50 -0
  32. data/lib/geocoder/lookups/google_premier.rb +1 -1
  33. data/lib/geocoder/lookups/here.rb +62 -0
  34. data/lib/geocoder/lookups/ipapi_com.rb +86 -0
  35. data/lib/geocoder/lookups/ipinfo_io.rb +55 -0
  36. data/lib/geocoder/lookups/latlon.rb +59 -0
  37. data/lib/geocoder/lookups/mapbox.rb +53 -0
  38. data/lib/geocoder/lookups/mapquest.rb +6 -6
  39. data/lib/geocoder/lookups/mapzen.rb +15 -0
  40. data/lib/geocoder/lookups/maxmind.rb +4 -2
  41. data/lib/geocoder/lookups/maxmind_geoip2.rb +69 -0
  42. data/lib/geocoder/lookups/maxmind_local.rb +65 -0
  43. data/lib/geocoder/lookups/nominatim.rb +9 -1
  44. data/lib/geocoder/lookups/okf.rb +44 -0
  45. data/lib/geocoder/lookups/opencagedata.rb +58 -0
  46. data/lib/geocoder/lookups/pelias.rb +64 -0
  47. data/lib/geocoder/lookups/pointpin.rb +68 -0
  48. data/lib/geocoder/lookups/postcode_anywhere_uk.rb +51 -0
  49. data/lib/geocoder/lookups/smarty_streets.rb +53 -0
  50. data/lib/geocoder/lookups/telize.rb +55 -0
  51. data/lib/geocoder/lookups/yandex.rb +8 -4
  52. data/lib/geocoder/models/active_record.rb +7 -3
  53. data/lib/geocoder/models/base.rb +1 -4
  54. data/lib/geocoder/models/mongo_base.rb +6 -4
  55. data/lib/geocoder/query.rb +9 -5
  56. data/lib/geocoder/railtie.rb +1 -1
  57. data/lib/geocoder/request.rb +74 -12
  58. data/lib/geocoder/results/baidu_ip.rb +62 -0
  59. data/lib/geocoder/results/bing.rb +4 -0
  60. data/lib/geocoder/results/esri.rb +30 -6
  61. data/lib/geocoder/results/freegeoip.rb +2 -2
  62. data/lib/geocoder/results/geocodio.rb +70 -0
  63. data/lib/geocoder/results/geoip2.rb +62 -0
  64. data/lib/geocoder/results/geoportail_lu.rb +69 -0
  65. data/lib/geocoder/results/google.rb +15 -0
  66. data/lib/geocoder/results/google_places_details.rb +35 -0
  67. data/lib/geocoder/results/here.rb +71 -0
  68. data/lib/geocoder/results/ipapi_com.rb +45 -0
  69. data/lib/geocoder/results/ipinfo_io.rb +48 -0
  70. data/lib/geocoder/results/latlon.rb +71 -0
  71. data/lib/geocoder/results/mapbox.rb +47 -0
  72. data/lib/geocoder/results/mapquest.rb +5 -8
  73. data/lib/geocoder/results/mapzen.rb +5 -0
  74. data/lib/geocoder/results/maxmind_geoip2.rb +9 -0
  75. data/lib/geocoder/results/maxmind_local.rb +49 -0
  76. data/lib/geocoder/results/nominatim.rb +6 -1
  77. data/lib/geocoder/results/okf.rb +106 -0
  78. data/lib/geocoder/results/opencagedata.rb +90 -0
  79. data/lib/geocoder/results/ovi.rb +9 -0
  80. data/lib/geocoder/results/pelias.rb +58 -0
  81. data/lib/geocoder/results/pointpin.rb +40 -0
  82. data/lib/geocoder/results/postcode_anywhere_uk.rb +42 -0
  83. data/lib/geocoder/results/smarty_streets.rb +106 -0
  84. data/lib/geocoder/results/telize.rb +45 -0
  85. data/lib/geocoder/results/test.rb +20 -3
  86. data/lib/geocoder/results/yandex.rb +18 -6
  87. data/lib/geocoder/sql.rb +16 -15
  88. data/lib/geocoder/stores/active_record.rb +51 -18
  89. data/lib/geocoder/stores/base.rb +8 -12
  90. data/lib/geocoder/stores/mongo_base.rb +0 -31
  91. data/lib/geocoder/version.rb +1 -1
  92. data/lib/geocoder.rb +6 -13
  93. data/lib/maxmind_database.rb +109 -0
  94. data/lib/tasks/geocoder.rake +14 -3
  95. data/lib/tasks/maxmind.rake +73 -0
  96. metadata +59 -85
  97. data/.gitignore +0 -5
  98. data/.travis.yml +0 -27
  99. data/Rakefile +0 -25
  100. data/gemfiles/Gemfile.mongoid-2.4.x +0 -15
  101. data/lib/geocoder/lookups/yahoo.rb +0 -86
  102. data/lib/geocoder/results/yahoo.rb +0 -55
  103. data/lib/oauth_util.rb +0 -112
  104. data/test/active_record_test.rb +0 -15
  105. data/test/cache_test.rb +0 -35
  106. data/test/calculations_test.rb +0 -211
  107. data/test/configuration_test.rb +0 -78
  108. data/test/custom_block_test.rb +0 -32
  109. data/test/error_handling_test.rb +0 -43
  110. data/test/fixtures/baidu_invalid_key +0 -1
  111. data/test/fixtures/baidu_no_results +0 -1
  112. data/test/fixtures/baidu_reverse +0 -1
  113. data/test/fixtures/baidu_shanghai_pearl_tower +0 -12
  114. data/test/fixtures/bing_invalid_key +0 -1
  115. data/test/fixtures/bing_madison_square_garden +0 -40
  116. data/test/fixtures/bing_no_results +0 -16
  117. data/test/fixtures/bing_reverse +0 -42
  118. data/test/fixtures/esri_madison_square_garden +0 -59
  119. data/test/fixtures/esri_no_results +0 -8
  120. data/test/fixtures/esri_reverse +0 -21
  121. data/test/fixtures/freegeoip_74_200_247_59 +0 -12
  122. data/test/fixtures/freegeoip_no_results +0 -1
  123. data/test/fixtures/geocoder_ca_madison_square_garden +0 -1
  124. data/test/fixtures/geocoder_ca_no_results +0 -1
  125. data/test/fixtures/geocoder_ca_reverse +0 -34
  126. data/test/fixtures/geocoder_us_madison_square_garden +0 -1
  127. data/test/fixtures/geocoder_us_no_results +0 -1
  128. data/test/fixtures/google_garbage +0 -456
  129. data/test/fixtures/google_madison_square_garden +0 -57
  130. data/test/fixtures/google_no_city_data +0 -44
  131. data/test/fixtures/google_no_locality +0 -51
  132. data/test/fixtures/google_no_results +0 -4
  133. data/test/fixtures/google_over_limit +0 -4
  134. data/test/fixtures/mapquest_error +0 -16
  135. data/test/fixtures/mapquest_invalid_api_key +0 -16
  136. data/test/fixtures/mapquest_invalid_request +0 -16
  137. data/test/fixtures/mapquest_madison_square_garden +0 -52
  138. data/test/fixtures/mapquest_no_results +0 -16
  139. data/test/fixtures/maxmind_24_24_24_21 +0 -1
  140. data/test/fixtures/maxmind_24_24_24_22 +0 -1
  141. data/test/fixtures/maxmind_24_24_24_23 +0 -1
  142. data/test/fixtures/maxmind_24_24_24_24 +0 -1
  143. data/test/fixtures/maxmind_74_200_247_59 +0 -1
  144. data/test/fixtures/maxmind_invalid_key +0 -1
  145. data/test/fixtures/maxmind_no_results +0 -1
  146. data/test/fixtures/nominatim_madison_square_garden +0 -150
  147. data/test/fixtures/nominatim_no_results +0 -1
  148. data/test/fixtures/ovi_madison_square_garden +0 -72
  149. data/test/fixtures/ovi_no_results +0 -8
  150. data/test/fixtures/yahoo_error +0 -1
  151. data/test/fixtures/yahoo_invalid_key +0 -2
  152. data/test/fixtures/yahoo_madison_square_garden +0 -52
  153. data/test/fixtures/yahoo_no_results +0 -10
  154. data/test/fixtures/yahoo_over_limit +0 -2
  155. data/test/fixtures/yandex_invalid_key +0 -1
  156. data/test/fixtures/yandex_kremlin +0 -48
  157. data/test/fixtures/yandex_no_city_and_town +0 -112
  158. data/test/fixtures/yandex_no_results +0 -16
  159. data/test/geocoder_test.rb +0 -59
  160. data/test/https_test.rb +0 -16
  161. data/test/integration/smoke_test.rb +0 -26
  162. data/test/lookup_test.rb +0 -117
  163. data/test/method_aliases_test.rb +0 -25
  164. data/test/mongoid_test.rb +0 -46
  165. data/test/mongoid_test_helper.rb +0 -43
  166. data/test/near_test.rb +0 -61
  167. data/test/oauth_util_test.rb +0 -30
  168. data/test/proxy_test.rb +0 -36
  169. data/test/query_test.rb +0 -52
  170. data/test/request_test.rb +0 -29
  171. data/test/result_test.rb +0 -42
  172. data/test/services_test.rb +0 -393
  173. data/test/test_helper.rb +0 -289
  174. data/test/test_mode_test.rb +0 -59
data/README.md CHANGED
@@ -1,18 +1,26 @@
1
1
  Geocoder
2
2
  ========
3
3
 
4
- Geocoder is a complete geocoding solution for Ruby. With Rails it adds geocoding (by street or IP address), reverse geocoding (find street address based on given coordinates), and distance queries. It's as simple as calling `geocode` on your objects, and then using a scope like `Venue.near("Billings, MT")`.
4
+ Geocoder is a complete geocoding solution for Ruby. With Rails it adds geocoding (by street or IP address), reverse geocoding (finding street address based on given coordinates), and distance queries. It's as simple as calling `geocode` on your objects, and then using a scope like `Venue.near("Billings, MT")`.
5
+
6
+ _Please note that this README is for the current `HEAD` and may document features not present in the latest gem release. For this reason, you may want to instead view the README for your particular version._
5
7
 
6
8
 
7
9
  Compatibility
8
10
  -------------
9
11
 
10
- * Supports multiple Ruby versions: Ruby 1.8.7, 1.9.2, 1.9.3, 2.0.0, and JRuby.
12
+ * Supports multiple Ruby versions: Ruby 1.9.3, 2.x, JRuby, and Rubinius.
11
13
  * Supports multiple databases: MySQL, PostgreSQL, SQLite, and MongoDB (1.7.0 and higher).
12
- * Supports Rails 3 and 4. If you need to use it with Rails 2 please see the `rails2` branch (no longer maintained, limited feature set).
14
+ * Supports Rails 3, 4, and 5. If you need to use it with Rails 2 please see the `rails2` branch (no longer maintained, limited feature set).
13
15
  * Works very well outside of Rails, you just need to install either the `json` (for MRI) or `json_pure` (for JRuby) gem.
14
16
 
15
17
 
18
+ Rails 4.1 Note
19
+ --------------
20
+
21
+ Due to [a change in ActiveRecord's `count` method](https://github.com/rails/rails/pull/10710) you will need to use `count(:all)` to explicitly count all columns ("*") when using a `near` scope. Using `near` and calling `count` with no argument will cause exceptions in many cases.
22
+
23
+
16
24
  Installation
17
25
  ------------
18
26
 
@@ -22,7 +30,7 @@ Install Geocoder like any other Ruby gem:
22
30
 
23
31
  Or, if you're using Rails/Bundler, add this to your Gemfile:
24
32
 
25
- gem "geocoder"
33
+ gem 'geocoder'
26
34
 
27
35
  and run at the command prompt:
28
36
 
@@ -39,7 +47,7 @@ Your model must have two attributes (database columns) for storing latitude and
39
47
  rails generate migration AddLatitudeAndLongitudeToModel latitude:float longitude:float
40
48
  rake db:migrate
41
49
 
42
- For reverse geocoding your model must provide a method that returns an address. This can be a single attribute, but it can also be a method that returns a string assembled from different attributes (eg: `city`, `state`, and `country`).
50
+ For geocoding your model must provide a method that returns an address. This can be a single attribute, but it can also be a method that returns a string assembled from different attributes (eg: `city`, `state`, and `country`).
43
51
 
44
52
  Next, your model must tell Geocoder which method returns your object's geocodable address:
45
53
 
@@ -98,20 +106,37 @@ If you have just added geocoding to an existing application with a lot of object
98
106
 
99
107
  rake geocode:all CLASS=YourModel
100
108
 
101
- Geocoder will print warnings if you exceed the rate limit for your geocoding service. Some services — Google notably — enforce a per-second limit in addition to a per-day limit. To avoid exceeding the per-second limit, you can add a `sleep` option to the rake task, like so:
109
+ If you need reverse geocoding instead, call the task with REVERSE=true:
110
+
111
+ rake geocode:all CLASS=YourModel REVERSE=true
112
+
113
+ Geocoder will print warnings if you exceed the rate limit for your geocoding service. Some services — Google notably — enforce a per-second limit in addition to a per-day limit. To avoid exceeding the per-second limit, you can add a `SLEEP` option to pause between requests for a given amount of time. You can also load objects in batches to save memory, for example:
102
114
 
103
- rake geocode:all CLASS=YourModel sleep=0.25
115
+ rake geocode:all CLASS=YourModel SLEEP=0.25 BATCH=100
116
+
117
+ ### Avoiding Unnecessary API Requests
118
+
119
+ Geocoding only needs to be performed under certain conditions. To avoid unnecessary work (and quota usage) you will probably want to geocode an object only when:
120
+
121
+ * an address is present
122
+ * the address has been changed since last save (or it has never been saved)
123
+
124
+ The exact code will vary depending on the method you use for your geocodable string, but it would be something like this:
125
+
126
+ after_validation :geocode, if: ->(obj){ obj.address.present? and obj.address_changed? }
104
127
 
105
128
 
106
129
  Request Geocoding by IP Address
107
130
  -------------------------------
108
131
 
109
- Geocoder adds a `location` method to the standard `Rack::Request` object so you can easily look up the location of any HTTP request by IP address. For example, in a Rails controller or a Sinatra app:
132
+ Geocoder adds `location` and `safe_location` methods to the standard `Rack::Request` object so you can easily look up the location of any HTTP request by IP address. For example, in a Rails controller or a Sinatra app:
110
133
 
111
134
  # returns Geocoder::Result object
112
135
  result = request.location
113
136
 
114
- Note that this will usually return `nil` in your test and development environments because things like "localhost" and "0.0.0.0" are not an Internet IP addresses.
137
+ **The `location` method is vulnerable to trivial IP address spoofing via HTTP headers.** If that's a problem for your application, use `safe_location` instead, but be aware that `safe_location` will *not* try to trace a request's originating IP through proxy headers; you will instead get the location of the last proxy the request passed through, if any (excepting any proxies you have explicitly whitelisted in your Rack config).
138
+
139
+ Note that these methods will usually return `nil` in your test and development environments because things like "localhost" and "0.0.0.0" are not an Internet IP addresses.
115
140
 
116
141
  See _Advanced Geocoding_ below for more information about `Geocoder::Result` objects.
117
142
 
@@ -119,15 +144,25 @@ See _Advanced Geocoding_ below for more information about `Geocoder::Result` obj
119
144
  Location-Aware Database Queries
120
145
  -------------------------------
121
146
 
147
+ ### For Mongo-backed models:
148
+
149
+ Please use MongoDB's [geospatial query language](https://docs.mongodb.org/manual/reference/command/geoNear/). Mongoid also provides [a DSL](http://mongoid.github.io/en/mongoid/docs/querying.html#geo_near) for doing near queries.
150
+
151
+ ### For ActiveRecord models:
152
+
122
153
  To find objects by location, use the following scopes:
123
154
 
124
155
  Venue.near('Omaha, NE, US', 20) # venues within 20 miles of Omaha
125
- Venue.near([40.71, 100.23], 20) # venues within 20 miles of a point
126
- Venue.near([40.71, 100.23], 20, :units => :km)
156
+ Venue.near([40.71, -100.23], 20) # venues within 20 miles of a point
157
+ Venue.near([40.71, -100.23], 20, :units => :km)
127
158
  # venues within 20 kilometres of a point
128
159
  Venue.geocoded # venues with coordinates
129
160
  Venue.not_geocoded # venues without coordinates
130
161
 
162
+ by default, objects are ordered by distance. To remove the ORDER BY clause use the following:
163
+
164
+ Venue.near('Omaha', 20, :order => false)
165
+
131
166
  With geocoded objects you can do things like this:
132
167
 
133
168
  if obj.geocoded?
@@ -142,9 +177,9 @@ Some utility methods are also available:
142
177
  Geocoder.coordinates("25 Main St, Cooperstown, NY")
143
178
  => [42.700149, -74.922767]
144
179
 
145
- # distance (in miles) between Eiffel Tower and Empire State Building
180
+ # distance between Eiffel Tower and Empire State Building
146
181
  Geocoder::Calculations.distance_between([47.858205,2.294359], [40.748433,-73.985655])
147
- => 3619.77359999382
182
+ => 3619.77359999382 # in configured units (default miles)
148
183
 
149
184
  # find the geographic center (aka center of gravity) of objects or points
150
185
  Geocoder::Calculations.geographic_center([city1, city2, [40.22,-73.99], city4])
@@ -214,6 +249,24 @@ For reverse geocoding you can also specify an alternate name attribute where the
214
249
  reverse_geocoded_by :latitude, :longitude, :address => :location # ActiveRecord
215
250
  reverse_geocoded_by :coordinates, :address => :loc # MongoDB
216
251
 
252
+ You can also configure a specific lookup for your model which will override the globally-configured lookup, for example:
253
+
254
+ geocoded_by :address, :lookup => :yandex
255
+
256
+ You can also specify a proc if you want to choose a lookup based on a specific property of an object, for example you can use specialized lookups for different regions:
257
+
258
+ geocoded_by :address, :lookup => lambda{ |obj| obj.geocoder_lookup }
259
+
260
+ def geocoder_lookup
261
+ if country_code == "RU"
262
+ :yandex
263
+ elsif country_code == "CN"
264
+ :baidu
265
+ else
266
+ :google
267
+ end
268
+ end
269
+
217
270
 
218
271
  Advanced Querying
219
272
  -----------------
@@ -227,6 +280,15 @@ When querying for objects (if you're using ActiveRecord) you can also look withi
227
280
 
228
281
  This can also dramatically improve query performance, especially when used in conjunction with indexes on the latitude/longitude columns. Note, however, that returned results do not include `distance` and `bearing` attributes. Note that `#near` performs both bounding box and radius queries for speed.
229
282
 
283
+ You can also specify a minimum radius (if you're using ActiveRecord and not Sqlite) to constrain the
284
+ lower bound (ie. think of a donut, or ring) by using the `:min_radius` option:
285
+
286
+ box = Geocoder::Calculations.bounding_box(center_point, distance, :min_radius => 10.5)
287
+
288
+ With ActiveRecord, you can specify alternate latitude and longitude column names for a geocoded model (useful if you store multiple sets of coordinates for each object):
289
+
290
+ Venue.near("Paris", 50, latitude: :secondary_latitude, longitude: :secondary_longitude)
291
+
230
292
 
231
293
  Advanced Geocoding
232
294
  ------------------
@@ -246,7 +308,7 @@ Every `Geocoder::Result` object, `result`, provides the following data:
246
308
 
247
309
  * `result.latitude` - float
248
310
  * `result.longitude` - float
249
- * `result.coordinates` - array of the above two
311
+ * `result.coordinates` - array of the above two in the form of `[lat,lon]`
250
312
  * `result.address` - string
251
313
  * `result.city` - string
252
314
  * `result.state` - string
@@ -255,13 +317,19 @@ Every `Geocoder::Result` object, `result`, provides the following data:
255
317
  * `result.country` - string
256
318
  * `result.country_code` - string
257
319
 
258
- If you're familiar with the results returned by the geocoding service you're using you can access even more data, but you'll need to be familiar with the particular `Geocoder::Result` object you're using and the structure of your geocoding service's responses. (See below for links to geocoding service documentation.)
320
+ If you're familiar with the results returned by the geocoding service you're using you can access even more data (call the `#data` method of any Geocoder::Result object to get the full parsed response), but you'll need to be familiar with the particular `Geocoder::Result` object you're using and the structure of your geocoding service's responses. (See below for links to geocoding service documentation.)
259
321
 
260
322
 
261
- Geocoding Services
262
- ------------------
323
+ Geocoding Service ("Lookup") Configuration
324
+ ------------------------------------------
325
+
326
+ Geocoder supports a variety of street and IP address geocoding services. The default lookups are `:google` for street addresses and `:freegeoip` for IP addresses. Please see the listing and comparison below for details on specific geocoding services (not all settings are supported by all services).
263
327
 
264
- By default Geocoder uses Google's geocoding API to fetch coordinates and street addresses (FreeGeoIP is the default for IP address info). However there are several other APIs supported, as well as a variety of settings. Please see the listing and comparison below for details on specific geocoding services (not all settings are supported by all services). Some common configuration options are:
328
+ To create a Rails initializer with an example configuration:
329
+
330
+ rails generate geocoder:config
331
+
332
+ Some common configuration options are:
265
333
 
266
334
  # config/initializers/geocoder.rb
267
335
  Geocoder.configure(
@@ -269,6 +337,9 @@ By default Geocoder uses Google's geocoding API to fetch coordinates and street
269
337
  # geocoding service (see below for supported options):
270
338
  :lookup => :yandex,
271
339
 
340
+ # IP address geocoding service (see below for supported options):
341
+ :ip_lookup => :maxmind,
342
+
272
343
  # to use an API key:
273
344
  :api_key => "...",
274
345
 
@@ -294,44 +365,80 @@ Please see the [source code for each lookup](https://github.com/alexreisner/geoc
294
365
  # with Nominatim:
295
366
  Geocoder.search("Paris", :params => {:countrycodes => "gb,de,fr,es,us"})
296
367
 
368
+ Or, to search within a particular region with Google:
369
+
370
+ Geocoder.search("...", :params => {:region => "..."})
371
+
372
+ You can also configure multiple geocoding services at once, like this:
373
+
374
+ Geocoder.configure(
375
+
376
+ :timeout => 2,
377
+ :cache => Redis.new,
378
+
379
+ :yandex => {
380
+ :api_key => "...",
381
+ :timeout => 5
382
+ },
297
383
 
298
- ### Listing and Comparison
384
+ :baidu => {
385
+ :api_key => "..."
386
+ },
387
+
388
+ :maxmind => {
389
+ :api_key => "...",
390
+ :service => :omni
391
+ }
392
+
393
+ )
394
+
395
+ The above combines global and service-specific options and could be useful if you specify different geocoding services for different models or under different conditions. Lookup-specific settings override global settings so, for example, in the above the timeout for all lookups would be 2 seconds, except for Yandex which would be 5.
396
+
397
+
398
+ ### Street Address Services
299
399
 
300
400
  The following is a comparison of the supported geocoding APIs. The "Limitations" listed for each are a very brief and incomplete summary of some special limitations beyond basic data source attribution. Please read the official Terms of Service for a service before using it.
301
401
 
302
- #### Google (`:google`, `:google_premier`)
402
+ #### Google (`:google`)
303
403
 
304
- * **API key**: required for Premier (do NOT use a key for the free version)
305
- * **Key signup**: https://developers.google.com/maps/documentation/business/
306
- * **Quota**: 2,500 requests/day, 100,000 with Google Maps API Premier
404
+ * **API key**: optional, but quota is higher if key is used (use of key requires HTTPS so be sure to set: `:use_https => true` in `Geocoder.configure`)
405
+ * **Key signup**: https://console.developers.google.com//flows/enableapi?apiid=geocoding_backend&keyType=SERVER_SIDE
406
+ * **Quota**: 2,500 requests/24 hrs, 5 requests/second
307
407
  * **Region**: world
308
- * **SSL support**: yes
309
- * **Languages**: ar, eu, bg, bn, ca, cs, da, de, el, en, en-AU, en-GB, es, eu, fa, fi, fil, fr, gl, gu, hi, hr, hu, id, it, iw, ja, kn, ko, lt, lv, ml, mr, nl, no, pl, pt, pt-BR, pt-PT, ro, ru, sk, sl, sr, sv, tl, ta, te, th, tr, uk, vi, zh-CN, zh-TW (see http://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1)
408
+ * **SSL support**: yes (required if key is used)
409
+ * **Languages**: see https://developers.google.com/maps/faq#languagesupport
310
410
  * **Extra options**: `:bounds` - pass SW and NE coordinates as an array of two arrays to bias results towards a viewport
311
- * **Documentation**: http://code.google.com/apis/maps/documentation/geocoding/#JSON
411
+ * **Documentation**: https://developers.google.com/maps/documentation/geocoding/intro
312
412
  * **Terms of Service**: http://code.google.com/apis/maps/terms.html#section_10_12
313
413
  * **Limitations**: "You must not use or display the Content without a corresponding Google map, unless you are explicitly permitted to do so in the Maps APIs Documentation, or through written permission from Google." "You must not pre-fetch, cache, or store any Content, except that you may store: (i) limited amounts of Content for the purpose of improving the performance of your Maps API Implementation..."
314
- * **Notes**: To use Google Premier set `Geocoder.configure(:lookup => :google_premier, :api_key => [key, client, channel])`.
315
414
 
316
- #### Yahoo BOSS (`:yahoo`)
415
+ #### Google Maps API for Work (`:google_premier`)
416
+
417
+ Similar to `:google`, with the following differences:
418
+
419
+ * **API key**: required, plus client and channel (set `Geocoder.configure(:lookup => :google_premier, :api_key => [key, client, channel])`)
420
+ * **Key signup**: https://developers.google.com/maps/documentation/business/
421
+ * **Quota**: 100,000 requests/24 hrs, 10 requests/second
422
+
423
+ #### Google Places Details (`:google_places_details`)
317
424
 
318
- Yahoo BOSS is **not a free service**. As of November 17, 2012 Yahoo no longer offers a free geocoding API.
425
+ The [Google Places Details API](https://developers.google.com/places/documentation/details) is not, strictly speaking, a geocoding service. It accepts a Google `place_id` and returns address information, ratings and reviews. A `place_id` can be obtained from the Google Places Autocomplete API and should be passed to Geocoder as the first search argument: `Geocoder.search("ChIJhRwB-yFawokR5Phil-QQ3zM", :lookup => :google_places_details)`.
319
426
 
320
- * **API key**: requires OAuth consumer key and secret (set `Geocoder.configure(:api_key => [key, secret])`)
321
- * **Key signup**: http://developer.yahoo.com/boss/geo/
322
- * **Quota**: unlimited, but subject to usage fees
427
+ * **API key**: required
428
+ * **Key signup**: https://code.google.com/apis/console/
429
+ * **Quota**: 1,000 request/day, 100,000 after credit card authentication
323
430
  * **Region**: world
324
- * **SSL support**: no
325
- * **Languages**: en, fr, de, it, es, pt, nl, zh, ja, ko
326
- * **Documentation**: http://developer.yahoo.com/boss/geo/docs/index.html
327
- * **Terms of Service**: http://info.yahoo.com/legal/us/yahoo/boss/tou/?pir=ucJPcJ1ibUn.h.d.lVmlcbcEkoHjwJ_PvxG9SLK9VIbIQAw1XFrnDqY-
328
- * **Limitations**: No mass downloads, no commercial map production based on the data, no storage of data except for caching.
431
+ * **SSL support**: yes
432
+ * **Languages**: ar, eu, bg, bn, ca, cs, da, de, el, en, en-AU, en-GB, es, eu, fa, fi, fil, fr, gl, gu, hi, hr, hu, id, it, iw, ja, kn, ko, lt, lv, ml, mr, nl, no, pl, pt, pt-BR, pt-PT, ro, ru, sk, sl, sr, sv, tl, ta, te, th, tr, uk, vi, zh-CN, zh-TW (see http://spreadsheets.google.com/pub?key=p9pdwsai2hDMsLkXsoM05KQ&gid=1)
433
+ * **Documentation**: https://developers.google.com/places/documentation/details
434
+ * **Terms of Service**: https://developers.google.com/places/policies
435
+ * **Limitations**: "If your application displays Places API data on a page or view that does not also display a Google Map, you must show a "Powered by Google" logo with that data."
329
436
 
330
437
  #### Bing (`:bing`)
331
438
 
332
- * **API key**: required
333
- * **Key signup**: http://www.bingmapsportal.com
334
- * **Quota**: 50,000 requests/24 hrs
439
+ * **API key**: required (set `Geocoder.configure(:lookup => :bing, :api_key => key)`)
440
+ * **Key signup**: https://www.microsoft.com/maps/create-a-bing-maps-key.aspx
441
+ * **Quota**: 50,0000 requests/day (Windows app), 125,000 requests/year (non-Windows app)
335
442
  * **Region**: world
336
443
  * **SSL support**: no
337
444
  * **Languages**: ?
@@ -348,14 +455,25 @@ Yahoo BOSS is **not a free service**. As of November 17, 2012 Yahoo no longer of
348
455
  * **Languages**: ?
349
456
  * **Documentation**: http://wiki.openstreetmap.org/wiki/Nominatim
350
457
  * **Terms of Service**: http://wiki.openstreetmap.org/wiki/Nominatim_usage_policy
351
- * **Limitations**: Please limit request rate to 1 per second and include your contact information in User-Agent headers (eg: `Geocoder.configure(:http_headers => { "User-Agent" => "your contact info" })`). Data licensed under CC-BY-SA (you must provide attribution).
458
+ * **Limitations**: Please limit request rate to 1 per second and include your contact information in User-Agent headers (eg: `Geocoder.configure(:http_headers => { "User-Agent" => "your contact info" })`). [Data licensed under Open Database License (ODbL) (you must provide attribution).](http://www.openstreetmap.org/copyright)
459
+
460
+ #### OpenCageData (`:opencagedata`)
461
+
462
+ * **API key**: required
463
+ * **Key signup**: http://geocoder.opencagedata.com
464
+ * **Quota**: 2500 requests / day, then ability to purchase more (free during beta)
465
+ * **Region**: world
466
+ * **SSL support**: yes
467
+ * **Languages**: worldwide
468
+ * **Documentation**: http://geocoder.opencagedata.com/api.html
469
+ * **Limitations**: [Data licensed under Open Database License (ODbL) (you must provide attribution).](http://www.openstreetmap.org/copyright)
352
470
 
353
471
  #### Yandex (`:yandex`)
354
472
 
355
- * **API key**: none
473
+ * **API key**: optional, but without it lookup is territorially limited
356
474
  * **Quota**: 25000 requests / day
357
- * **Region**: world
358
- * **SSL support**: no
475
+ * **Region**: world with API key. Otherwise restricted to Russia, Ukraine, Belarus, Kazakhstan, Georgia, Abkhazia, South Ossetia, Armenia, Azerbaijan, Moldova, Turkmenistan, Tajikistan, Uzbekistan, Kyrgyzstan and Turkey
476
+ * **SSL support**: HTTPS only
359
477
  * **Languages**: Russian, Belarusian, Ukrainian, English, Turkish (only for maps of Turkey)
360
478
  * **Documentation**: http://api.yandex.com.tr/maps/doc/intro/concepts/intro.xml
361
479
  * **Terms of Service**: http://api.yandex.com.tr/maps/doc/intro/concepts/intro.xml#rules
@@ -384,21 +502,34 @@ Yahoo BOSS is **not a free service**. As of November 17, 2012 Yahoo no longer of
384
502
  * **Terms of Service**: http://geocoder.us/terms.shtml
385
503
  * **Limitations**: ?
386
504
 
505
+ #### Mapbox (`:mapbox`)
506
+
507
+ * **API key**: required
508
+ * **Dataset**: Uses `mapbox.places` dataset by default. Specific the `mapbox.places-permanent` dataset by setting: `Geocoder.configure(:mapbox => {:dataset => "mapbox.places-permanent"})`
509
+ * **Key signup**: https://www.mapbox.com/pricing/
510
+ * **Quota**: depends on plan
511
+ * **Region**: complete coverage of US and Canada, partial coverage elsewhere (see for details: https://www.mapbox.com/developers/api/geocoding/#coverage)
512
+ * **SSL support**: yes
513
+ * **Languages**: English
514
+ * **Documentation**: https://www.mapbox.com/developers/api/geocoding/
515
+ * **Terms of Service**: https://www.mapbox.com/tos/
516
+ * **Limitations**: For `mapbox.places` dataset, must be displayed on a Mapbox map; Cache results for up to 30 days. For `mapbox.places-permanent` dataset, depends on plan.
517
+ * **Notes**: Currently in public beta.
518
+
387
519
  #### Mapquest (`:mapquest`)
388
520
 
389
521
  * **API key**: required
390
- * **Key signup**: http://developer.mapquest.com/web/products/open
522
+ * **Key signup**: https://developer.mapquest.com/plans
391
523
  * **Quota**: ?
392
- * **HTTP Headers**: in order to use the licensed API you can configure the http_headers to include a referer as so:
524
+ * **HTTP Headers**: when using the licensed API you can specify a referer like so:
393
525
  `Geocoder.configure(:http_headers => { "Referer" => "http://foo.com" })`
394
- You can also allow a blank referer from the API management console via mapquest but it is potentially a security risk that someone else could use your API key from another domain.
395
526
  * **Region**: world
396
527
  * **SSL support**: no
397
528
  * **Languages**: English
398
529
  * **Documentation**: http://www.mapquestapi.com/geocoding/
399
530
  * **Terms of Service**: http://info.mapquest.com/terms-of-use/
400
531
  * **Limitations**: ?
401
- * **Notes**: You can specify the licensed API by setting: `Geocoder.configure(:mapquest => {:licensed => true})` (defaults to free "open" version)
532
+ * **Notes**: You can use the open (non-licensed) API by setting: `Geocoder.configure(:mapquest => {:open => true})` (defaults to licensed version)
402
533
 
403
534
  #### Ovi/Nokia (`:ovi`)
404
535
 
@@ -411,17 +542,52 @@ Yahoo BOSS is **not a free service**. As of November 17, 2012 Yahoo no longer of
411
542
  * **Terms of Service**: http://www.developer.nokia.com/Develop/Maps/TC.html
412
543
  * **Limitations**: ?
413
544
 
545
+ #### Here/Nokia (`:here`)
546
+
547
+ * **API key**: required (set `Geocoder.configure(:api_key => [app_id, app_code])`)
548
+ * **Quota**: Depending on the API key
549
+ * **Region**: world
550
+ * **SSL support**: yes
551
+ * **Languages**: The preferred language of address elements in the result. Language code must be provided according to RFC 4647 standard.
552
+ * **Documentation**: http://developer.here.com/rest-apis/documentation/geocoder
553
+ * **Terms of Service**: http://developer.here.com/faqs#l&t
554
+ * **Limitations**: ?
555
+
414
556
  #### ESRI (`:esri`)
415
557
 
416
- * **API key**: none
558
+ * **API key**: optional (set `Geocoder.configure(:esri => {:api_key => ["client_id", "client_secret"]})`)
417
559
  * **Quota**: Required for some scenarios (see Terms of Service)
418
560
  * **Region**: world
419
561
  * **SSL support**: yes
420
562
  * **Languages**: English
421
- * **Documentation**: http://resources.arcgis.com/en/help/arcgis-online-geocoding-rest-api/
422
- * **Terms of Service**: http://www.esri.com/software/arcgis/arcgisonline/services/geoservices
563
+ * **Documentation**: https://developers.arcgis.com/rest/geocode/api-reference/overview-world-geocoding-service.htm
564
+ * **Terms of Service**: http://www.esri.com/legal/software-license
565
+ * **Limitations**: Requires API key if results will be stored. Using API key will also remove rate limit.
566
+ * **Notes**: You can specify which projection you want to use by setting, for example: `Geocoder.configure(:esri => {:outSR => 102100})`. If you will store results, set the flag and provide API key: `Geocoder.configure(:esri => {:api_key => ["client_id", "client_secret"], :for_storage => true})`. If you want to, you can also supply an ESRI token directly: `Geocoder.configure(:esri => {:token => Geocoder::EsriToken.new('TOKEN', Time.now + 1.day})`
567
+
568
+ #### Mapzen (`:mapzen`)
569
+
570
+ * **API key**: required
571
+ * **Quota**: 6/sec, up to 30k per day, paid plan info at https://mapzen.com/documentation/search/api-keys-rate-limits/#rate-limits
572
+ * **Region**: world
573
+ * **SSL support**: yes
574
+ * **Languages**: en
575
+ * **Documentation**: https://mapzen.com/documentation/search/search/
576
+ * **Terms of Service**: http://mapzen.com/terms
423
577
  * **Limitations**: ?
424
- * **Notes**: You can specify which projection you want to use by setting, for example: `Geocoder.configure(:esri => {:outSR => 102100})`.
578
+ * **Notes**: Mapzen is the primary author of Pelias and offers Pelias-as-a-service in free and paid versions https://mapzen.com/pelias.
579
+
580
+ #### Pelias (`:pelias`)
581
+
582
+ * **API key**: required
583
+ * **Quota**: none (self-hosted service)
584
+ * **Region**: world
585
+ * **SSL support**: yes
586
+ * **Languages**: en
587
+ * **Documentation**: https://mapzen.com/documentation/search/search/
588
+ * **Terms of Service**: http://mapzen.com/terms
589
+ * **Limitations**: See terms
590
+ * **Notes**: Configure your self-hosted pelias with the `endpoint` option: `Geocoder.configure(:lookup => :pelias, :api_key => 'your_api_key', :pelias => {:endpoint => 'self.hosted/pelias'})`. Defaults to `localhost`.
425
591
 
426
592
  #### Data Science Toolkit (`:dstk`)
427
593
 
@@ -437,6 +603,91 @@ Data Science Toolkit provides an API whose reponse format is like Google's but w
437
603
  * **Limitations**: No reverse geocoding.
438
604
  * **Notes**: If you are hosting your own DSTK server you will need to configure the host name, eg: `Geocoder.configure(:lookup => :dstk, :host => "localhost:4567")`.
439
605
 
606
+ #### Baidu (`:baidu`)
607
+
608
+ * **API key**: required
609
+ * **Quota**: No quota limits for geocoding
610
+ * **Region**: China
611
+ * **SSL support**: no
612
+ * **Languages**: Chinese (Simplified)
613
+ * **Documentation**: http://developer.baidu.com/map/webservice-geocoding.htm
614
+ * **Terms of Service**: http://developer.baidu.com/map/law.htm
615
+ * **Limitations**: Only good for non-commercial use. For commercial usage please check http://developer.baidu.com/map/question.htm#qa0013
616
+ * **Notes**: To use Baidu set `Geocoder.configure(:lookup => :baidu, :api_key => "your_api_key")`.
617
+
618
+ #### Geocodio (`:geocodio`)
619
+
620
+ * **API key**: required
621
+ * **Quota**: 2,500 free requests/day then purchase $.001 for each, also has volume pricing and plans
622
+ * **Region**: US
623
+ * **SSL support**: yes
624
+ * **Languages**: en
625
+ * **Documentation**: http://geocod.io/docs
626
+ * **Terms of Service**: http://geocod.io/terms-of-use
627
+ * **Limitations**: No restrictions on use
628
+
629
+ #### SmartyStreets (`:smarty_streets`)
630
+
631
+ * **API key**: requires auth_id and auth_token (set `Geocoder.configure(:api_key => [id, token])`)
632
+ * **Quota**: 10,000 free, 250/month then purchase at sliding scale.
633
+ * **Region**: US
634
+ * **SSL support**: yes (required)
635
+ * **Languages**: en
636
+ * **Documentation**: http://smartystreets.com/kb/liveaddress-api/rest-endpoint
637
+ * **Terms of Service**: http://smartystreets.com/legal/terms-of-service
638
+ * **Limitations**: No reverse geocoding.
639
+
640
+
641
+ #### OKF Geocoder (`:okf`)
642
+
643
+ * **API key**: none
644
+ * **Quota**: none
645
+ * **Region**: FI
646
+ * **SSL support**: no
647
+ * **Languages**: fi
648
+ * **Documentation**: http://books.okf.fi/geocoder/_full/
649
+ * **Terms of Service**: http://www.itella.fi/liitteet/palvelutjatuotteet/yhteystietopalvelut/Postinumeropalvelut-Palvelukuvausjakayttoehdot.pdf
650
+ * **Limitations**: ?
651
+
652
+ #### Geoportail.lu (`:geoportail_lu`)
653
+
654
+ * **API key**: none
655
+ * **Quota**: none
656
+ * **Region**: LU
657
+ * **SSL support**: yes
658
+ * **Languages**: en
659
+ * **Documentation**: http://wiki.geoportail.lu/doku.php?id=en:api
660
+ * **Terms of Service**: http://wiki.geoportail.lu/doku.php?id=en:mcg_1
661
+ * **Limitations**: ?
662
+
663
+ #### PostcodeAnywhere Uk (`:postcode_anywhere_uk`)
664
+
665
+ This uses the PostcodeAnywhere UK Geocode service, this will geocode any string from UK postcode, placename, point of interest or location.
666
+
667
+ * **API key**: required
668
+ * **Quota**: Dependant on service plan?
669
+ * **Region**: UK
670
+ * **SSL support**: yes
671
+ * **Languages**: English
672
+ * **Documentation**: [http://www.postcodeanywhere.co.uk/Support/WebService/Geocoding/UK/Geocode/2/](http://www.postcodeanywhere.co.uk/Support/WebService/Geocoding/UK/Geocode/2/)
673
+ * **Terms of Service**: ?
674
+ * **Limitations**: ?
675
+ * **Notes**: To use PostcodeAnywhere you must include an API key: `Geocoder.configure(:lookup => :postcode_anywhere_uk, :api_key => 'your_api_key')`.
676
+
677
+ #### LatLon.io (`:latlon`)
678
+
679
+ * **API key**: required
680
+ * **Quota**: Depends on the user's plan (free and paid plans available)
681
+ * **Region**: US
682
+ * **SSL support**: yes
683
+ * **Languages**: en
684
+ * **Documentation**: https://latlon.io/documentation
685
+ * **Terms of Service**: ?
686
+ * **Limitations**: No restrictions on use
687
+
688
+
689
+ ### IP Address Services
690
+
440
691
  #### FreeGeoIP (`:freegeoip`)
441
692
 
442
693
  * **API key**: none
@@ -447,20 +698,45 @@ Data Science Toolkit provides an API whose reponse format is like Google's but w
447
698
  * **Documentation**: http://github.com/fiorix/freegeoip/blob/master/README.md
448
699
  * **Terms of Service**: ?
449
700
  * **Limitations**: ?
701
+ * **Notes**: If you are [running your own local instance of the FreeGeoIP service](https://github.com/fiorix/freegeoip) you can configure the host like this: `Geocoder.configure(freegeoip: {host: "..."})`.
702
+
703
+ #### Pointpin (`:pointpin`)
704
+
705
+ * **API key**: required
706
+ * **Quota**: 50,000/mo for €9 through 1m/mo for €49
707
+ * **Region**: world
708
+ * **SSL support**: yes
709
+ * **Languages**: English
710
+ * **Documentation**: https://pointp.in/docs/get-started
711
+ * **Terms of Service**: https://pointp.in/terms
712
+ * **Limitations**: ?
713
+ * **Notes**: To use Pointpin set `Geocoder.configure(:ip_lookup => :pointpin, :api_key => "your_pointpin_api_key")`.
450
714
 
451
- #### MaxMind Web Services (`:maxmind`)
715
+ #### Telize (`:telize`)
716
+
717
+ * **API key**: required
718
+ * **Quota**: 1,000/day for $7/mo through 100,000/day for $100/mo
719
+ * **Region**: world
720
+ * **SSL support**: yes
721
+ * **Languages**: English
722
+ * **Documentation**: https://market.mashape.com/fcambus/telize
723
+ * **Terms of Service**: ?
724
+ * **Limitations**: ?
725
+ * **Notes**: To use Telize set `Geocoder.configure(:ip_lookup => :telize, :api_key => "your_api_key")`.
726
+
727
+ #### MaxMind Legacy Web Services (`:maxmind`)
452
728
 
453
729
  * **API key**: required
454
730
  * **Quota**: Request Packs can be purchased
455
731
  * **Region**: world
456
732
  * **SSL support**: yes
457
733
  * **Languages**: English
458
- * **Documentation**: http://www.maxmind.com/app/web_services
734
+ * **Documentation**: http://dev.maxmind.com/geoip/legacy/web-services/
459
735
  * **Terms of Service**: ?
460
736
  * **Limitations**: ?
461
737
  * **Notes**: You must specify which MaxMind service you are using in your configuration. For example: `Geocoder.configure(:maxmind => {:service => :omni})`.
462
738
 
463
- #### Baidu (`:baidu`)
739
+ #### Baidu IP (`:baidu_ip`)
464
740
 
465
741
  * **API key**: required
466
742
  * **Quota**: No quota limits for geocoding
@@ -470,7 +746,104 @@ Data Science Toolkit provides an API whose reponse format is like Google's but w
470
746
  * **Documentation**: http://developer.baidu.com/map/webservice-geocoding.htm
471
747
  * **Terms of Service**: http://developer.baidu.com/map/law.htm
472
748
  * **Limitations**: Only good for non-commercial use. For commercial usage please check http://developer.baidu.com/map/question.htm#qa0013
473
- * **Notes**: To use Baidu set `Geocoder.configure(:lookup => :baidu, :api_key => "your_api_key")`.
749
+ * **Notes**: To use Baidu set `Geocoder.configure(:lookup => :baidu_ip, :api_key => "your_api_key")`.
750
+
751
+ #### MaxMind GeoIP2 Precision Web Services (`:maxmind_geoip2`)
752
+
753
+ * **API key**: required
754
+ * **Quota**: Request Packs can be purchased
755
+ * **Region**: world
756
+ * **SSL support**: yes
757
+ * **Languages**: English
758
+ * **Documentation**: http://dev.maxmind.com/geoip/geoip2/web-services/
759
+ * **Terms of Service**: ?
760
+ * **Limitations**: ?
761
+ * **Notes**: You must specify which MaxMind service you are using in your configuration, and also basic authentication. For example: `Geocoder.configure(:maxmind_geoip2 => {:service => :country, :basic_auth => {:user => '', :password => ''}})`.
762
+
763
+ #### IPInfo.io (`:ipinfo_io`)
764
+
765
+ * **API key**: optional - see http://ipinfo.io/pricing
766
+ * **Quota**: 1,000/day - more with api key
767
+ * **Region**: world
768
+ * **SSL support**: no (not without access key - see http://ipinfo.io/pricing)
769
+ * **Languages**: English
770
+ * **Documentation**: http://ipinfo.io/developers
771
+ * **Terms of Service**: http://ipinfo.io/developers
772
+
773
+ #### IP-API.com (`:ipapi_com`)
774
+
775
+ * **API key**: optional - see http://ip-api.com/docs/#usage_limits
776
+ * **Quota**: 150/minute - unlimited with api key
777
+ * **Region**: world
778
+ * **SSL support**: no (not without access key - see https://signup.ip-api.com/)
779
+ * **Languages**: English
780
+ * **Documentation**: http://ip-api.com/docs/
781
+ * **Terms of Service**: https://signup.ip-api.com/terms
782
+
783
+ ### IP Address Local Database Services
784
+
785
+ #### MaxMind Local (`:maxmind_local`) - EXPERIMENTAL
786
+
787
+ This lookup provides methods for geocoding IP addresses without making a call to a remote API (improves speed and availability). It works, but support is new and should not be considered production-ready. Please [report any bugs](https://github.com/alexreisner/geocoder/issues) you encounter.
788
+
789
+ * **API key**: none (requires the GeoLite City database which can be downloaded from [MaxMind](http://dev.maxmind.com/geoip/legacy/geolite/))
790
+ * **Quota**: none
791
+ * **Region**: world
792
+ * **SSL support**: N/A
793
+ * **Languages**: English
794
+ * **Documentation**: http://www.maxmind.com/en/city
795
+ * **Terms of Service**: ?
796
+ * **Limitations**: ?
797
+ * **Notes**: There are two supported formats for MaxMind local data: binary file, and CSV file imported into an SQL database. **You must download a database from MaxMind and set either the `:file` or `:package` configuration option for local lookups to work.**
798
+
799
+ **To use a binary file** you must add the *geoip* (or *jgeoip* for JRuby) gem to your Gemfile or have it installed in your system, and specify the path of the MaxMind database in your configuration. For example:
800
+
801
+ Geocoder.configure(ip_lookup: :maxmind_local, maxmind_local: {file: File.join('folder', 'GeoLiteCity.dat')})
802
+
803
+ **To use a CSV file** you must import it into an SQL database. The GeoLite *City* and *Country* packages are supported. Configure like so:
804
+
805
+ Geocoder.configure(ip_lookup: :maxmind_local, maxmind_local: {package: :city})
806
+
807
+ You can generate ActiveRecord migrations and download and import data via provided rake tasks:
808
+
809
+ # generate migration to create tables
810
+ rails generate geocoder:maxmind:geolite_city
811
+
812
+ # download, unpack, and import data
813
+ rake geocoder:maxmind:geolite:load PACKAGE=city
814
+
815
+ You can replace `city` with `country` in any of the above tasks, generators, and configurations.
816
+
817
+ #### GeoLite2 (`:geoip2`)
818
+
819
+ This lookup provides methods for geocoding IP addresses without making a call to a remote API (improves speed and availability). It works, but support is new and should not be considered production-ready. Please [report any bugs](https://github.com/alexreisner/geocoder/issues) you encounter.
820
+
821
+ * **API key**: none (requires a GeoIP2 or free GeoLite2 City or Country binary database which can be downloaded from [MaxMind](http://dev.maxmind.com/geoip/geoip2/))
822
+ * **Quota**: none
823
+ * **Region**: world
824
+ * **SSL support**: N/A
825
+ * **Languages**: English
826
+ * **Documentation**: http://www.maxmind.com/en/city
827
+ * **Terms of Service**: ?
828
+ * **Limitations**: ?
829
+ * **Notes**: **You must download a binary database file from MaxMind and set the `:file` configuration option.** The CSV format databases are not yet supported since they are still in alpha stage. Set the path to the database file in your configuration:
830
+
831
+ Geocoder.configure(
832
+ ip_lookup: :geoip2,
833
+ geoip2: {
834
+ file: File.join('folder', 'GeoLite2-City.mmdb')
835
+ }
836
+ )
837
+
838
+ You must add either the *[hive_geoip2](https://rubygems.org/gems/hive_geoip2)* gem (native extension that relies on libmaxminddb) or the *[maxminddb](http://rubygems.org/gems/maxminddb)* gem (pure Ruby implementation) to your Gemfile or have it installed in your system. The pure Ruby gem (maxminddb) will be used by default. To use `hive_geoip2`:
839
+
840
+ Geocoder.configure(
841
+ ip_lookup: :geoip2,
842
+ geoip2: {
843
+ lib: 'hive_geoip2',
844
+ file: File.join('folder', 'GeoLite2-City.mmdb')
845
+ }
846
+ )
474
847
 
475
848
  Caching
476
849
  -------
@@ -495,8 +868,12 @@ By default the prefix is `geocoder:`
495
868
 
496
869
  If you need to expire cached content:
497
870
 
498
- Geocoder.cache.expire("http://...") # expire cached result for a URL
499
- Geocoder.cache.expire(:all) # expire all cached results
871
+ Geocoder::Lookup.get(Geocoder.config[:lookup]).cache.expire(:all) # expire cached results for current Lookup
872
+ Geocoder::Lookup.get(:google).cache.expire("http://...") # expire cached result for a specific URL
873
+ Geocoder::Lookup.get(:google).cache.expire(:all) # expire cached results for Google Lookup
874
+ # expire all cached results for all Lookups.
875
+ # Be aware that this methods spawns a new Lookup object for each Service
876
+ Geocoder::Lookup.all_services.each{|service| Geocoder::Lookup.get(service).cache.expire(:all)}
500
877
 
501
878
  Do *not* include the prefix when passing a URL to be expired. Expiring `:all` will only expire keys with the configured prefix (won't kill every entry in your key/value store).
502
879
 
@@ -593,7 +970,7 @@ When writing tests for an app that uses Geocoder it may be useful to avoid netwo
593
970
  ]
594
971
  )
595
972
 
596
- Now, any time Geocoder looks up "New York, NY" its results array will contain one result with the above attributes. You can also set a default stub:
973
+ Now, any time Geocoder looks up "New York, NY" its results array will contain one result with the above attributes. You can also set a default stub, to be returned when no other stub is found for a given query:
597
974
 
598
975
  Geocoder.configure(:lookup => :test)
599
976
 
@@ -611,7 +988,9 @@ Now, any time Geocoder looks up "New York, NY" its results array will contain on
611
988
  ]
612
989
  )
613
990
 
614
- Any query that hasn't been explicitly stubbed will return that result.
991
+ Note:
992
+ Keys must be strings not symbols when calling `add_stub` or `set_default_stub`. For example `'latitude' =>` not `:latitude =>`.
993
+
615
994
 
616
995
  Command Line Interface
617
996
  ----------------------
@@ -705,9 +1084,9 @@ http://github.com/alexreisner/geocoder_test
705
1084
  Error Handling
706
1085
  --------------
707
1086
 
708
- By default Geocoder will rescue any exceptions raised by calls to a geocoding service and return an empty array (using warn() to inform you of the error). You can override this on a per-exception basis, and also have Geocoder raise its own exceptions for certain events (eg: API quota exceeded) by using the `:always_raise` option:
1087
+ By default Geocoder will rescue any exceptions raised by calls to a geocoding service and return an empty array. You can override this on a per-exception basis, and also have Geocoder raise its own exceptions for certain events (eg: API quota exceeded) by using the `:always_raise` option:
709
1088
 
710
- Geocoder.configure(:always_raise => [SocketError, TimeoutError])
1089
+ Geocoder.configure(:always_raise => [SocketError, Timeout::Error])
711
1090
 
712
1091
  You can also do this to raise all exceptions:
713
1092
 
@@ -716,13 +1095,14 @@ You can also do this to raise all exceptions:
716
1095
  The raise-able exceptions are:
717
1096
 
718
1097
  SocketError
719
- TimeoutError
1098
+ Timeout::Error
720
1099
  Geocoder::OverQueryLimitError
721
1100
  Geocoder::RequestDenied
722
1101
  Geocoder::InvalidRequest
723
1102
  Geocoder::InvalidApiKey
1103
+ Geocoder::ServiceUnavailable
724
1104
 
725
- Note that not all lookups support all exceptions.
1105
+ Note that only a few of the above exceptions are raised by any given lookup, so there's no guarantee if you configure Geocoder to raise `ServiceUnavailable` that it will actually be raised under those conditions (because most APIs don't return 503 when they should; you may get a `Timeout::Error` instead). Please see the source code for your particular lookup for details.
726
1106
 
727
1107
 
728
1108
  Troubleshooting
@@ -744,23 +1124,38 @@ A lot of debugging time can be saved by understanding how Geocoder works with Ac
744
1124
  * using the `pluck` method (selects only a single column)
745
1125
  * specifying another model through `includes` (selects columns from other tables)
746
1126
 
1127
+ ### Geocoding is Slow
1128
+
1129
+ With most lookups, addresses are translated into coordinates via an API that must be accessed through the Internet. These requests are subject to the same bandwidth constraints as every other HTTP request, and will vary in speed depending on network conditions. Furthermore, many of the services supported by Geocoder are free and thus very popular. Often they cannot keep up with demand and their response times become quite bad.
1130
+
1131
+ If your application requires quick geocoding responses you will probably need to pay for a non-free service, or--if you're doing IP address geocoding--use a lookup that doesn't require an external (network-accessed) service.
1132
+
1133
+ For IP address lookups in Rails applications, it is generally NOT a good idea to run `request.location` during a synchronous page load without understanding the speed/behavior of your configured lookup. If the lookup becomes slow, so will your website.
1134
+
1135
+ For the most part, the speed of geocoding requests has little to do with the Geocoder gem. Please take the time to learn about your configured lookup (links to documentation are provided above) before posting performance-related issues.
1136
+
747
1137
  ### Unexpected Responses from Geocoding Services
748
1138
 
749
- Take a look at the server's raw JSON response. You can do this by getting the request URL in an app console:
1139
+ Take a look at the server's raw response. You can do this by getting the request URL in an app console:
750
1140
 
751
1141
  Geocoder::Lookup.get(:google).query_url(Geocoder::Query.new("..."))
752
1142
 
753
1143
  Replace `:google` with the lookup you are using and replace `...` with the address you are trying to geocode. Then visit the returned URL in your web browser. Often the API will return an error message that helps you resolve the problem. If, after reading the raw response, you believe there is a problem with Geocoder, please post an issue and include both the URL and raw response body.
754
1144
 
1145
+ You can also fetch the response in the console:
1146
+
1147
+ Geocoder::Lookup.get(:google).send(:fetch_raw_data, Geocoder::Query.new("..."))
1148
+
755
1149
 
756
1150
  Reporting Issues
757
1151
  ----------------
758
1152
 
759
1153
  When reporting an issue, please list the version of Geocoder you are using and any relevant information about your application (Rails version, database type and version, etc). Also avoid vague language like "it doesn't work." Please describe as specifically as you can what behavior your are actually seeing (eg: an error message? a nil return value?).
760
1154
 
1155
+ Please DO NOT use GitHub issues to ask questions about how to use Geocoder. Sites like [StackOverflow](http://www.stackoverflow.com/) are a better forum for such discussions.
1156
+
761
1157
 
762
- Known Issue
763
- -----------
1158
+ ### Known Issue
764
1159
 
765
1160
  You cannot use the `near` scope with another scope that provides an `includes` option because the `SELECT` clause generated by `near` will overwrite it (or vice versa).
766
1161
 
@@ -781,16 +1176,18 @@ If anyone has a more elegant solution to this problem I am very interested in se
781
1176
  Contributing
782
1177
  ------------
783
1178
 
784
- Contributions are welcome via pull requests on Github. Please respect the following guidelines:
1179
+ Contributions are welcome via Github pull requests. If you are new to the project and looking for a way to get involved, try picking up an issue with a "beginner-task" label. Hints about what needs to be done are usually provided.
1180
+
1181
+ For all contributions, please respect the following guidelines:
785
1182
 
786
1183
  * Each pull request should implement ONE feature or bugfix. If you want to add or fix more than one thing, submit more than one pull request.
787
1184
  * Do not commit changes to files that are irrelevant to your feature or bugfix (eg: `.gitignore`).
788
1185
  * Do not add dependencies on other gems.
789
1186
  * Do not add unnecessary `require` statements which could cause LoadErrors on certain systems.
790
1187
  * Remember: Geocoder needs to run outside of Rails. Don't assume things like ActiveSupport are available.
791
- * Do not add to base configuration options; instead document required lookup-specific options in the README.
792
1188
  * Be willing to accept criticism and work on improving your code; Geocoder is used by thousands of developers and care must be taken not to introduce bugs.
793
1189
  * Be aware that the pull request review process is not immediate, and is generally proportional to the size of the pull request.
1190
+ * If your pull request is merged, please do not ask for an immediate release of the gem. There are many factors contributing to when releases occur (remember that they affect thousands of apps with Geocoder in their Gemfiles). If necessary, please install from the Github source until the next official release.
794
1191
 
795
1192
 
796
- Copyright (c) 2009-12 Alex Reisner, released under the MIT license
1193
+ Copyright (c) 2009-15 Alex Reisner, released under the MIT license