geocoder 1.6.7 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +312 -203
- data/lib/geocoder/cache.rb +5 -1
- data/lib/geocoder/configuration.rb +1 -0
- data/lib/geocoder/ip_address.rb +6 -0
- data/lib/geocoder/lookup.rb +15 -2
- data/lib/geocoder/lookups/amazon_location_service.rb +53 -0
- data/lib/geocoder/lookups/bing.rb +1 -1
- data/lib/geocoder/lookups/geoapify.rb +72 -0
- data/lib/geocoder/lookups/geoip2.rb +4 -0
- data/lib/geocoder/lookups/ip2location.rb +10 -6
- data/lib/geocoder/lookups/ipqualityscore.rb +50 -0
- data/lib/geocoder/lookups/melissa_street.rb +41 -0
- data/lib/geocoder/lookups/photon.rb +89 -0
- data/lib/geocoder/results/amazon_location_service.rb +57 -0
- data/lib/geocoder/results/esri.rb +5 -2
- data/lib/geocoder/results/geoapify.rb +179 -0
- data/lib/geocoder/results/ipqualityscore.rb +54 -0
- data/lib/geocoder/results/mapbox.rb +10 -4
- data/lib/geocoder/results/melissa_street.rb +46 -0
- data/lib/geocoder/results/photon.rb +119 -0
- data/lib/geocoder/version.rb +1 -1
- metadata +12 -2
data/README.md
CHANGED
@@ -5,7 +5,7 @@ Geocoder
|
|
5
5
|
|
6
6
|
[![Gem Version](https://badge.fury.io/rb/geocoder.svg)](http://badge.fury.io/rb/geocoder)
|
7
7
|
[![Code Climate](https://codeclimate.com/github/alexreisner/geocoder/badges/gpa.svg)](https://codeclimate.com/github/alexreisner/geocoder)
|
8
|
-
[![Build Status](https://travis-ci.
|
8
|
+
[![Build Status](https://travis-ci.com/alexreisner/geocoder.svg?branch=master)](https://travis-ci.com/alexreisner/geocoder)
|
9
9
|
|
10
10
|
Key features:
|
11
11
|
|
@@ -18,9 +18,9 @@ Key features:
|
|
18
18
|
|
19
19
|
Compatibility:
|
20
20
|
|
21
|
-
* Ruby versions: 2.
|
21
|
+
* Ruby versions: 2.1+, and JRuby.
|
22
22
|
* Databases: MySQL, PostgreSQL, SQLite, and MongoDB.
|
23
|
-
* Rails:
|
23
|
+
* Rails: 5.x and 6.x.
|
24
24
|
* Works outside of Rails with the `json` (for MRI) or `json_pure` (for JRuby) gem.
|
25
25
|
|
26
26
|
|
@@ -64,23 +64,29 @@ Basic Search
|
|
64
64
|
|
65
65
|
In its simplest form, Geocoder takes an address and searches for its latitude/longitude coordinates:
|
66
66
|
|
67
|
-
|
68
|
-
|
69
|
-
|
67
|
+
```ruby
|
68
|
+
results = Geocoder.search("Paris")
|
69
|
+
results.first.coordinates
|
70
|
+
# => [48.856614, 2.3522219] # latitude and longitude
|
71
|
+
```
|
70
72
|
|
71
73
|
The reverse is possible too. Given coordinates, it finds an address:
|
72
74
|
|
73
|
-
|
74
|
-
|
75
|
-
|
75
|
+
```ruby
|
76
|
+
results = Geocoder.search([48.856614, 2.3522219])
|
77
|
+
results.first.address
|
78
|
+
# => "Hôtel de Ville, 75004 Paris, France"
|
79
|
+
```
|
76
80
|
|
77
81
|
You can also look up the location of an IP addresses:
|
78
82
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
83
|
+
```ruby
|
84
|
+
results = Geocoder.search("172.56.21.89")
|
85
|
+
results.first.coordinates
|
86
|
+
# => [30.267153, -97.7430608]
|
87
|
+
results.first.country
|
88
|
+
# => "United States"
|
89
|
+
```
|
84
90
|
|
85
91
|
**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).
|
86
92
|
|
@@ -92,30 +98,40 @@ To automatically geocode your objects:
|
|
92
98
|
|
93
99
|
**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:
|
94
100
|
|
95
|
-
|
96
|
-
|
97
|
-
|
101
|
+
```ruby
|
102
|
+
def address
|
103
|
+
[street, city, state, country].compact.join(', ')
|
104
|
+
end
|
105
|
+
```
|
98
106
|
|
99
107
|
**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.)
|
100
108
|
|
101
109
|
**3.** In your model, tell geocoder where to find the object's address:
|
102
110
|
|
103
|
-
|
111
|
+
```ruby
|
112
|
+
geocoded_by :address
|
113
|
+
```
|
104
114
|
|
105
115
|
This adds a `geocode` method which you can invoke via callback:
|
106
116
|
|
107
|
-
|
117
|
+
```ruby
|
118
|
+
after_validation :geocode
|
119
|
+
```
|
108
120
|
|
109
121
|
Reverse geocoding (given lat/lon coordinates, find an address) is similar:
|
110
122
|
|
111
|
-
|
112
|
-
|
123
|
+
```ruby
|
124
|
+
reverse_geocoded_by :latitude, :longitude
|
125
|
+
after_validation :reverse_geocode
|
126
|
+
```
|
113
127
|
|
114
128
|
With any geocoded objects, you can do the following:
|
115
129
|
|
116
|
-
|
117
|
-
|
118
|
-
|
130
|
+
```ruby
|
131
|
+
obj.distance_to([43.9,-98.6]) # distance from obj to point
|
132
|
+
obj.bearing_to([43.9,-98.6]) # bearing from obj to point
|
133
|
+
obj.bearing_from(obj2) # bearing from obj2 to obj
|
134
|
+
```
|
119
135
|
|
120
136
|
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.
|
121
137
|
|
@@ -123,18 +139,24 @@ The `bearing_from/to` methods take a single argument which can be: a `[lat,lon]`
|
|
123
139
|
|
124
140
|
Before you can call `geocoded_by` you'll need to include the necessary module using one of the following:
|
125
141
|
|
126
|
-
|
127
|
-
|
142
|
+
```ruby
|
143
|
+
include Geocoder::Model::Mongoid
|
144
|
+
include Geocoder::Model::MongoMapper
|
145
|
+
```
|
128
146
|
|
129
147
|
### Latitude/Longitude Order in MongoDB
|
130
148
|
|
131
149
|
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:
|
132
150
|
|
133
|
-
|
151
|
+
```ruby
|
152
|
+
obj.to_coordinates # => [37.7941013, -122.3951096] # [lat, lon]
|
153
|
+
```
|
134
154
|
|
135
155
|
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:
|
136
156
|
|
137
|
-
|
157
|
+
```ruby
|
158
|
+
obj.coordinates # => [-122.3951096, 37.7941013] # [lon, lat]
|
159
|
+
```
|
138
160
|
|
139
161
|
So, be careful.
|
140
162
|
|
@@ -142,7 +164,9 @@ So, be careful.
|
|
142
164
|
|
143
165
|
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:
|
144
166
|
|
145
|
-
|
167
|
+
```ruby
|
168
|
+
extend Geocoder::Model::ActiveRecord
|
169
|
+
```
|
146
170
|
|
147
171
|
|
148
172
|
Geospatial Database Queries
|
@@ -152,19 +176,23 @@ Geospatial Database Queries
|
|
152
176
|
|
153
177
|
To find objects by location, use the following scopes:
|
154
178
|
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
179
|
+
```ruby
|
180
|
+
Venue.near('Omaha, NE, US') # venues within 20 miles of Omaha
|
181
|
+
Venue.near([40.71, -100.23], 50) # venues within 50 miles of a point
|
182
|
+
Venue.near([40.71, -100.23], 50, units: :km) # venues within 50 kilometres of a point
|
183
|
+
Venue.geocoded # venues with coordinates
|
184
|
+
Venue.not_geocoded # venues without coordinates
|
185
|
+
```
|
160
186
|
|
161
187
|
With geocoded objects you can do things like this:
|
162
188
|
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
189
|
+
```ruby
|
190
|
+
if obj.geocoded?
|
191
|
+
obj.nearbys(30) # other objects within 30 miles
|
192
|
+
obj.distance_from([40.714,-100.234]) # distance from arbitrary point to object
|
193
|
+
obj.bearing_to("Paris, France") # direction from object to arbitrary point
|
194
|
+
end
|
195
|
+
```
|
168
196
|
|
169
197
|
### For MongoDB-backed models:
|
170
198
|
|
@@ -176,8 +204,10 @@ Geocoding HTTP Requests
|
|
176
204
|
|
177
205
|
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:
|
178
206
|
|
179
|
-
|
180
|
-
|
207
|
+
```ruby
|
208
|
+
# returns Geocoder::Result object
|
209
|
+
result = request.location
|
210
|
+
```
|
181
211
|
|
182
212
|
**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).
|
183
213
|
|
@@ -191,71 +221,80 @@ Geocoder supports a variety of street and IP address geocoding services. The def
|
|
191
221
|
|
192
222
|
To create a Rails initializer with sample configuration:
|
193
223
|
|
194
|
-
|
224
|
+
```sh
|
225
|
+
rails generate geocoder:config
|
226
|
+
```
|
195
227
|
|
196
228
|
Some common options are:
|
197
229
|
|
198
|
-
|
199
|
-
|
230
|
+
```ruby
|
231
|
+
# config/initializers/geocoder.rb
|
232
|
+
Geocoder.configure(
|
233
|
+
# street address geocoding service (default :nominatim)
|
234
|
+
lookup: :yandex,
|
200
235
|
|
201
|
-
|
202
|
-
|
236
|
+
# IP address geocoding service (default :ipinfo_io)
|
237
|
+
ip_lookup: :maxmind,
|
203
238
|
|
204
|
-
|
205
|
-
|
239
|
+
# to use an API key:
|
240
|
+
api_key: "...",
|
206
241
|
|
207
|
-
|
208
|
-
|
242
|
+
# geocoding service request timeout, in seconds (default 3):
|
243
|
+
timeout: 5,
|
209
244
|
|
210
|
-
|
211
|
-
|
245
|
+
# set default units to kilometers:
|
246
|
+
units: :km,
|
212
247
|
|
213
|
-
|
214
|
-
|
248
|
+
# caching (see Caching section below for details):
|
249
|
+
cache: Redis.new,
|
250
|
+
cache_prefix: "..."
|
215
251
|
|
216
|
-
|
217
|
-
|
218
|
-
cache_prefix: "..."
|
219
|
-
|
220
|
-
)
|
252
|
+
)
|
253
|
+
```
|
221
254
|
|
222
255
|
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:
|
223
256
|
|
224
|
-
|
225
|
-
|
257
|
+
```ruby
|
258
|
+
# with Google:
|
259
|
+
Geocoder.search("Middletown", bounds: [[40.6,-77.9], [39.9,-75.9]])
|
260
|
+
```
|
226
261
|
|
227
262
|
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:
|
228
263
|
|
229
|
-
|
230
|
-
|
264
|
+
```ruby
|
265
|
+
# Nominatim's `countrycodes` parameter:
|
266
|
+
Geocoder.search("Rome", params: {countrycodes: "us,ca"})
|
231
267
|
|
232
|
-
|
233
|
-
|
268
|
+
# Google's `region` parameter:
|
269
|
+
Geocoder.search("Rome", params: {region: "..."})
|
270
|
+
```
|
234
271
|
|
235
272
|
### Configuring Multiple Services
|
236
273
|
|
237
274
|
You can configure multiple geocoding services at once by using the service's name as a key for a sub-configuration hash, like this:
|
238
275
|
|
239
|
-
|
276
|
+
```ruby
|
277
|
+
Geocoder.configure(
|
240
278
|
|
241
|
-
|
242
|
-
|
279
|
+
timeout: 2,
|
280
|
+
cache: Redis.new,
|
243
281
|
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
282
|
+
yandex: {
|
283
|
+
api_key: "...",
|
284
|
+
timeout: 5
|
285
|
+
},
|
248
286
|
|
249
|
-
|
250
|
-
|
251
|
-
|
287
|
+
baidu: {
|
288
|
+
api_key: "..."
|
289
|
+
},
|
252
290
|
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
291
|
+
maxmind: {
|
292
|
+
api_key: "...",
|
293
|
+
service: :omni
|
294
|
+
}
|
257
295
|
|
258
|
-
|
296
|
+
)
|
297
|
+
```
|
259
298
|
|
260
299
|
Lookup-specific settings override global settings so, in this example, the timeout for all lookups is 2 seconds, except for Yandex which is 5.
|
261
300
|
|
@@ -267,12 +306,16 @@ Performance and Optimization
|
|
267
306
|
|
268
307
|
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:
|
269
308
|
|
270
|
-
|
309
|
+
```ruby
|
310
|
+
add_index :table, [:latitude, :longitude]
|
311
|
+
```
|
271
312
|
|
272
313
|
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:
|
273
314
|
|
274
|
-
|
275
|
-
|
315
|
+
```ruby
|
316
|
+
include Geocoder::Model::Mongoid
|
317
|
+
geocoded_by :address, skip_index: true
|
318
|
+
```
|
276
319
|
|
277
320
|
### Avoiding Unnecessary API Requests
|
278
321
|
|
@@ -283,13 +326,17 @@ Geocoding only needs to be performed under certain conditions. To avoid unnecess
|
|
283
326
|
|
284
327
|
The exact code will vary depending on the method you use for your geocodable string, but it would be something like this:
|
285
328
|
|
286
|
-
|
329
|
+
```ruby
|
330
|
+
after_validation :geocode, if: ->(obj){ obj.address.present? and obj.address_changed? }
|
331
|
+
```
|
287
332
|
|
288
333
|
### Caching
|
289
334
|
|
290
335
|
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:
|
291
336
|
|
292
|
-
|
337
|
+
```ruby
|
338
|
+
Geocoder.configure(cache: Redis.new)
|
339
|
+
```
|
293
340
|
|
294
341
|
This example uses Redis, but the cache store can be any object that supports these methods:
|
295
342
|
|
@@ -302,18 +349,22 @@ Even a plain Ruby hash will work, though it's not a great choice (cleared out wh
|
|
302
349
|
|
303
350
|
You can also set a custom prefix to be used for cache keys:
|
304
351
|
|
305
|
-
|
352
|
+
```ruby
|
353
|
+
Geocoder.configure(cache_prefix: "...")
|
354
|
+
```
|
306
355
|
|
307
356
|
By default the prefix is `geocoder:`
|
308
357
|
|
309
358
|
If you need to expire cached content:
|
310
359
|
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
360
|
+
```ruby
|
361
|
+
Geocoder::Lookup.get(Geocoder.config[:lookup]).cache.expire(:all) # expire cached results for current Lookup
|
362
|
+
Geocoder::Lookup.get(:nominatim).cache.expire("http://...") # expire cached result for a specific URL
|
363
|
+
Geocoder::Lookup.get(:nominatim).cache.expire(:all) # expire cached results for Google Lookup
|
364
|
+
# expire all cached results for all Lookups.
|
365
|
+
# Be aware that this methods spawns a new Lookup object for each Service
|
366
|
+
Geocoder::Lookup.all_services.each{|service| Geocoder::Lookup.get(service).cache.expire(:all)}
|
367
|
+
```
|
317
368
|
|
318
369
|
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.
|
319
370
|
|
@@ -327,44 +378,55 @@ Advanced Model Configuration
|
|
327
378
|
|
328
379
|
You are not stuck with the `latitude` and `longitude` database column names (with ActiveRecord) or the `coordinates` array (Mongo) for storing coordinates. For example:
|
329
380
|
|
330
|
-
|
331
|
-
|
381
|
+
```ruby
|
382
|
+
geocoded_by :address, latitude: :lat, longitude: :lon # ActiveRecord
|
383
|
+
geocoded_by :address, coordinates: :coords # MongoDB
|
384
|
+
```
|
332
385
|
|
333
386
|
For reverse geocoding, you can specify the attribute where the address will be stored. For example:
|
334
387
|
|
335
|
-
|
336
|
-
|
388
|
+
```ruby
|
389
|
+
reverse_geocoded_by :latitude, :longitude, address: :loc # ActiveRecord
|
390
|
+
reverse_geocoded_by :coordinates, address: :street_address # MongoDB
|
391
|
+
```
|
337
392
|
|
338
393
|
To specify geocoding parameters in your model:
|
339
394
|
|
340
|
-
|
395
|
+
```ruby
|
396
|
+
geocoded_by :address, params: {region: "..."}
|
397
|
+
```
|
341
398
|
|
342
399
|
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:
|
343
400
|
|
344
|
-
|
401
|
+
```ruby
|
402
|
+
geocoded_by :address, lookup: lambda{ |obj| obj.geocoder_lookup }
|
345
403
|
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
404
|
+
def geocoder_lookup
|
405
|
+
if country_code == "RU"
|
406
|
+
:yandex
|
407
|
+
elsif country_code == "CN"
|
408
|
+
:baidu
|
409
|
+
else
|
410
|
+
:nominatim
|
411
|
+
end
|
412
|
+
end
|
413
|
+
```
|
355
414
|
|
356
415
|
### Custom Result Handling
|
357
416
|
|
358
417
|
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:
|
359
418
|
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
419
|
+
```ruby
|
420
|
+
reverse_geocoded_by :latitude, :longitude do |obj,results|
|
421
|
+
if geo = results.first
|
422
|
+
obj.city = geo.city
|
423
|
+
obj.zipcode = geo.postal_code
|
424
|
+
obj.country = geo.country_code
|
425
|
+
end
|
426
|
+
end
|
427
|
+
|
428
|
+
after_validation :reverse_geocode
|
429
|
+
```
|
368
430
|
|
369
431
|
Every `Geocoder::Result` object, `result`, provides the following data:
|
370
432
|
|
@@ -390,23 +452,26 @@ You can apply both forward and reverse geocoding to the same model (i.e. users c
|
|
390
452
|
|
391
453
|
For example:
|
392
454
|
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
455
|
+
```ruby
|
456
|
+
class Venue
|
457
|
+
# build an address from street, city, and state attributes
|
458
|
+
geocoded_by :address_from_components
|
397
459
|
|
398
|
-
|
399
|
-
|
400
|
-
|
460
|
+
# store the fetched address in the full_address attribute
|
461
|
+
reverse_geocoded_by :latitude, :longitude, address: :full_address
|
462
|
+
end
|
463
|
+
```
|
401
464
|
|
402
465
|
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:
|
403
466
|
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
467
|
+
```ruby
|
468
|
+
class Venue
|
469
|
+
geocoded_by :address,
|
470
|
+
latitude: :fetched_latitude,
|
471
|
+
longitude: :fetched_longitude
|
472
|
+
reverse_geocoded_by :latitude, :longitude
|
473
|
+
end
|
474
|
+
```
|
410
475
|
|
411
476
|
|
412
477
|
Advanced Database Queries
|
@@ -416,21 +481,29 @@ Advanced Database Queries
|
|
416
481
|
|
417
482
|
The default `near` search looks for objects within a circle. To search within a doughnut or ring use the `:min_radius` option:
|
418
483
|
|
419
|
-
|
484
|
+
```ruby
|
485
|
+
Venue.near("Austin, TX", 200, min_radius: 40)
|
486
|
+
```
|
420
487
|
|
421
488
|
To search within a rectangle (note that results will *not* include `distance` and `bearing` attributes):
|
422
489
|
|
423
|
-
|
424
|
-
|
425
|
-
|
490
|
+
```ruby
|
491
|
+
sw_corner = [40.71, 100.23]
|
492
|
+
ne_corner = [36.12, 88.65]
|
493
|
+
Venue.within_bounding_box(sw_corner, ne_corner)
|
494
|
+
```
|
426
495
|
|
427
496
|
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:
|
428
497
|
|
429
|
-
|
498
|
+
```ruby
|
499
|
+
Venue.near([40.71, 99.23], :effective_radius)
|
500
|
+
```
|
430
501
|
|
431
502
|
If you store multiple sets of coordinates for each object, you can specify latitude and longitude columns to use for a search:
|
432
503
|
|
433
|
-
|
504
|
+
```ruby
|
505
|
+
Venue.near("Paris", 50, latitude: :secondary_latitude, longitude: :secondary_longitude)
|
506
|
+
```
|
434
507
|
|
435
508
|
### Distance and Bearing
|
436
509
|
|
@@ -450,9 +523,11 @@ Results are automatically sorted by distance from the search point, closest to f
|
|
450
523
|
|
451
524
|
You can convert these to compass point names via provided method:
|
452
525
|
|
453
|
-
|
454
|
-
|
455
|
-
|
526
|
+
```ruby
|
527
|
+
Geocoder::Calculations.compass_point(355) # => "N"
|
528
|
+
Geocoder::Calculations.compass_point(45) # => "NE"
|
529
|
+
Geocoder::Calculations.compass_point(208) # => "SW"
|
530
|
+
```
|
456
531
|
|
457
532
|
_Note: when running queries on SQLite, `distance` and `bearing` are provided for consistency only. They are not very accurate._
|
458
533
|
|
@@ -464,13 +539,15 @@ Geospatial Calculations
|
|
464
539
|
|
465
540
|
The `Geocoder::Calculations` module contains some useful methods:
|
466
541
|
|
467
|
-
|
468
|
-
|
469
|
-
|
542
|
+
```ruby
|
543
|
+
# find the distance between two arbitrary points
|
544
|
+
Geocoder::Calculations.distance_between([47.858205,2.294359], [40.748433,-73.985655])
|
545
|
+
=> 3619.77359999382 # in configured units (default miles)
|
470
546
|
|
471
|
-
|
472
|
-
|
473
|
-
|
547
|
+
# find the geographic center (aka center of gravity) of objects or points
|
548
|
+
Geocoder::Calculations.geographic_center([city1, city2, [40.22,-73.99], city4])
|
549
|
+
=> [35.14968, -90.048929]
|
550
|
+
```
|
474
551
|
|
475
552
|
See [the code](https://github.com/alexreisner/geocoder/blob/master/lib/geocoder/calculations.rb) for more!
|
476
553
|
|
@@ -480,19 +557,27 @@ Batch Geocoding
|
|
480
557
|
|
481
558
|
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:
|
482
559
|
|
483
|
-
|
560
|
+
```sh
|
561
|
+
rake geocode:all CLASS=YourModel
|
562
|
+
```
|
484
563
|
|
485
564
|
If you need reverse geocoding instead, call the task with REVERSE=true:
|
486
565
|
|
487
|
-
|
566
|
+
```sh
|
567
|
+
rake geocode:all CLASS=YourModel REVERSE=true
|
568
|
+
```
|
488
569
|
|
489
570
|
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:
|
490
571
|
|
491
|
-
|
572
|
+
```sh
|
573
|
+
rake geocode:all CLASS=YourModel SLEEP=0.25 BATCH=100
|
574
|
+
```
|
492
575
|
|
493
576
|
To avoid exceeding per-day limits you can add a `LIMIT` option. However, this will ignore the `BATCH` value, if provided.
|
494
577
|
|
495
|
-
|
578
|
+
```sh
|
579
|
+
rake geocode:all CLASS=YourModel LIMIT=1000
|
580
|
+
```
|
496
581
|
|
497
582
|
|
498
583
|
Testing
|
@@ -500,42 +585,50 @@ Testing
|
|
500
585
|
|
501
586
|
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 and/or `:ip_lookup`
|
502
587
|
|
503
|
-
|
588
|
+
```ruby
|
589
|
+
Geocoder.configure(lookup: :test, ip_lookup: :test)
|
590
|
+
```
|
504
591
|
|
505
592
|
Add stubs to define the results that will be returned:
|
506
593
|
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
594
|
+
```ruby
|
595
|
+
Geocoder::Lookup::Test.add_stub(
|
596
|
+
"New York, NY", [
|
597
|
+
{
|
598
|
+
'coordinates' => [40.7143528, -74.0059731],
|
599
|
+
'address' => 'New York, NY, USA',
|
600
|
+
'state' => 'New York',
|
601
|
+
'state_code' => 'NY',
|
602
|
+
'country' => 'United States',
|
603
|
+
'country_code' => 'US'
|
604
|
+
}
|
605
|
+
]
|
606
|
+
)
|
607
|
+
```
|
519
608
|
|
520
609
|
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:
|
521
610
|
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
611
|
+
```ruby
|
612
|
+
Geocoder::Lookup::Test.set_default_stub(
|
613
|
+
[
|
614
|
+
{
|
615
|
+
'coordinates' => [40.7143528, -74.0059731],
|
616
|
+
'address' => 'New York, NY, USA',
|
617
|
+
'state' => 'New York',
|
618
|
+
'state_code' => 'NY',
|
619
|
+
'country' => 'United States',
|
620
|
+
'country_code' => 'US'
|
621
|
+
}
|
622
|
+
]
|
623
|
+
)
|
624
|
+
```
|
534
625
|
|
535
626
|
You may also delete a single stub, or reset all stubs _including the default stub_:
|
536
627
|
|
537
|
-
|
538
|
-
|
628
|
+
```ruby
|
629
|
+
Geocoder::Lookup::Test.delete_stub('New York, NY')
|
630
|
+
Geocoder::Lookup::Test.reset
|
631
|
+
```
|
539
632
|
|
540
633
|
Notes:
|
541
634
|
|
@@ -548,21 +641,27 @@ Error Handling
|
|
548
641
|
|
549
642
|
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:
|
550
643
|
|
551
|
-
|
644
|
+
```ruby
|
645
|
+
Geocoder.configure(always_raise: [SocketError, Timeout::Error])
|
646
|
+
```
|
552
647
|
|
553
648
|
You can also do this to raise all exceptions:
|
554
649
|
|
555
|
-
|
650
|
+
```ruby
|
651
|
+
Geocoder.configure(always_raise: :all)
|
652
|
+
```
|
556
653
|
|
557
654
|
The raise-able exceptions are:
|
558
655
|
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
656
|
+
```ruby
|
657
|
+
SocketError
|
658
|
+
Timeout::Error
|
659
|
+
Geocoder::OverQueryLimitError
|
660
|
+
Geocoder::RequestDenied
|
661
|
+
Geocoder::InvalidRequest
|
662
|
+
Geocoder::InvalidApiKey
|
663
|
+
Geocoder::ServiceUnavailable
|
664
|
+
```
|
566
665
|
|
567
666
|
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.
|
568
667
|
|
@@ -572,15 +671,17 @@ Command Line Interface
|
|
572
671
|
|
573
672
|
When you install the Geocoder gem it adds a `geocode` command to your shell. You can search for a street address, IP address, postal code, coordinates, etc just like you can with the Geocoder.search method for example:
|
574
673
|
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
674
|
+
```sh
|
675
|
+
$ geocode 29.951,-90.081
|
676
|
+
Latitude: 29.952211
|
677
|
+
Longitude: -90.080563
|
678
|
+
Full address: 1500 Sugar Bowl Dr, New Orleans, LA 70112, USA
|
679
|
+
City: New Orleans
|
680
|
+
State/province: Louisiana
|
681
|
+
Postal code: 70112
|
682
|
+
Country: United States
|
683
|
+
Map: http://maps.google.com/maps?q=29.952211,-90.080563
|
684
|
+
```
|
584
685
|
|
585
686
|
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.
|
586
687
|
|
@@ -616,8 +717,10 @@ Troubleshooting
|
|
616
717
|
|
617
718
|
If you get one of these errors:
|
618
719
|
|
619
|
-
|
620
|
-
|
720
|
+
```ruby
|
721
|
+
uninitialized constant Geocoder::Model::Mongoid
|
722
|
+
uninitialized constant Geocoder::Model::Mongoid::Mongo
|
723
|
+
```
|
621
724
|
|
622
725
|
you should check your Gemfile to make sure the Mongoid gem is listed _before_ Geocoder. If Mongoid isn't loaded when Geocoder is initialized, Geocoder will not load support for Mongoid.
|
623
726
|
|
@@ -642,13 +745,17 @@ For the most part, the speed of geocoding requests has little to do with the Geo
|
|
642
745
|
|
643
746
|
Take a look at the server's raw response. You can do this by getting the request URL in an app console:
|
644
747
|
|
645
|
-
|
748
|
+
```ruby
|
749
|
+
Geocoder::Lookup.get(:nominatim).query_url(Geocoder::Query.new("..."))
|
750
|
+
```
|
646
751
|
|
647
752
|
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.
|
648
753
|
|
649
754
|
You can also fetch the response in the console:
|
650
755
|
|
651
|
-
|
756
|
+
```ruby
|
757
|
+
Geocoder::Lookup.get(:nominatim).send(:fetch_raw_data, Geocoder::Query.new("..."))
|
758
|
+
```
|
652
759
|
|
653
760
|
|
654
761
|
Known Issues
|
@@ -664,14 +771,16 @@ You cannot use the `near` scope with another scope that provides an `includes` o
|
|
664
771
|
|
665
772
|
Instead of using `includes` to reduce the number of database queries, try using `joins` with either the `:select` option or a call to `preload`. For example:
|
666
773
|
|
667
|
-
|
668
|
-
|
669
|
-
|
774
|
+
```ruby
|
775
|
+
# Pass a :select option to the near scope to get the columns you want.
|
776
|
+
# Instead of City.near(...).includes(:venues), try:
|
777
|
+
City.near("Omaha, NE", 20, select: "cities.*, venues.*").joins(:venues)
|
670
778
|
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
779
|
+
# This preload call will normally trigger two queries regardless of the
|
780
|
+
# number of results; one query on hotels, and one query on administrators.
|
781
|
+
# Instead of Hotel.near(...).includes(:administrator), try:
|
782
|
+
Hotel.near("London, UK", 50).joins(:administrator).preload(:administrator)
|
783
|
+
```
|
675
784
|
|
676
785
|
If anyone has a more elegant solution to this problem I am very interested in seeing it.
|
677
786
|
|