geocoder 1.4.3 → 1.5.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.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +43 -0
  3. data/README.md +364 -880
  4. data/examples/autoexpire_cache_redis.rb +3 -3
  5. data/lib/generators/geocoder/config/templates/initializer.rb +3 -2
  6. data/lib/generators/geocoder/maxmind/geolite_city_generator.rb +2 -0
  7. data/lib/generators/geocoder/maxmind/geolite_country_generator.rb +2 -0
  8. data/lib/generators/geocoder/maxmind/templates/migration/geolite_city.rb +1 -1
  9. data/lib/generators/geocoder/maxmind/templates/migration/geolite_country.rb +1 -1
  10. data/lib/generators/geocoder/migration_version.rb +15 -0
  11. data/lib/geocoder/cache.rb +6 -2
  12. data/lib/geocoder/cli.rb +2 -2
  13. data/lib/geocoder/configuration.rb +2 -2
  14. data/lib/geocoder/exceptions.rb +1 -1
  15. data/lib/geocoder/ip_address.rb +1 -1
  16. data/lib/geocoder/lookup.rb +9 -4
  17. data/lib/geocoder/lookups/amap.rb +63 -0
  18. data/lib/geocoder/lookups/baidu.rb +14 -10
  19. data/lib/geocoder/lookups/baidu_ip.rb +6 -35
  20. data/lib/geocoder/lookups/ban_data_gouv_fr.rb +4 -4
  21. data/lib/geocoder/lookups/base.rb +22 -4
  22. data/lib/geocoder/lookups/bing.rb +13 -12
  23. data/lib/geocoder/lookups/db_ip_com.rb +52 -0
  24. data/lib/geocoder/lookups/dstk.rb +4 -2
  25. data/lib/geocoder/lookups/esri.rb +1 -16
  26. data/lib/geocoder/lookups/freegeoip.rb +11 -2
  27. data/lib/geocoder/lookups/geocoder_ca.rb +4 -4
  28. data/lib/geocoder/lookups/geocoder_us.rb +17 -9
  29. data/lib/geocoder/lookups/geocodio.rb +5 -5
  30. data/lib/geocoder/lookups/geoportail_lu.rb +7 -7
  31. data/lib/geocoder/lookups/google.rb +13 -9
  32. data/lib/geocoder/lookups/google_places_details.rb +4 -4
  33. data/lib/geocoder/lookups/google_places_search.rb +4 -4
  34. data/lib/geocoder/lookups/google_premier.rb +11 -1
  35. data/lib/geocoder/lookups/here.rb +4 -4
  36. data/lib/geocoder/lookups/ip2location.rb +74 -0
  37. data/lib/geocoder/lookups/ipapi_com.rb +7 -12
  38. data/lib/geocoder/lookups/ipdata_co.rb +61 -0
  39. data/lib/geocoder/lookups/ipinfo_io.rb +10 -19
  40. data/lib/geocoder/lookups/ipstack.rb +63 -0
  41. data/lib/geocoder/lookups/latlon.rb +4 -4
  42. data/lib/geocoder/lookups/location_iq.rb +26 -8
  43. data/lib/geocoder/lookups/mapbox.rb +12 -6
  44. data/lib/geocoder/lookups/mapquest.rb +4 -5
  45. data/lib/geocoder/lookups/maxmind.rb +4 -4
  46. data/lib/geocoder/lookups/maxmind_geoip2.rb +4 -0
  47. data/lib/geocoder/lookups/nominatim.rb +17 -5
  48. data/lib/geocoder/lookups/opencagedata.rb +7 -6
  49. data/lib/geocoder/lookups/pelias.rb +6 -6
  50. data/lib/geocoder/lookups/pickpoint.rb +41 -0
  51. data/lib/geocoder/lookups/pointpin.rb +7 -6
  52. data/lib/geocoder/lookups/postcode_anywhere_uk.rb +4 -5
  53. data/lib/geocoder/lookups/postcodes_io.rb +31 -0
  54. data/lib/geocoder/lookups/smarty_streets.rb +8 -8
  55. data/lib/geocoder/lookups/telize.rb +24 -4
  56. data/lib/geocoder/lookups/yandex.rb +10 -6
  57. data/lib/geocoder/models/active_record.rb +4 -3
  58. data/lib/geocoder/request.rb +32 -0
  59. data/lib/geocoder/results/amap.rb +87 -0
  60. data/lib/geocoder/results/baidu.rb +10 -10
  61. data/lib/geocoder/results/base.rb +13 -1
  62. data/lib/geocoder/results/bing.rb +1 -1
  63. data/lib/geocoder/results/db_ip_com.rb +58 -0
  64. data/lib/geocoder/results/freegeoip.rb +0 -5
  65. data/lib/geocoder/results/geocoder_ca.rb +3 -3
  66. data/lib/geocoder/results/geoip2.rb +24 -10
  67. data/lib/geocoder/results/geoportail_lu.rb +5 -3
  68. data/lib/geocoder/results/google.rb +16 -5
  69. data/lib/geocoder/results/here.rb +8 -0
  70. data/lib/geocoder/results/ip2location.rb +22 -0
  71. data/lib/geocoder/results/ipdata_co.rb +40 -0
  72. data/lib/geocoder/results/ipstack.rb +60 -0
  73. data/lib/geocoder/results/maxmind.rb +0 -5
  74. data/lib/geocoder/results/maxmind_local.rb +0 -5
  75. data/lib/geocoder/results/nominatim.rb +12 -0
  76. data/lib/geocoder/results/opencagedata.rb +12 -2
  77. data/lib/geocoder/results/pickpoint.rb +6 -0
  78. data/lib/geocoder/results/postcodes_io.rb +40 -0
  79. data/lib/geocoder/results/smarty_streets.rb +7 -1
  80. data/lib/geocoder/results/telize.rb +0 -5
  81. data/lib/geocoder/results/test.rb +1 -1
  82. data/lib/geocoder/sql.rb +2 -2
  83. data/lib/geocoder/stores/active_record.rb +15 -4
  84. data/lib/geocoder/stores/base.rb +1 -2
  85. data/lib/geocoder/version.rb +1 -1
  86. data/lib/tasks/geocoder.rake +11 -3
  87. metadata +27 -10
  88. data/lib/geocoder/lookups/okf.rb +0 -44
  89. data/lib/geocoder/lookups/ovi.rb +0 -62
  90. data/lib/geocoder/results/okf.rb +0 -106
  91. data/lib/geocoder/results/ovi.rb +0 -71
data/README.md CHANGED
@@ -1,133 +1,180 @@
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 (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")`.
4
+ **A complete geocoding solution for Ruby.**
5
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](https://github.com/alexreisner/geocoder/releases)._
6
+ [![Gem Version](https://badge.fury.io/rb/geocoder.svg)](http://badge.fury.io/rb/geocoder)
7
+ [![Code Climate](https://codeclimate.com/github/alexreisner/geocoder/badges/gpa.svg)](https://codeclimate.com/github/alexreisner/geocoder)
8
+ [![Build Status](https://travis-ci.org/alexreisner/geocoder.svg?branch=master)](https://travis-ci.org/alexreisner/geocoder)
9
+ [![GitHub Issues](https://img.shields.io/github/issues/alexreisner/geocoder.svg)](https://github.com/alexreisner/geocoder/issues)
10
+ [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
11
 
12
+ Key features:
8
13
 
9
- Compatibility
10
- -------------
14
+ * Forward and reverse geocoding, and IP address geocoding.
15
+ * Connects to more than 40 APIs worldwide.
16
+ * Performance-enhancing feaures like caching.
17
+ * Advanced configuration allows different parameters and APIs to be used in different conditions.
18
+ * Integrates with ActiveRecord and Mongoid.
19
+ * Basic geospatial queries: search within radius (or rectangle, or ring).
11
20
 
12
- * Supports multiple Ruby versions: Ruby 1.9.3, 2.x, and JRuby.
21
+ Compatibility:
22
+
23
+ * Supports multiple Ruby versions: Ruby 2.x, and JRuby.
13
24
  * Supports multiple databases: MySQL, PostgreSQL, SQLite, and MongoDB (1.7.0 and higher).
14
25
  * 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).
15
26
  * Works very well outside of Rails, you just need to install either the `json` (for MRI) or `json_pure` (for JRuby) gem.
16
27
 
17
28
 
18
- Note on Rails 4.1 and Greater
19
- -----------------------------
29
+ Table of Contents
30
+ -----------------
20
31
 
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.
32
+ Basic Features:
22
33
 
34
+ * [Basic Search](#basic-search)
35
+ * [Geocoding Objects](#geocoding-objects)
36
+ * [Geospatial Database Queries](#geospatial-database-queries)
37
+ * [Geocoding HTTP Requests](#geocoding-http-requests)
38
+ * [Geocoding Service ("Lookup") Configuration](#geocoding-service-lookup-configuration)
23
39
 
24
- Installation
25
- ------------
40
+ Advanced Features:
26
41
 
27
- Install Geocoder like any other Ruby gem:
42
+ * [Performance and Optimization](#performance-and-optimization)
43
+ * [Advanced Model Configuration](#advanced-model-configuration)
44
+ * [Advanced Database Queries](#advanced-database-queries)
45
+ * [Geospatial Calculations](#geospatial-calculations)
46
+ * [Batch Geocoding](#batch-geocoding)
47
+ * [Testing](#testing)
48
+ * [Error Handling](#error-handing)
49
+ * [Command Line Interface](#command-line-interface)
28
50
 
29
- gem install geocoder
51
+ The Rest:
30
52
 
31
- Or, if you're using Rails/Bundler, add this to your Gemfile:
53
+ * [Technical Discussions](#technical-discussions)
54
+ * [Troubleshooting](#troubleshooting)
55
+ * [Known Issues](#known-issues)
56
+ * [Reporting Issues](#reporting-issues)
57
+ * [Contributing](#contributing)
32
58
 
33
- gem 'geocoder'
59
+ See Also:
34
60
 
35
- and run at the command prompt:
61
+ * [Guide to Geocoding APIs](https://github.com/alexreisner/geocoder/blob/master/README_API_GUIDE.md) (formerly part of this README)
36
62
 
37
- bundle install
38
63
 
64
+ Basic Search
65
+ ------------
39
66
 
40
- Object Geocoding
41
- ----------------
67
+ In its simplest form, Geocoder takes an address and searches for its latitude/longitude coordinates:
42
68
 
43
- ### ActiveRecord
69
+ results = Geocoder.search("Paris")
70
+ results.first.coordinates
71
+ => [48.856614, 2.3522219] # latitude and longitude
44
72
 
45
- Your model must have two attributes (database columns) for storing latitude and longitude coordinates. By default they should be called `latitude` and `longitude` but this can be changed (see "Model Configuration" below):
73
+ The reverse is possible too. Given coordinates, it finds an address:
46
74
 
47
- rails generate migration AddLatitudeAndLongitudeToModel latitude:float longitude:float
48
- rake db:migrate
75
+ results = Geocoder.search([48.856614, 2.3522219])
76
+ results.first.address
77
+ => "Hôtel de Ville, 75004 Paris, France"
49
78
 
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`).
79
+ You can also look up the location of an IP addresses:
51
80
 
52
- Next, your model must tell Geocoder which method returns your object's geocodable address:
81
+ results = Geocoder.search("172.56.21.89")
82
+ results.first.coordinates
83
+ => [30.267153, -97.7430608]
84
+ results.first.country
85
+ => "United States"
53
86
 
54
- geocoded_by :full_street_address # can also be an IP address
55
- after_validation :geocode # auto-fetch coordinates
87
+ **The success and accuracy of geocoding depends entirely on the API being used to do these lookups.** Most queries work fairly well with the default configuration, but every application has different needs and every API has its particular strengths and weaknesses. If you need better coverage for your application you'll want to get familiar with the large number of supported APIs, listed in the [API Guide](https://github.com/alexreisner/geocoder/blob/master/README_API_GUIDE.md).
56
88
 
57
- For reverse geocoding, tell Geocoder which attributes store latitude and longitude:
58
89
 
59
- reverse_geocoded_by :latitude, :longitude
60
- after_validation :reverse_geocode # auto-fetch address
90
+ Geocoding Objects
91
+ -----------------
61
92
 
62
- ### Mongoid
93
+ To automatically geocode your objects:
63
94
 
64
- First, your model must have an array field for storing coordinates:
95
+ **1.** Your model must provide a method that returns an address to geocode. 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`). For example, if your model has `street`, `city`, `state`, and `country` attributes you might do something like this:
65
96
 
66
- field :coordinates, :type => Array
97
+ def address
98
+ [street, city, state, country].compact.join(', ')
99
+ end
67
100
 
68
- You may also want an address field, like this:
101
+ **2.** Your model must have a way to store latitude/longitude coordinates. With ActiveRecord, add two attributes/columns (of type float or decimal) called `latitude` and `longitude`. For MongoDB, use a single field (of type Array) called `coordinates` (i.e., `field :coordinates, type: Array`). (See [Advanced Model Configuration](#advanced-model-configuration) for using different attribute names.)
69
102
 
70
- field :address
103
+ **3.** In your model, tell geocoder where to find the object's address:
71
104
 
72
- but if you store address components (city, state, country, etc) in separate fields you can instead define a method called `address` that combines them into a single string which will be used to query the geocoding service.
105
+ geocoded_by :address
73
106
 
74
- Once your fields are defined, include the `Geocoder::Model::Mongoid` module and then call `geocoded_by`:
107
+ This adds a `geocode` method which you can invoke via callback:
75
108
 
76
- include Geocoder::Model::Mongoid
77
- geocoded_by :address # can also be an IP address
78
- after_validation :geocode # auto-fetch coordinates
109
+ after_validation :geocode
79
110
 
80
- Reverse geocoding is similar:
111
+ Reverse geocoding (given lat/lon coordinates, find an address) is similar:
81
112
 
82
- include Geocoder::Model::Mongoid
83
- reverse_geocoded_by :coordinates
84
- after_validation :reverse_geocode # auto-fetch address
113
+ reverse_geocoded_by :latitude, :longitude
114
+ after_validation :reverse_geocode
85
115
 
86
- Once you've set up your model you'll need to create the necessary spatial indices in your database:
116
+ With any geocoded objects, you can do the following:
87
117
 
88
- rake db:mongoid:create_indexes
118
+ obj.distance_to([43.9,-98.6]) # distance from obj to point
119
+ obj.bearing_to([43.9,-98.6]) # bearing from obj to point
120
+ obj.bearing_from(obj2) # bearing from obj2 to obj
89
121
 
90
- Be sure to read _Latitude/Longitude Order_ in the _Notes on MongoDB_ section below on how to properly retrieve latitude/longitude coordinates from your objects.
122
+ The `bearing_from/to` methods take a single argument which can be: a `[lat,lon]` array, a geocoded object, or a geocodable address (string). The `distance_from/to` methods also take a units argument (`:mi`, `:km`, or `:nm` for nautical miles). See [Distance and Bearing](#distance-and-bearing) below for more info.
91
123
 
92
- ### MongoMapper
124
+ ### One More Thing for MongoDB!
93
125
 
94
- MongoMapper is very similar to Mongoid, just be sure to include `Geocoder::Model::MongoMapper`.
126
+ Before you can call `geocoded_by` you'll need to include the necessary module using one of the following:
95
127
 
96
- ### Mongo Indices
128
+ include Geocoder::Model::Mongoid
129
+ include Geocoder::Model::MongoMapper
97
130
 
98
- By default, the methods `geocoded_by` and `reverse_geocoded_by` create a geospatial index. You can avoid index creation with the `:skip_index option`, for example:
131
+ ### Latitude/Longitude Order in MongoDB
99
132
 
100
- include Geocoder::Model::Mongoid
101
- geocoded_by :address, :skip_index => true
133
+ Everywhere coordinates are passed to methods as two-element arrays, Geocoder expects them to be in the order: `[lat, lon]`. However, as per [the GeoJSON spec](http://geojson.org/geojson-spec.html#positions), MongoDB requires that coordinates be stored longitude-first (`[lon, lat]`), so internally they are stored "backwards." Geocoder's methods attempt to hide this, so calling `obj.to_coordinates` (a method added to the object by Geocoder via `geocoded_by`) returns coordinates in the conventional order:
102
134
 
103
- ### Bulk Geocoding
135
+ obj.to_coordinates # => [37.7941013, -122.3951096] # [lat, lon]
104
136
 
105
- If you have just added geocoding to an existing application with a lot of objects, you can use this Rake task to geocode them all:
137
+ whereas calling the object's coordinates attribute directly (`obj.coordinates` by default) returns the internal representation which is probably the reverse of what you want:
106
138
 
107
- rake geocode:all CLASS=YourModel
139
+ obj.coordinates # => [-122.3951096, 37.7941013] # [lon, lat]
108
140
 
109
- If you need reverse geocoding instead, call the task with REVERSE=true:
141
+ So, be careful.
110
142
 
111
- rake geocode:all CLASS=YourModel REVERSE=true
143
+ ### Use Outside of Rails
112
144
 
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:
145
+ To use Geocoder with ActiveRecord and a framework other than Rails (like Sinatra or Padrino), you will need to add this in your model before calling Geocoder methods:
114
146
 
115
- rake geocode:all CLASS=YourModel SLEEP=0.25 BATCH=100
147
+ extend Geocoder::Model::ActiveRecord
116
148
 
117
- ### Avoiding Unnecessary API Requests
118
149
 
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:
150
+ Geospatial Database Queries
151
+ ---------------------------
120
152
 
121
- * an address is present
122
- * the address has been changed since last save (or it has never been saved)
153
+ ### For ActiveRecord models:
123
154
 
124
- The exact code will vary depending on the method you use for your geocodable string, but it would be something like this:
155
+ To find objects by location, use the following scopes:
125
156
 
126
- after_validation :geocode, if: ->(obj){ obj.address.present? and obj.address_changed? }
157
+ Venue.near('Omaha, NE, US') # venues within 20 miles of Omaha
158
+ Venue.near([40.71, -100.23], 50) # venues within 50 miles of a point
159
+ Venue.near([40.71, -100.23], 50, units: :km) # venues within 50 kilometres of a point
160
+ Venue.geocoded # venues with coordinates
161
+ Venue.not_geocoded # venues without coordinates
162
+
163
+ With geocoded objects you can do things like this:
164
+
165
+ if obj.geocoded?
166
+ obj.nearbys(30) # other objects within 30 miles
167
+ obj.distance_from([40.714,-100.234]) # distance from arbitrary point to object
168
+ obj.bearing_to("Paris, France") # direction from object to arbitrary point
169
+ end
170
+
171
+ ### For MongoDB-backed models:
127
172
 
173
+ Please do not use Geocoder's `near` method. Instead use MongoDB's built-in [geospatial query language](https://docs.mongodb.org/manual/reference/command/geoNear/), which is faster. Mongoid also provides [a DSL](http://mongoid.github.io/en/mongoid/docs/querying.html#geo_near) for geospatial queries.
128
174
 
129
- Request Geocoding by IP Address
130
- -------------------------------
175
+
176
+ Geocoding HTTP Requests
177
+ -----------------------
131
178
 
132
179
  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:
133
180
 
@@ -136,164 +183,181 @@ Geocoder adds `location` and `safe_location` methods to the standard `Rack::Requ
136
183
 
137
184
  **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
185
 
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.
186
+ Note that these methods will usually return `nil` in test and development environments because things like "localhost" and "0.0.0.0" are not geocodable IP addresses.
140
187
 
141
- See _Advanced Geocoding_ below for more information about `Geocoder::Result` objects.
142
188
 
189
+ Geocoding Service ("Lookup") Configuration
190
+ ------------------------------------------
143
191
 
144
- Location-Aware Database Queries
145
- -------------------------------
192
+ Geocoder supports a variety of street and IP address geocoding services. The default lookups are `:nominatim` for street addresses and `:ipinfo_io` for IP addresses. Please see the [API Guide](https://github.com/alexreisner/geocoder/blob/master/README_API_GUIDE.md) for details on specific geocoding services (not all settings are supported by all services).
146
193
 
147
- ### For Mongo-backed models:
194
+ To create a Rails initializer with sample configuration:
148
195
 
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.
196
+ rails generate geocoder:config
150
197
 
151
- ### For ActiveRecord models:
198
+ Some common options are:
152
199
 
153
- To find objects by location, use the following scopes:
200
+ # config/initializers/geocoder.rb
201
+ Geocoder.configure(
154
202
 
155
- Venue.near('Omaha, NE, US', 20) # venues within 20 miles of Omaha
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)
158
- # venues within 20 kilometres of a point
159
- Venue.geocoded # venues with coordinates
160
- Venue.not_geocoded # venues without coordinates
203
+ # street address geocoding service (default :nominatim)
204
+ lookup: :yandex,
161
205
 
162
- by default, objects are ordered by distance. To remove the ORDER BY clause use the following:
206
+ # IP address geocoding service (default :ipinfo_io)
207
+ ip_lookup: :maxmind,
163
208
 
164
- Venue.near('Omaha', 20, :order => false)
209
+ # to use an API key:
210
+ api_key: "...",
165
211
 
166
- With geocoded objects you can do things like this:
212
+ # geocoding service request timeout, in seconds (default 3):
213
+ timeout: 5,
167
214
 
168
- if obj.geocoded?
169
- obj.nearbys(30) # other objects within 30 miles
170
- obj.distance_from([40.714,-100.234]) # distance from arbitrary point to object
171
- obj.bearing_to("Paris, France") # direction from object to arbitrary point
172
- end
215
+ # set default units to kilometers:
216
+ units: :km,
173
217
 
174
- Some utility methods are also available:
218
+ # caching (see [below](#caching) for details):
219
+ cache: Redis.new,
220
+ cache_prefix: "..."
175
221
 
176
- # look up coordinates of some location (like searching Google Maps)
177
- Geocoder.coordinates("25 Main St, Cooperstown, NY")
178
- => [42.700149, -74.922767]
222
+ )
179
223
 
180
- # distance between Eiffel Tower and Empire State Building
181
- Geocoder::Calculations.distance_between([47.858205,2.294359], [40.748433,-73.985655])
182
- => 3619.77359999382 # in configured units (default miles)
224
+ Please see [`lib/geocoder/configuration.rb`](https://github.com/alexreisner/geocoder/blob/master/lib/geocoder/configuration.rb) for a complete list of configuration options. Additionally, some lookups have their own special configuration options which are directly supported by Geocoder. For example, to specify a value for Google's `bounds` parameter:
183
225
 
184
- # find the geographic center (aka center of gravity) of objects or points
185
- Geocoder::Calculations.geographic_center([city1, city2, [40.22,-73.99], city4])
186
- => [35.14968, -90.048929]
226
+ # with Google:
227
+ Geocoder.search("Paris", bounds: [[32.1,-95.9], [33.9,-94.3]])
187
228
 
188
- Please see the code for more methods and detailed information about arguments (eg, working with kilometers).
229
+ Please see the [source code for each lookup](https://github.com/alexreisner/geocoder/tree/master/lib/geocoder/lookups) to learn about directly supported parameters. Parameters which are not directly supported can be specified using the `:params` option, which appends options to the query string of the geocoding request. For example:
189
230
 
231
+ # Nominatim's `countrycodes` parameter:
232
+ Geocoder.search("Paris", params: {countrycodes: "gb,de,fr,es,us"})
190
233
 
191
- Distance and Bearing
192
- --------------------
234
+ # Google's `region` parameter:
235
+ Geocoder.search("Paris", params: {region: "..."})
193
236
 
194
- When you run a location-aware query the returned objects have two attributes added to them (only w/ ActiveRecord):
237
+ ### Configuring Multiple Services
195
238
 
196
- * `obj.distance` - number of miles from the search point to this object
197
- * `obj.bearing` - direction from the search point to this object
239
+ You can configure multiple geocoding services at once by using the service's name as a key for a sub-configuration hash, like this:
198
240
 
199
- Results are automatically sorted by distance from the search point, closest to farthest. Bearing is given as a number of clockwise degrees from due north, for example:
241
+ Geocoder.configure(
200
242
 
201
- * `0` - due north
202
- * `180` - due south
203
- * `90` - due east
204
- * `270` - due west
205
- * `230.1` - southwest
206
- * `359.9` - almost due north
243
+ timeout: 2,
244
+ cache: Redis.new,
207
245
 
208
- You can convert these numbers to compass point names by using the utility method provided:
246
+ yandex: {
247
+ api_key: "...",
248
+ timeout: 5
249
+ },
209
250
 
210
- Geocoder::Calculations.compass_point(355) # => "N"
211
- Geocoder::Calculations.compass_point(45) # => "NE"
212
- Geocoder::Calculations.compass_point(208) # => "SW"
251
+ baidu: {
252
+ api_key: "..."
253
+ },
213
254
 
214
- _Note: when using SQLite `distance` and `bearing` values are provided for interface consistency only. They are not very accurate._
255
+ maxmind: {
256
+ api_key: "...",
257
+ service: :omni
258
+ }
215
259
 
216
- To calculate accurate distance and bearing with SQLite or MongoDB:
260
+ )
217
261
 
218
- obj.distance_to([43.9,-98.6]) # distance from obj to point
219
- obj.bearing_to([43.9,-98.6]) # bearing from obj to point
220
- obj.bearing_from(obj2) # bearing from obj2 to obj
262
+ Lookup-specific settings override global settings so, in this example, the timeout for all lookups is 2 seconds, except for Yandex which is 5.
221
263
 
222
- The `bearing_from/to` methods take a single argument which can be: a `[lat,lon]` array, a geocoded object, or a geocodable address (string). The `distance_from/to` methods also take a units argument (`:mi`, `:km`, or `:nm` for nautical miles).
223
264
 
265
+ Performance and Optimization
266
+ ----------------------------
224
267
 
225
- Model Configuration
226
- -------------------
268
+ ### Database Indices
227
269
 
228
- You are not stuck with using the `latitude` and `longitude` database column names (with ActiveRecord) or the `coordinates` array (Mongo) for storing coordinates. For example:
270
+ In MySQL and Postgres, queries use a bounding box to limit the number of points over which a more precise distance calculation needs to be done. To take advantage of this optimisation, you need to add a composite index on latitude and longitude. In your Rails migration:
229
271
 
230
- geocoded_by :address, :latitude => :lat, :longitude => :lon # ActiveRecord
231
- geocoded_by :address, :coordinates => :coords # MongoDB
272
+ add_index :table, [:latitude, :longitude]
232
273
 
233
- The `address` method can return any string you'd use to search Google Maps. For example, any of the following are acceptable:
274
+ In MongoDB, by default, the methods `geocoded_by` and `reverse_geocoded_by` create a geospatial index. You can avoid index creation with the `:skip_index option`, for example:
234
275
 
235
- * "714 Green St, Big Town, MO"
236
- * "Eiffel Tower, Paris, FR"
237
- * "Paris, TX, US"
276
+ include Geocoder::Model::Mongoid
277
+ geocoded_by :address, skip_index: true
238
278
 
239
- If your model has `street`, `city`, `state`, and `country` attributes you might do something like this:
279
+ ### Avoiding Unnecessary API Requests
240
280
 
241
- geocoded_by :address
281
+ 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:
242
282
 
243
- def address
244
- [street, city, state, country].compact.join(', ')
245
- end
283
+ * an address is present
284
+ * the address has been changed since last save (or it has never been saved)
246
285
 
247
- For reverse geocoding, you can also specify an alternate name attribute where the address will be stored. For example:
286
+ The exact code will vary depending on the method you use for your geocodable string, but it would be something like this:
248
287
 
249
- reverse_geocoded_by :latitude, :longitude, :address => :location # ActiveRecord
250
- reverse_geocoded_by :coordinates, :address => :loc # MongoDB
288
+ after_validation :geocode, if: ->(obj){ obj.address.present? and obj.address_changed? }
251
289
 
252
- You can also configure a specific lookup for your model which will override the globally-configured lookup. For example:
290
+ ### Caching
253
291
 
254
- geocoded_by :address, :lookup => :yandex
292
+ When relying on any external service, it's always a good idea to cache retrieved data. When implemented correctly, it improves your app's response time and stability. It's easy to cache geocoding results with Geocoder -- just configure a cache store:
255
293
 
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:
294
+ Geocoder.configure(cache: Redis.new)
257
295
 
258
- geocoded_by :address, :lookup => lambda{ |obj| obj.geocoder_lookup }
296
+ This example uses Redis, but the cache store can be any object that supports these methods:
259
297
 
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
298
+ * `store#[](key)` or `#get` or `#read` - retrieves a value
299
+ * `store#[]=(key, value)` or `#set` or `#write` - stores a value
300
+ * `store#del(url)` - deletes a value
301
+ * `store#keys` - (Optional) Returns array of keys. Used if you wish to expire the entire cache (see below).
302
+
303
+ Even a plain Ruby hash will work, though it's not a great choice (cleared out when app is restarted, not shared between app instances, etc).
269
304
 
305
+ You can also set a custom prefix to be used for cache keys:
270
306
 
271
- Advanced Querying
272
- -----------------
307
+ Geocoder.configure(cache_prefix: "...")
308
+
309
+ By default the prefix is `geocoder:`
310
+
311
+ If you need to expire cached content:
312
+
313
+ Geocoder::Lookup.get(Geocoder.config[:lookup]).cache.expire(:all) # expire cached results for current Lookup
314
+ Geocoder::Lookup.get(:nominatim).cache.expire("http://...") # expire cached result for a specific URL
315
+ Geocoder::Lookup.get(:nominatim).cache.expire(:all) # expire cached results for Google Lookup
316
+ # expire all cached results for all Lookups.
317
+ # Be aware that this methods spawns a new Lookup object for each Service
318
+ Geocoder::Lookup.all_services.each{|service| Geocoder::Lookup.get(service).cache.expire(:all)}
319
+
320
+ Do *not* include the prefix when passing a URL to be expired. Expiring `:all` will only expire keys with the configured prefix -- it will *not* expire every entry in your key/value store.
273
321
 
274
- When querying for objects (if you're using ActiveRecord) you can also look within a square rather than a radius (circle) by using the `within_bounding_box` scope:
322
+ For an example of a cache store with URL expiry, please see examples/autoexpire_cache.rb
275
323
 
276
- distance = 20
277
- center_point = [40.71, 100.23]
278
- box = Geocoder::Calculations.bounding_box(center_point, distance)
279
- Venue.within_bounding_box(box)
324
+ _Before you implement caching in your app please be sure that doing so does not violate the Terms of Service for your geocoding service._
280
325
 
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. Also note that `#near` performs both bounding box and radius queries for speed.
282
326
 
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:
327
+ Advanced Model Configuration
328
+ ----------------------------
285
329
 
286
- box = Geocoder::Calculations.bounding_box(center_point, distance, :min_radius => 10.5)
330
+ You are not stuck with the `latitude` and `longitude` database column names (with ActiveRecord) or the `coordinates` array (Mongo) for storing coordinates. For example:
287
331
 
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):
332
+ geocoded_by :address, latitude: :lat, longitude: :lon # ActiveRecord
333
+ geocoded_by :address, coordinates: :coords # MongoDB
289
334
 
290
- Venue.near("Paris", 50, latitude: :secondary_latitude, longitude: :secondary_longitude)
335
+ For reverse geocoding, you can specify the attribute where the address will be stored. For example:
336
+
337
+ reverse_geocoded_by :latitude, :longitude, address: :loc # ActiveRecord
338
+ reverse_geocoded_by :coordinates, address: :street_address # MongoDB
339
+
340
+ To specify geocoding parameters in your model:
341
+
342
+ geocoded_by :address, params: {region: "..."}
343
+
344
+ Supported parameters: `:lookup`, `:ip_lookup`, `:language`, and `:params`. You can specify an anonymous function if you want to set these on a per-request basis. For example, to use different lookups for objects in different regions:
345
+
346
+ geocoded_by :address, lookup: lambda{ |obj| obj.geocoder_lookup }
291
347
 
348
+ def geocoder_lookup
349
+ if country_code == "RU"
350
+ :yandex
351
+ elsif country_code == "CN"
352
+ :baidu
353
+ else
354
+ :nominatim
355
+ end
356
+ end
292
357
 
293
- Advanced Geocoding
294
- ------------------
358
+ ### Custom Result Handling
295
359
 
296
- So far we have looked at shortcuts for assigning geocoding results to object attributes. However, if you need to do something fancy, you can skip the auto-assignment by providing a block (takes the object to be geocoded and an array of `Geocoder::Result` objects) in which you handle the parsed geocoding result any way you like, for example:
360
+ So far we have seen examples where geocoding results are assigned automatically to predefined object attributes. However, you can skip the auto-assignment by providing a block which handles the parsed geocoding results any way you like, for example:
297
361
 
298
362
  reverse_geocoded_by :latitude, :longitude do |obj,results|
299
363
  if geo = results.first
@@ -317,677 +381,135 @@ Every `Geocoder::Result` object, `result`, provides the following data:
317
381
  * `result.country` - string
318
382
  * `result.country_code` - string
319
383
 
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.)
321
-
322
-
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).
327
-
328
- To create a Rails initializer with an example configuration:
329
-
330
- rails generate geocoder:config
331
-
332
- Some common configuration options are:
333
-
334
- # config/initializers/geocoder.rb
335
- Geocoder.configure(
336
-
337
- # geocoding service (see below for supported options):
338
- :lookup => :yandex,
339
-
340
- # IP address geocoding service (see below for supported options):
341
- :ip_lookup => :maxmind,
342
-
343
- # to use an API key:
344
- :api_key => "...",
345
-
346
- # geocoding service request timeout, in seconds (default 3):
347
- :timeout => 5,
348
-
349
- # set default units to kilometers:
350
- :units => :km,
351
-
352
- # caching (see below for details):
353
- :cache => Redis.new,
354
- :cache_prefix => "..."
355
-
356
- )
357
-
358
- Please see `lib/geocoder/configuration.rb` for a complete list of configuration options. Additionally, some lookups have their own configuration options, some of which are directly supported by Geocoder. For example, to specify a value for Google's `bounds` parameter:
359
-
360
- # with Google:
361
- Geocoder.search("Paris", :bounds => [[32.1,-95.9], [33.9,-94.3]])
362
-
363
- Please see the [source code for each lookup](https://github.com/alexreisner/geocoder/tree/master/lib/geocoder/lookups) to learn about directly supported parameters. Parameters which are not directly supported can be specified using the `:params` option, by which you can pass arbitrary parameters to any geocoding service. For example, to use Nominatim's `countrycodes` parameter:
364
-
365
- # with Nominatim:
366
- Geocoder.search("Paris", :params => {:countrycodes => "gb,de,fr,es,us"})
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
- },
383
-
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. In the above example, the timeout for all lookups would be 2 seconds, except for Yandex which would be 5.
396
-
397
-
398
- ### Street Address Services
399
-
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.
384
+ Most APIs return other data in addition to these globally-supported attributes. To directly access the full response, call the `#data` method of any Geocoder::Result object. See the [API Guide](https://github.com/alexreisner/geocoder/blob/master/README_API_GUIDE.md) for links to documentation for all geocoding services.
401
385
 
402
- #### Google (`:google`)
386
+ ### Forward and Reverse Geocoding in the Same Model
403
387
 
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
407
- * **Region**: world
408
- * **SSL support**: yes (required if key is used)
409
- * **Languages**: see https://developers.google.com/maps/faq#languagesupport
410
- * **Extra options**: `:bounds` - pass SW and NE coordinates as an array of two arrays to bias results towards a viewport
411
- * **Documentation**: https://developers.google.com/maps/documentation/geocoding/intro
412
- * **Terms of Service**: http://code.google.com/apis/maps/terms.html#section_10_12
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..."
414
-
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`)
424
-
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 Search lookup (`:google_places_search`) and should be passed to Geocoder as the first search argument: `Geocoder.search("ChIJhRwB-yFawokR5Phil-QQ3zM", lookup: :google_places_details)`.
426
-
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
430
- * **Region**: world
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."
436
-
437
- #### Google Places Search (`:google_places_search`)
438
-
439
- The [Google Places Search API](https://developers.google.com/places/web-service/search) is the geocoding service of Google Places API. It returns very limited location data, but it also returns a `place_id` which can be used with Google Place Details to get more detailed information. For a comparison between this and the regular Google Geocoding API, see https://maps-apis.googleblog.com/2016/11/address-geocoding-in-google-maps-apis.html
440
-
441
- * Same specifications as Google Places Details (see above).
442
-
443
- #### Bing (`:bing`)
444
-
445
- * **API key**: required (set `Geocoder.configure(:lookup => :bing, :api_key => key)`)
446
- * **Key signup**: https://www.microsoft.com/maps/create-a-bing-maps-key.aspx
447
- * **Quota**: 50,0000 requests/day (Windows app), 125,000 requests/year (non-Windows app)
448
- * **Region**: world
449
- * **SSL support**: no
450
- * **Languages**: ?
451
- * **Documentation**: http://msdn.microsoft.com/en-us/library/ff701715.aspx
452
- * **Terms of Service**: http://www.microsoft.com/maps/product/terms.html
453
- * **Limitations**: No country codes or state names. Must be used on "public-facing, non-password protected web sites," "in conjunction with Bing Maps or an application that integrates Bing Maps."
454
-
455
- #### Nominatim (`:nominatim`)
456
-
457
- * **API key**: none
458
- * **Quota**: 1 request/second
459
- * **Region**: world
460
- * **SSL support**: no
461
- * **Languages**: ?
462
- * **Documentation**: http://wiki.openstreetmap.org/wiki/Nominatim
463
- * **Terms of Service**: http://wiki.openstreetmap.org/wiki/Nominatim_usage_policy
464
- * **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)
465
-
466
- #### LocationIQ (`:location_iq`)
467
-
468
- * **API key**: required
469
- * **Quota**: 6 request/second (30k req/day), then ability to purchase more
470
- * **Region**: world
471
- * **SSL support**: yes
472
- * **Languages**: ?
473
- * **Documentation**: http://locationiq.org/#docs
474
- * **Terms of Service**: https://unwiredlabs.com/tos
475
- * **Limitations**: [Data licensed under Open Database License (ODbL) (you must provide attribution).](http://www.openstreetmap.org/copyright)
476
-
477
- #### OpenCageData (`:opencagedata`)
478
-
479
- * **API key**: required
480
- * **Key signup**: http://geocoder.opencagedata.com
481
- * **Quota**: 2500 requests / day, then ability to purchase more (free during beta)
482
- * **Region**: world
483
- * **SSL support**: yes
484
- * **Languages**: worldwide
485
- * **Documentation**: http://geocoder.opencagedata.com/api.html
486
- * **Limitations**: [Data licensed under Open Database License (ODbL) (you must provide attribution).](http://www.openstreetmap.org/copyright)
487
-
488
- #### Yandex (`:yandex`)
489
-
490
- * **API key**: optional, but without it lookup is territorially limited
491
- * **Quota**: 25000 requests / day
492
- * **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
493
- * **SSL support**: HTTPS only
494
- * **Languages**: Russian, Belarusian, Ukrainian, English, Turkish (only for maps of Turkey)
495
- * **Documentation**: http://api.yandex.com.tr/maps/doc/intro/concepts/intro.xml
496
- * **Terms of Service**: http://api.yandex.com.tr/maps/doc/intro/concepts/intro.xml#rules
497
- * **Limitations**: ?
498
-
499
- #### Geocoder.ca (`:geocoder_ca`)
500
-
501
- * **API key**: none
502
- * **Quota**: ?
503
- * **Region**: US and Canada
504
- * **SSL support**: no
505
- * **Languages**: English
506
- * **Documentation**: ?
507
- * **Terms of Service**: http://geocoder.ca/?terms=1
508
- * **Limitations**: "Under no circumstances can our data be re-distributed or re-sold by anyone to other parties without our written permission."
509
-
510
- #### Geocoder.us (`:geocoder_us`)
511
-
512
- * **API key**: HTTP Basic Auth
513
- * **Sign up**: http://geocoder.us/user/signup
514
- * **Quota**: You can purchase 20,000 credits at a time for $50
515
- * **Region**: US
516
- * **SSL support**: no
517
- * **Languages**: English
518
- * **Documentation**: http://geocoder.us/help/
519
- * **Terms of Service**: http://geocoder.us/terms.shtml
520
- * **Limitations**: ?
521
-
522
- #### Mapbox (`:mapbox`)
523
-
524
- * **API key**: required
525
- * **Dataset**: Uses `mapbox.places` dataset by default. Specify the `mapbox.places-permanent` dataset by setting: `Geocoder.configure(:mapbox => {:dataset => "mapbox.places-permanent"})`
526
- * **Key signup**: https://www.mapbox.com/pricing/
527
- * **Quota**: depends on plan
528
- * **Region**: complete coverage of US and Canada, partial coverage elsewhere (see for details: https://www.mapbox.com/developers/api/geocoding/#coverage)
529
- * **SSL support**: yes
530
- * **Languages**: English
531
- * **Documentation**: https://www.mapbox.com/developers/api/geocoding/
532
- * **Terms of Service**: https://www.mapbox.com/tos/
533
- * **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.
534
- * **Notes**: Currently in public beta.
535
-
536
- #### Mapquest (`:mapquest`)
537
-
538
- * **API key**: required
539
- * **Key signup**: https://developer.mapquest.com/plans
540
- * **Quota**: ?
541
- * **HTTP Headers**: when using the licensed API you can specify a referer like so:
542
- `Geocoder.configure(:http_headers => { "Referer" => "http://foo.com" })`
543
- * **Region**: world
544
- * **SSL support**: no
545
- * **Languages**: English
546
- * **Documentation**: http://www.mapquestapi.com/geocoding/
547
- * **Terms of Service**: http://info.mapquest.com/terms-of-use/
548
- * **Limitations**: ?
549
- * **Notes**: You can use the open (non-licensed) API by setting: `Geocoder.configure(:mapquest => {:open => true})` (defaults to licensed version)
550
-
551
- #### Ovi/Nokia (`:ovi`)
552
-
553
- * **API key**: not required, but performance restricted without it
554
- * **Quota**: ?
555
- * **Region**: world
556
- * **SSL support**: no
557
- * **Languages**: English
558
- * **Documentation**: http://api.maps.ovi.com/devguide/overview.html
559
- * **Terms of Service**: http://www.developer.nokia.com/Develop/Maps/TC.html
560
- * **Limitations**: ?
561
-
562
- #### Here/Nokia (`:here`)
563
-
564
- * **API key**: required (set `Geocoder.configure(:api_key => [app_id, app_code])`)
565
- * **Quota**: Depending on the API key
566
- * **Region**: world
567
- * **SSL support**: yes
568
- * **Languages**: The preferred language of address elements in the result. Language code must be provided according to RFC 4647 standard.
569
- * **Documentation**: http://developer.here.com/rest-apis/documentation/geocoder
570
- * **Terms of Service**: http://developer.here.com/faqs#l&t
571
- * **Limitations**: ?
572
-
573
- #### ESRI (`:esri`)
574
-
575
- * **API key**: optional (set `Geocoder.configure(:esri => {:api_key => ["client_id", "client_secret"]})`)
576
- * **Quota**: Required for some scenarios (see Terms of Service)
577
- * **Region**: world
578
- * **SSL support**: yes
579
- * **Languages**: English
580
- * **Documentation**: https://developers.arcgis.com/rest/geocode/api-reference/overview-world-geocoding-service.htm
581
- * **Terms of Service**: http://www.esri.com/legal/software-license
582
- * **Limitations**: Requires API key if results will be stored. Using API key will also remove rate limit.
583
- * **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})`
584
-
585
- #### Mapzen (`:mapzen`)
586
-
587
- * **API key**: required
588
- * **Quota**: 6/sec, up to 30k per day, paid plan info at https://mapzen.com/documentation/search/api-keys-rate-limits/#rate-limits
589
- * **Region**: world
590
- * **SSL support**: yes
591
- * **Languages**: en
592
- * **Documentation**: https://mapzen.com/documentation/search/search/
593
- * **Terms of Service**: http://mapzen.com/terms
594
- * **Limitations**: ?
595
- * **Notes**: Mapzen is the primary author of Pelias and offers Pelias-as-a-service in free and paid versions https://mapzen.com/pelias.
596
-
597
- #### Pelias (`:pelias`)
598
-
599
- * **API key**: required
600
- * **Quota**: none (self-hosted service)
601
- * **Region**: world
602
- * **SSL support**: yes
603
- * **Languages**: en
604
- * **Documentation**: https://mapzen.com/documentation/search/search/
605
- * **Terms of Service**: http://mapzen.com/terms
606
- * **Limitations**: See terms
607
- * **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`.
608
-
609
- #### Data Science Toolkit (`:dstk`)
610
-
611
- Data Science Toolkit provides an API whose response format is like Google's but which can be set up as a privately hosted service.
612
-
613
- * **API key**: none
614
- * **Quota**: None quota if you are self-hosting the service.
615
- * **Region**: world
616
- * **SSL support**: ?
617
- * **Languages**: en
618
- * **Documentation**: http://www.datasciencetoolkit.org/developerdocs
619
- * **Terms of Service**: http://www.datasciencetoolkit.org/developerdocs#googlestylegeocoder
620
- * **Limitations**: No reverse geocoding.
621
- * **Notes**: If you are hosting your own DSTK server you will need to configure the host name, eg: `Geocoder.configure(:lookup => :dstk, :dstk => {:host => "localhost:4567"})`.
622
-
623
- #### Baidu (`:baidu`)
624
-
625
- * **API key**: required
626
- * **Quota**: No quota limits for geocoding
627
- * **Region**: China
628
- * **SSL support**: no
629
- * **Languages**: Chinese (Simplified)
630
- * **Documentation**: http://developer.baidu.com/map/webservice-geocoding.htm
631
- * **Terms of Service**: http://developer.baidu.com/map/law.htm
632
- * **Limitations**: Only good for non-commercial use. For commercial usage please check http://developer.baidu.com/map/question.htm#qa0013
633
- * **Notes**: To use Baidu set `Geocoder.configure(:lookup => :baidu, :api_key => "your_api_key")`.
634
-
635
- #### Geocodio (`:geocodio`)
636
-
637
- * **API key**: required
638
- * **Quota**: 2,500 free requests/day then purchase $.001 for each, also has volume pricing and plans
639
- * **Region**: US
640
- * **SSL support**: yes
641
- * **Languages**: en
642
- * **Documentation**: http://geocod.io/docs
643
- * **Terms of Service**: http://geocod.io/terms-of-use
644
- * **Limitations**: No restrictions on use
645
-
646
- #### SmartyStreets (`:smarty_streets`)
647
-
648
- * **API key**: requires auth_id and auth_token (set `Geocoder.configure(:api_key => [id, token])`)
649
- * **Quota**: 10,000 free, 250/month then purchase at sliding scale.
650
- * **Region**: US
651
- * **SSL support**: yes (required)
652
- * **Languages**: en
653
- * **Documentation**: http://smartystreets.com/kb/liveaddress-api/rest-endpoint
654
- * **Terms of Service**: http://smartystreets.com/legal/terms-of-service
655
- * **Limitations**: No reverse geocoding.
656
-
657
-
658
- #### OKF Geocoder (`:okf`)
659
-
660
- * **API key**: none
661
- * **Quota**: none
662
- * **Region**: FI
663
- * **SSL support**: no
664
- * **Languages**: fi
665
- * **Documentation**: http://books.okf.fi/geocoder/_full/
666
- * **Terms of Service**: http://www.itella.fi/liitteet/palvelutjatuotteet/yhteystietopalvelut/Postinumeropalvelut-Palvelukuvausjakayttoehdot.pdf
667
- * **Limitations**: ?
668
-
669
- #### Geoportail.lu (`:geoportail_lu`)
670
-
671
- * **API key**: none
672
- * **Quota**: none
673
- * **Region**: LU
674
- * **SSL support**: yes
675
- * **Languages**: en
676
- * **Documentation**: http://wiki.geoportail.lu/doku.php?id=en:api
677
- * **Terms of Service**: http://wiki.geoportail.lu/doku.php?id=en:mcg_1
678
- * **Limitations**: ?
679
-
680
- #### PostcodeAnywhere Uk (`:postcode_anywhere_uk`)
681
-
682
- This uses the PostcodeAnywhere UK Geocode service, this will geocode any string from UK postcode, placename, point of interest or location.
683
-
684
- * **API key**: required
685
- * **Quota**: Dependant on service plan?
686
- * **Region**: UK
687
- * **SSL support**: yes
688
- * **Languages**: English
689
- * **Documentation**: [http://www.postcodeanywhere.co.uk/Support/WebService/Geocoding/UK/Geocode/2/](http://www.postcodeanywhere.co.uk/Support/WebService/Geocoding/UK/Geocode/2/)
690
- * **Terms of Service**: ?
691
- * **Limitations**: ?
692
- * **Notes**: To use PostcodeAnywhere you must include an API key: `Geocoder.configure(:lookup => :postcode_anywhere_uk, :api_key => 'your_api_key')`.
693
-
694
- #### LatLon.io (`:latlon`)
695
-
696
- * **API key**: required
697
- * **Quota**: Depends on the user's plan (free and paid plans available)
698
- * **Region**: US
699
- * **SSL support**: yes
700
- * **Languages**: en
701
- * **Documentation**: https://latlon.io/documentation
702
- * **Terms of Service**: ?
703
- * **Limitations**: No restrictions on use
704
-
705
- #### Base Adresse Nationale FR (`:ban_data_gouv_fr`)
706
-
707
- * **API key**: none
708
- * **Quota**: none
709
- * **Region**: FR
710
- * **SSL support**: yes
711
- * **Languages**: en / fr
712
- * **Documentation**: https://adresse.data.gouv.fr/api/ (in french)
713
- * **Terms of Service**: https://adresse.data.gouv.fr/faq/ (in french)
714
- * **Limitations**: [Data licensed under Open Database License (ODbL) (you must provide attribution).](http://openstreetmap.fr/ban)
715
-
716
- ### IP Address Services
717
-
718
- #### FreeGeoIP (`:freegeoip`)
719
-
720
- * **API key**: none
721
- * **Quota**: 10000 requests per hour. After reaching the hourly quota, all of your requests will result in HTTP 403 (Forbidden) until it clears up on the next roll over.
722
- * **Region**: world
723
- * **SSL support**: no
724
- * **Languages**: English
725
- * **Documentation**: http://github.com/fiorix/freegeoip/blob/master/README.md
726
- * **Terms of Service**: ?
727
- * **Limitations**: ?
728
- * **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: "..."})`.
729
-
730
- #### Pointpin (`:pointpin`)
731
-
732
- * **API key**: required
733
- * **Quota**: 50,000/mo for €9 through 1m/mo for €49
734
- * **Region**: world
735
- * **SSL support**: yes
736
- * **Languages**: English
737
- * **Documentation**: https://pointp.in/docs/get-started
738
- * **Terms of Service**: https://pointp.in/terms
739
- * **Limitations**: ?
740
- * **Notes**: To use Pointpin set `Geocoder.configure(:ip_lookup => :pointpin, :api_key => "your_pointpin_api_key")`.
741
-
742
- #### Telize (`:telize`)
743
-
744
- * **API key**: required
745
- * **Quota**: 1,000/day for $7/mo through 100,000/day for $100/mo
746
- * **Region**: world
747
- * **SSL support**: yes
748
- * **Languages**: English
749
- * **Documentation**: https://market.mashape.com/fcambus/telize
750
- * **Terms of Service**: ?
751
- * **Limitations**: ?
752
- * **Notes**: To use Telize set `Geocoder.configure(:ip_lookup => :telize, :api_key => "your_api_key")`.
753
-
754
- #### MaxMind Legacy Web Services (`:maxmind`)
755
-
756
- * **API key**: required
757
- * **Quota**: Request Packs can be purchased
758
- * **Region**: world
759
- * **SSL support**: yes
760
- * **Languages**: English
761
- * **Documentation**: http://dev.maxmind.com/geoip/legacy/web-services/
762
- * **Terms of Service**: ?
763
- * **Limitations**: ?
764
- * **Notes**: You must specify which MaxMind service you are using in your configuration. For example: `Geocoder.configure(:maxmind => {:service => :omni})`.
765
-
766
- #### Baidu IP (`:baidu_ip`)
767
-
768
- * **API key**: required
769
- * **Quota**: No quota limits for geocoding
770
- * **Region**: China
771
- * **SSL support**: no
772
- * **Languages**: Chinese (Simplified)
773
- * **Documentation**: http://developer.baidu.com/map/webservice-geocoding.htm
774
- * **Terms of Service**: http://developer.baidu.com/map/law.htm
775
- * **Limitations**: Only good for non-commercial use. For commercial usage please check http://developer.baidu.com/map/question.htm#qa0013
776
- * **Notes**: To use Baidu set `Geocoder.configure(:lookup => :baidu_ip, :api_key => "your_api_key")`.
777
-
778
- #### MaxMind GeoIP2 Precision Web Services (`:maxmind_geoip2`)
779
-
780
- * **API key**: required
781
- * **Quota**: Request Packs can be purchased
782
- * **Region**: world
783
- * **SSL support**: yes
784
- * **Languages**: English
785
- * **Documentation**: http://dev.maxmind.com/geoip/geoip2/web-services/
786
- * **Terms of Service**: ?
787
- * **Limitations**: ?
788
- * **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 => ''}})`.
789
-
790
- #### IPInfo.io (`:ipinfo_io`)
791
-
792
- * **API key**: optional - see http://ipinfo.io/pricing
793
- * **Quota**: 1,000/day - more with api key
794
- * **Region**: world
795
- * **SSL support**: no (not without access key - see http://ipinfo.io/pricing)
796
- * **Languages**: English
797
- * **Documentation**: http://ipinfo.io/developers
798
- * **Terms of Service**: http://ipinfo.io/developers
799
-
800
- #### IP-API.com (`:ipapi_com`)
801
-
802
- * **API key**: optional - see http://ip-api.com/docs/#usage_limits
803
- * **Quota**: 150/minute - unlimited with api key
804
- * **Region**: world
805
- * **SSL support**: no (not without access key - see https://signup.ip-api.com/)
806
- * **Languages**: English
807
- * **Documentation**: http://ip-api.com/docs/
808
- * **Terms of Service**: https://signup.ip-api.com/terms
809
-
810
- ### IP Address Local Database Services
811
-
812
- #### MaxMind Local (`:maxmind_local`) - EXPERIMENTAL
813
-
814
- 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.
815
-
816
- * **API key**: none (requires the GeoLite City database which can be downloaded from [MaxMind](http://dev.maxmind.com/geoip/legacy/geolite/))
817
- * **Quota**: none
818
- * **Region**: world
819
- * **SSL support**: N/A
820
- * **Languages**: English
821
- * **Documentation**: http://www.maxmind.com/en/city
822
- * **Terms of Service**: ?
823
- * **Limitations**: ?
824
- * **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.**
825
-
826
- **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:
827
-
828
- Geocoder.configure(ip_lookup: :maxmind_local, maxmind_local: {file: File.join('folder', 'GeoLiteCity.dat')})
829
-
830
- **To use a CSV file** you must import it into an SQL database. The GeoLite *City* and *Country* packages are supported. Configure like so:
831
-
832
- Geocoder.configure(ip_lookup: :maxmind_local, maxmind_local: {package: :city})
833
-
834
- You can generate ActiveRecord migrations and download and import data via provided rake tasks:
835
-
836
- # generate migration to create tables
837
- rails generate geocoder:maxmind:geolite_city
838
-
839
- # download, unpack, and import data
840
- rake geocoder:maxmind:geolite:load PACKAGE=city
841
-
842
- You can replace `city` with `country` in any of the above tasks, generators, and configurations.
843
-
844
- #### GeoLite2 (`:geoip2`)
845
-
846
- 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.
847
-
848
- * **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/))
849
- * **Quota**: none
850
- * **Region**: world
851
- * **SSL support**: N/A
852
- * **Languages**: English
853
- * **Documentation**: http://www.maxmind.com/en/city
854
- * **Terms of Service**: ?
855
- * **Limitations**: ?
856
- * **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:
388
+ You can apply both forward and reverse geocoding to the same model (i.e. users can supply an address or coordinates and Geocoder fills in whatever's missing) but you'll need to provide two different address methods:
857
389
 
858
- Geocoder.configure(
859
- ip_lookup: :geoip2,
860
- geoip2: {
861
- file: File.join('folder', 'GeoLite2-City.mmdb')
862
- }
863
- )
864
-
865
- 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`:
866
-
867
- Geocoder.configure(
868
- ip_lookup: :geoip2,
869
- geoip2: {
870
- lib: 'hive_geoip2',
871
- file: File.join('folder', 'GeoLite2-City.mmdb')
872
- }
873
- )
390
+ * one for storing the fetched address (when reverse geocoding)
391
+ * one for providing an address to use when fetching coordinates (forward geocoding)
874
392
 
875
- Caching
876
- -------
393
+ For example:
877
394
 
878
- When relying on any external service, it's always a good idea to cache retrieved data. When implemented correctly, it improves your app's response time and stability. It's easy to cache geocoding results with Geocoder -- just configure a cache store:
395
+ class Venue
879
396
 
880
- Geocoder.configure(:cache => Redis.new)
397
+ # build an address from street, city, and state attributes
398
+ geocoded_by :address_from_components
881
399
 
882
- This example uses Redis, but the cache store can be any object that supports these methods:
400
+ # store the fetched address in the full_address attribute
401
+ reverse_geocoded_by :latitude, :longitude, address: :full_address
402
+ end
883
403
 
884
- * `store#[](key)` or `#get` or `#read` - retrieves a value
885
- * `store#[]=(key, value)` or `#set` or `#write` - stores a value
886
- * `store#del(url)` - deletes a value
404
+ The same goes for latitude/longitude. However, for purposes of querying the database, there can be only one authoritative set of latitude/longitude attributes for use in database queries. This is whichever you specify last. For example, here the attributes *without* the `fetched_` prefix will be authoritative:
887
405
 
888
- Even a plain Ruby hash will work, though it's not a great choice (cleared out when app is restarted, not shared between app instances, etc).
406
+ class Venue
407
+ geocoded_by :address,
408
+ latitude: :fetched_latitude,
409
+ longitude: :fetched_longitude
410
+ reverse_geocoded_by :latitude, :longitude
411
+ end
889
412
 
890
- You can also set a custom prefix to be used for cache keys:
891
413
 
892
- Geocoder.configure(:cache_prefix => "...")
414
+ Advanced Database Queries
415
+ -------------------------
893
416
 
894
- By default the prefix is `geocoder:`
417
+ *The following apply to ActiveRecord only. For MongoDB, please use the built-in geospatial features.*
895
418
 
896
- If you need to expire cached content:
419
+ The default `near` search looks for objects within a circle. To search within a doughnut or ring use the `:min_radius` option:
897
420
 
898
- Geocoder::Lookup.get(Geocoder.config[:lookup]).cache.expire(:all) # expire cached results for current Lookup
899
- Geocoder::Lookup.get(:google).cache.expire("http://...") # expire cached result for a specific URL
900
- Geocoder::Lookup.get(:google).cache.expire(:all) # expire cached results for Google Lookup
901
- # expire all cached results for all Lookups.
902
- # Be aware that this methods spawns a new Lookup object for each Service
903
- Geocoder::Lookup.all_services.each{|service| Geocoder::Lookup.get(service).cache.expire(:all)}
421
+ Venue.near("Austin, TX", 200, min_radius: 40)
904
422
 
905
- Do *not* include the prefix when passing a URL to be expired. Expiring `:all` will only expire keys with the configured prefix -- it will *not* expire every entry in your key/value store.
423
+ To search within a rectangle (note that results will *not* include `distance` and `bearing` attributes):
906
424
 
907
- For an example of a cache store with URL expiry, please see examples/autoexpire_cache.rb
425
+ sw_corner = [40.71, 100.23]
426
+ ne_corner = [36.12, 88.65]
427
+ Venue.within_bounding_box(sw_corner, ne_corner)
908
428
 
909
- _Before you implement caching in your app please be sure that doing so does not violate the Terms of Service for your geocoding service._
429
+ To search for objects near a certain point where each object has a different distance requirement (which is defined in the database), you can pass a column name for the radius:
910
430
 
431
+ Venue.near([40.71, 99.23], :effective_radius)
911
432
 
912
- Forward and Reverse Geocoding in the Same Model
913
- -----------------------------------------------
433
+ If you store multiple sets of coordinates for each object, you can specify latitude and longitude columns to use for a search:
914
434
 
915
- If you apply both forward and reverse geocoding functionality to the same model (i.e. users can supply an address or coordinates and you want to fill in whatever's missing), you will provide two address methods:
435
+ Venue.near("Paris", 50, latitude: :secondary_latitude, longitude: :secondary_longitude)
916
436
 
917
- * one for storing the fetched address (reverse geocoding)
918
- * one for providing an address to use when fetching coordinates (forward geocoding)
437
+ ### Distance and Bearing
919
438
 
920
- For example:
439
+ When you run a geospatial query, the returned objects have two attributes added:
921
440
 
922
- class Venue
441
+ * `obj.distance` - number of miles from the search point to this object
442
+ * `obj.bearing` - direction from the search point to this object
923
443
 
924
- # build an address from street, city, and state attributes
925
- geocoded_by :address_from_components
444
+ Results are automatically sorted by distance from the search point, closest to farthest. Bearing is given as a number of degrees clockwise from due north, for example:
926
445
 
927
- # store the fetched address in the full_address attribute
928
- reverse_geocoded_by :latitude, :longitude, :address => :full_address
929
- end
446
+ * `0` - due north
447
+ * `180` - due south
448
+ * `90` - due east
449
+ * `270` - due west
450
+ * `230.1` - southwest
451
+ * `359.9` - almost due north
930
452
 
931
- However, there can be only one set of latitude/longitude attributes, and whichever you specify last will be used. For example:
453
+ You can convert these to compass point names via provided method:
932
454
 
933
- class Venue
455
+ Geocoder::Calculations.compass_point(355) # => "N"
456
+ Geocoder::Calculations.compass_point(45) # => "NE"
457
+ Geocoder::Calculations.compass_point(208) # => "SW"
934
458
 
935
- geocoded_by :address,
936
- :latitude => :fetched_latitude, # this will be overridden by the below
937
- :longitude => :fetched_longitude # same here
459
+ _Note: when running queries on SQLite, `distance` and `bearing` are provided for consistency only. They are not very accurate._
938
460
 
939
- reverse_geocoded_by :latitude, :longitude
940
- end
461
+ For more advanced geospatial querying, please see the [rgeo gem](https://github.com/rgeo/rgeo).
941
462
 
942
- We don't want ambiguity when doing distance calculations -- we need a single, authoritative source for coordinates!
943
463
 
944
- Once both forward and reverse geocoding has been applied, it is possible to call them sequentially.
464
+ Geospatial Calculations
465
+ -----------------------
945
466
 
946
- For example:
467
+ The `Geocoder::Calculations` module contains some useful methods:
947
468
 
948
- class Venue
469
+ # find the distance between two arbitrary points
470
+ Geocoder::Calculations.distance_between([47.858205,2.294359], [40.748433,-73.985655])
471
+ => 3619.77359999382 # in configured units (default miles)
949
472
 
950
- after_validation :geocode, :reverse_geocode
473
+ # find the geographic center (aka center of gravity) of objects or points
474
+ Geocoder::Calculations.geographic_center([city1, city2, [40.22,-73.99], city4])
475
+ => [35.14968, -90.048929]
951
476
 
952
- end
477
+ See [the code](https://github.com/alexreisner/geocoder/blob/master/lib/geocoder/calculations.rb) for more!
953
478
 
954
- For certain geolocation services such as Google's geolocation API, this may cause issues during subsequent updates to database records if the longitude and latitude coordinates cannot be associated with a known location address (on a large body of water for example). On subsequent callbacks the following call:
955
479
 
956
- after_validation :geocode
480
+ Batch Geocoding
481
+ ---------------
957
482
 
958
- will alter the longitude and latitude attributes based on the location field, which would be the closest known location to the original coordinates. In this case it is better to add conditions to each call, as not to override coordinates that do not have known location addresses associated with them.
483
+ If you have just added geocoding to an existing application with a lot of objects, you can use this Rake task to geocode them all:
959
484
 
960
- For example:
485
+ rake geocode:all CLASS=YourModel
961
486
 
962
- class Venue
487
+ If you need reverse geocoding instead, call the task with REVERSE=true:
963
488
 
964
- after_validation :reverse_geocode, :if => :has_coordinates
965
- after_validation :geocode, :if => :has_location, :unless => :has_coordinates
489
+ rake geocode:all CLASS=YourModel REVERSE=true
966
490
 
967
- end
491
+ In either case, it won't try to geocode objects that are already geocoded. The task will print warnings if you exceed the rate limit for your geocoding service. Some services 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:
968
492
 
969
- Use Outside of Rails
970
- --------------------
493
+ rake geocode:all CLASS=YourModel SLEEP=0.25 BATCH=100
971
494
 
972
- You can use Geocoder outside of Rails by calling the `Geocoder.search` method:
495
+ To avoid exceeding per-day limits you can add a `LIMIT` option. However, this will ignore the `BATCH` value, if provided.
973
496
 
974
- results = Geocoder.search("McCarren Park, Brooklyn, NY")
497
+ rake geocode:all CLASS=YourModel LIMIT=1000
975
498
 
976
- This returns an array of `Geocoder::Result` objects with all data provided by the geocoding service.
977
499
 
500
+ Testing
501
+ -------
978
502
 
979
- Testing Apps that Use Geocoder
980
- ------------------------------
503
+ When writing tests for an app that uses Geocoder it may be useful to avoid network calls and have Geocoder return consistent, configurable results. To do this, configure the `:test` lookup:
981
504
 
982
- When writing tests for an app that uses Geocoder it may be useful to avoid network calls and have Geocoder return consistent, configurable results. To do this, configure and use the `:test` lookup. For example:
505
+ Geocoder.configure(lookup: :test)
983
506
 
984
- Geocoder.configure(:lookup => :test)
507
+ Add stubs to define the results that will be returned:
985
508
 
986
509
  Geocoder::Lookup::Test.add_stub(
987
510
  "New York, NY", [
988
511
  {
989
- 'latitude' => 40.7143528,
990
- 'longitude' => -74.0059731,
512
+ 'coordinates' => [40.7143528, -74.0059731],
991
513
  'address' => 'New York, NY, USA',
992
514
  'state' => 'New York',
993
515
  'state_code' => 'NY',
@@ -997,15 +519,12 @@ When writing tests for an app that uses Geocoder it may be useful to avoid netwo
997
519
  ]
998
520
  )
999
521
 
1000
- 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:
1001
-
1002
- Geocoder.configure(:lookup => :test)
522
+ With the above stub defined, any query for "New York, NY" will return the results array that follows. You can also set a default stub, to be returned when no other stub matches a given query:
1003
523
 
1004
524
  Geocoder::Lookup::Test.set_default_stub(
1005
525
  [
1006
526
  {
1007
- 'latitude' => 40.7143528,
1008
- 'longitude' => -74.0059731,
527
+ 'coordinates' => [40.7143528, -74.0059731],
1009
528
  'address' => 'New York, NY, USA',
1010
529
  'state' => 'New York',
1011
530
  'state_code' => 'NY',
@@ -1017,8 +536,33 @@ Now, any time Geocoder looks up "New York, NY" its results array will contain on
1017
536
 
1018
537
  Notes:
1019
538
 
1020
- - Keys must be strings not symbols when calling `add_stub` or `set_default_stub`. For example `'latitude' =>` not `:latitude =>`.
539
+ - Keys must be strings (not symbols) when calling `add_stub` or `set_default_stub`. For example `'country' =>` not `:country =>`.
1021
540
  - To clear stubs (e.g. prior to another spec), use `Geocoder::Lookup::Test.reset`. This will clear all stubs _including the default stub_.
541
+ - The stubbed result objects returned by the Test lookup do not support all the methods real result objects do. If you need to test interaction with real results it may be better to use an external stubbing tool and something like WebMock or VCR to prevent network calls.
542
+
543
+
544
+ Error Handling
545
+ --------------
546
+
547
+ 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:
548
+
549
+ Geocoder.configure(always_raise: [SocketError, Timeout::Error])
550
+
551
+ You can also do this to raise all exceptions:
552
+
553
+ Geocoder.configure(always_raise: :all)
554
+
555
+ The raise-able exceptions are:
556
+
557
+ SocketError
558
+ Timeout::Error
559
+ Geocoder::OverQueryLimitError
560
+ Geocoder::RequestDenied
561
+ Geocoder::InvalidRequest
562
+ Geocoder::InvalidApiKey
563
+ Geocoder::ServiceUnavailable
564
+
565
+ 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.
1022
566
 
1023
567
 
1024
568
  Command Line Interface
@@ -1034,63 +578,18 @@ When you install the Geocoder gem it adds a `geocode` command to your shell. You
1034
578
  State/province: Louisiana
1035
579
  Postal code: 70112
1036
580
  Country: United States
1037
- Google map: http://maps.google.com/maps?q=29.952211,-90.080563
581
+ Map: http://maps.google.com/maps?q=29.952211,-90.080563
1038
582
 
1039
583
  There are also a number of options for setting the geocoding API, key, and language, viewing the raw JSON response, and more. Please run `geocode -h` for details.
1040
584
 
1041
- Numeric Data Types and Precision
1042
- --------------------------------
1043
-
1044
- Geocoder works with any numeric data type (e.g. float, double, decimal) on which trig (and other mathematical) functions can be performed.
1045
-
1046
- A summary of the relationship between geographic precision and the number of decimal places in latitude and longitude degree values is available on [Wikipedia](http://en.wikipedia.org/wiki/Decimal_degrees#Accuracy). As an example: at the equator, latitude/longitude values with 4 decimal places give about 11 metres precision, whereas 5 decimal places gives roughly 1 metre precision.
1047
-
1048
- Notes on MongoDB
1049
- ----------------
1050
-
1051
- ### The Near Method
1052
-
1053
- Mongo document classes (Mongoid and MongoMapper) have a built-in `near` scope, but since it only works two-dimensions Geocoder overrides it with its own spherical `near` method in geocoded classes.
1054
-
1055
- ### Latitude/Longitude Order
1056
-
1057
- Coordinates are generally printed and spoken as latitude, then longitude ([lat,lon]). Geocoder respects this convention and always expects method arguments to be given in [lat,lon] order. However, MongoDB requires that coordinates be stored in [lon,lat] order as per the GeoJSON spec (http://geojson.org/geojson-spec.html#positions), so internally they are stored "backwards." However, this does not affect order of arguments to methods when using Mongoid or MongoMapper.
1058
-
1059
- To access an object's coordinates in the conventional order, use the `to_coordinates` instance method provided by Geocoder. For example:
1060
-
1061
- obj.to_coordinates # => [37.7941013, -122.3951096] # [lat, lon]
1062
-
1063
- Calling `obj.coordinates` directly returns the internal representation of the coordinates which, in the case of MongoDB, is probably the reverse of what you want:
1064
-
1065
- obj.coordinates # => [-122.3951096, 37.7941013] # [lon, lat]
1066
-
1067
- For consistency with the rest of Geocoder, always use the `to_coordinates` method instead.
1068
-
1069
- Notes on Non-Rails Frameworks
1070
- -----------------------------
1071
-
1072
- If you are using Geocoder with ActiveRecord and a framework other than Rails (like Sinatra or Padrino), you will need to add this in your model before calling Geocoder methods:
1073
-
1074
- extend Geocoder::Model::ActiveRecord
1075
-
1076
- Optimisation of Distance Queries
1077
- --------------------------------
1078
-
1079
- In MySQL and Postgres, the finding of objects near a given point is sped up by using a bounding box to limit the number of points over which a full distance calculation needs to be done.
1080
-
1081
- To take advantage of this optimisation, you need to add a composite index on latitude and longitude. In your Rails migration:
1082
-
1083
- add_index :table, [:latitude, :longitude]
1084
585
 
586
+ Technical Discussions
587
+ ---------------------
1085
588
 
1086
- Distance Queries in SQLite
1087
- --------------------------
589
+ ### Distance Queries in SQLite
1088
590
 
1089
591
  SQLite's lack of trigonometric functions requires an alternate implementation of the `near` scope. When using SQLite, Geocoder will automatically use a less accurate algorithm for finding objects near a given point. Results of this algorithm should not be trusted too much as it will return objects that are outside the given radius, along with inaccurate distance and bearing calculations.
1090
592
 
1091
-
1092
- ### Discussion
1093
-
1094
593
  There are few options for finding objects near a given point in SQLite without installing extensions:
1095
594
 
1096
595
  1. Use a square instead of a circle for finding nearby points. For example, if you want to find points near 40.71, 100.23, search for objects with latitude between 39.71 and 41.71 and longitude between 99.23 and 101.23. One degree of latitude or longitude is at most 69 miles so divide your radius (in miles) by 69.0 to get the amount to add and subtract from your center coordinates to get the upper and lower bounds. The results will not be very accurate (you'll get points outside the desired radius), but you will get all the points within the required radius.
@@ -1101,37 +600,11 @@ There are few options for finding objects near a given point in SQLite without i
1101
600
 
1102
601
  Because Geocoder needs to provide this functionality as a scope, we must go with option #1, but feel free to implement #2 or #3 if you need more accuracy.
1103
602
 
603
+ ### Numeric Data Types and Precision
1104
604
 
1105
- Tests
1106
- -----
1107
-
1108
- Geocoder comes with a test suite (just run `rake test`) that mocks ActiveRecord and is focused on testing the aspects of Geocoder that do not involve executing database queries. Geocoder uses many database engine-specific queries which must be tested against all supported databases (SQLite, MySQL, etc). Ideally this involves creating a full, working Rails application, and that seems beyond the scope of the included test suite. As such, I have created a separate repository which includes a full-blown Rails application and some utilities for easily running tests against multiple environments:
1109
-
1110
- http://github.com/alexreisner/geocoder_test
1111
-
1112
-
1113
- Error Handling
1114
- --------------
1115
-
1116
- 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:
1117
-
1118
- Geocoder.configure(:always_raise => [SocketError, Timeout::Error])
1119
-
1120
- You can also do this to raise all exceptions:
1121
-
1122
- Geocoder.configure(:always_raise => :all)
1123
-
1124
- The raise-able exceptions are:
1125
-
1126
- SocketError
1127
- Timeout::Error
1128
- Geocoder::OverQueryLimitError
1129
- Geocoder::RequestDenied
1130
- Geocoder::InvalidRequest
1131
- Geocoder::InvalidApiKey
1132
- Geocoder::ServiceUnavailable
605
+ Geocoder works with any numeric data type (e.g. float, double, decimal) on which trig (and other mathematical) functions can be performed.
1133
606
 
1134
- 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.
607
+ A summary of the relationship between geographic precision and the number of decimal places in latitude and longitude degree values is available on [Wikipedia](http://en.wikipedia.org/wiki/Decimal_degrees#Accuracy). As an example: at the equator, latitude/longitude values with 4 decimal places give about 11 metres precision, whereas 5 decimal places gives roughly 1 metre precision.
1135
608
 
1136
609
 
1137
610
  Troubleshooting
@@ -1167,24 +640,23 @@ For the most part, the speed of geocoding requests has little to do with the Geo
1167
640
 
1168
641
  Take a look at the server's raw response. You can do this by getting the request URL in an app console:
1169
642
 
1170
- Geocoder::Lookup.get(:google).query_url(Geocoder::Query.new("..."))
643
+ Geocoder::Lookup.get(:nominatim).query_url(Geocoder::Query.new("..."))
1171
644
 
1172
- 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.
645
+ Replace `:nominatim` 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.
1173
646
 
1174
647
  You can also fetch the response in the console:
1175
648
 
1176
- Geocoder::Lookup.get(:google).send(:fetch_raw_data, Geocoder::Query.new("..."))
649
+ Geocoder::Lookup.get(:nominatim).send(:fetch_raw_data, Geocoder::Query.new("..."))
1177
650
 
1178
651
 
1179
- Reporting Issues
1180
- ----------------
1181
-
1182
- 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 you are actually seeing (eg: an error message? a nil return value?).
652
+ Known Issues
653
+ ------------
1183
654
 
1184
- 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.
655
+ ### Using `count` with Rails 4.1+
1185
656
 
657
+ 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.
1186
658
 
1187
- ### Known Issue
659
+ ### Using `near` with `includes`
1188
660
 
1189
661
  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).
1190
662
 
@@ -1192,7 +664,7 @@ Instead of using `includes` to reduce the number of database queries, try using
1192
664
 
1193
665
  # Pass a :select option to the near scope to get the columns you want.
1194
666
  # Instead of City.near(...).includes(:venues), try:
1195
- City.near("Omaha, NE", 20, :select => "cities.*, venues.*").joins(:venues)
667
+ City.near("Omaha, NE", 20, select: "cities.*, venues.*").joins(:venues)
1196
668
 
1197
669
  # This preload call will normally trigger two queries regardless of the
1198
670
  # number of results; one query on hotels, and one query on administrators.
@@ -1201,6 +673,18 @@ Instead of using `includes` to reduce the number of database queries, try using
1201
673
 
1202
674
  If anyone has a more elegant solution to this problem I am very interested in seeing it.
1203
675
 
676
+ ### Using `near` with objects close to the 180th meridian
677
+
678
+ The `near` method will not look across the 180th meridian to find objects close to a given point. In practice this is rarely an issue outside of New Zealand and certain surrounding islands. This problem does not exist with the zero-meridian. The problem is due to a shortcoming of the Haversine formula which Geocoder uses to calculate distances.
679
+
680
+
681
+ Reporting Issues
682
+ ----------------
683
+
684
+ 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). Please describe as specifically as you can what behavior you are seeing (eg: an error message? a nil return value?).
685
+
686
+ 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.
687
+
1204
688
 
1205
689
  Contributing
1206
690
  ------------
@@ -1219,4 +703,4 @@ For all contributions, please respect the following guidelines:
1219
703
  * 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.
1220
704
 
1221
705
 
1222
- Copyright (c) 2009-15 Alex Reisner, released under the MIT license
706
+ Copyright (c) 2009-18 Alex Reisner, released under the MIT license.