Tagged Questions
0
votes
1answer
80 views
How to automatically show user's city with Geocoder from a list of cities
I am trying to implement a functionality that takes the visitor's IP address and returns a city name in the header of the site.
However, the city needs to be pulled from a pre-populated list of ...
0
votes
1answer
133 views
Validate Geolocation latitude and longitude
I have a Ruby on Rails model Camping with #latitude and #longitude attributes.
This should be validated. It must be validated so that:
The values are correctly formatted. E.g. 48.8582 and 2.2945 ...
2
votes
2answers
114 views
Ruby Geocoder how to set a minimum .near distance
Using Alex Reisner's Ruby Geocoder and finding the .near method very useful. One question we have is how can we set it so that we can search for objects between distance x and distance y from the ...
1
vote
1answer
72 views
Rails Geocoding using address city and state
I'm using the rails geocoder gem and have the following in my location model
geocoded_by :address
but my location has other attributes such as city, state, and country which affect the outputted ...
0
votes
1answer
102 views
Rails geocoding/geolocation options for 'find near me'
I am creating an app where pet rescue centres can add pets that need homes, but I would like to add a sort option for visitors to the site that orders pets by location closest to them (either by IP ...
0
votes
1answer
104 views
Create two object at the same time
I am trying to create two objects at the same time, but for some reason my second object's fields are blank.
The models are:
Users: id, name, last, email, password ...
Locations: address, longitude, ...
1
vote
1answer
64 views
Rails two controller in one form
I am wondering if its possible to keep the relationship and build two controllers in the same time?
Let me explain I have two models and the relationship is has follow:
Users, Locations
Users has ...
0
votes
2answers
155 views
Search for user query string for address in database
I have a Rails app on a Postgres database and I need to have a search field for the user to enter a string and look up in the database for possible address matches (within a city). In the database I ...
0
votes
1answer
49 views
Finding nearby addreses by geo location in rails
I have stored users - including their addresses - and need to find all users who live within a certain distance of a specific location.
I am using geocoder and have stored longitude and latitude in ...
1
vote
1answer
279 views
Geocoding addresses with geocoder gem and PostGIS database with RGeo
I am trying to use the geocoder gem for looking up addresses and coordinates. I want it to work together with my PostGIS spatial database and the RGeo gem, which uses POINT features instead of saving ...
0
votes
3answers
201 views
Setting single coordinates for RGeo Point
RGeo provides built in methods for POINT features, for example getter methods lat() and lon() to pull latitude and longitude values from a POINT object. Unfortunately, these don't work as setters. For ...
0
votes
1answer
104 views
Gmaps4rails - Map throwing JS error on first load when JSON == “[]”
I am using the geocoder gem's .nearby method to query my DB and return nearby location objects.
Question 1: When loading the map for the first time, no markers are passed to the JS, and it does not ...
2
votes
0answers
155 views
geocoder: distance sortable index
I'm developing a rails app where Users are having many Items. The users are geocoded thanks to another model I called Place that is relying on the ruby geocoder gem.
class Place < ...
0
votes
0answers
66 views
Is it possible to use different service providers for different functions using Ruby on Rails geocoder gem?
I would like my application to be able to generate latitude/longitude coordinates for zip codes using a free service like geocoder.ca, but would like to use google as the service provider for ...
0
votes
0answers
22 views
Retrieve Date from a Geography point [duplicate]
Possible Duplicate:
Timezone from geolocation
I found some identical questions, but pretty old.
I would like to know if it was possible in rails/ruby to retrieve GMT/UTC date from a given ...
0
votes
1answer
288 views
How do I calculate the distance by road between two geographic locations using Ruby(on Rails)?
I have set up a system that calculates the distance between two locations using http://www.rubygeocoder.com/, however, to be able to calculate the (tax-deductible) kilometer-costs (e.g travel ...
0
votes
1answer
66 views
Geocoding with rails
I am wondering what the best model, solution to implement a geolocation in my system. Here let me explain my models
User #contain information such has first name, last...
Article #contain information ...
1
vote
0answers
188 views
Rails inner join combined with geocoding gem
I have 2 related rails models
class Location < ActiveRecord::Base
has_many :rates
geocoded_by ....
end
class Rate < ActiveRecord::Base
belongs_to :location
end
I am using the geocoder ...
5
votes
1answer
501 views
Does Geocoder gem work with google API key?
I am using ruby geocoder gem for my project and as the project is growing I am starting to look into connecting to the Google API key. After adding this to the project:
Geocoder.configure do |config|
...
0
votes
3answers
317 views
Proximity searches in Rails
What proximity search options are there for Rails? (Perhaps with pros and cons of each?)
Is a postcode database the way to go?
or using Geocoding with a gem such as Geocoder?
Are there any best ...
0
votes
0answers
121 views
Can I use 'near' method in Geocoder to check two models?
I have 2 models: Business and Program.
class Business < ActiveRecord::Base
has_many :programs
class Program < ActiveRecord::Base
belongs_to :business
Businesses have many programs. Both ...
1
vote
1answer
44 views
Accessing Rails child objects within Javascript
I'm very new to rails, so please bear with me. I haven't quite grasped all the "magic" just yet.
Basically I need to access Location objects in Javascript, which all contain 0-N Coordinates. I'm ...
0
votes
1answer
951 views
Rails - How to use a geocoder to get the current location via IP
I use geocode to get country, state and city via IP, but Freegeoip hasn't a good accuracy. I configured geocoder to use google. example:
geocoder.rb
Geocoder.configure do |config|
config.lookup = ...
0
votes
1answer
769 views
Using Geocode Ruby Gem for User Address input
I've using the Geocode Ruby Gem to convert the users input of zip/country into a nicely formated location (eg. Los Angeles, CA, USA). I also want to use the geocoding in the future (just in case you ...
0
votes
1answer
474 views
How to do a city/state/country code lookup based on zip/country input by the user?
Would there be a way to do a city/state/country code lookup based on zip/country input by the user? My site will be international, hence the reason for asking the user to input their country.
I'm ...
0
votes
1answer
179 views
Accurate and free geocoding service for ip geolocation?
What is a good and free geocoding service that reliably determines the city of a given ip? I'd like there to be a Ruby gem I can plug it into.
I'm currently using the Geocoder gem. Is there any way I ...
1
vote
1answer
357 views
How to geocode where possible and skip errors with gmaps4rails?
I'm using gmaps4rails awesome gem in my current project and have to import more than a thousand objects in the DB that should act as gmappable.
However not all of them have correct addresses! So when ...
0
votes
1answer
360 views
Does the Geocoder Near method make geocode api calls to google
I'm storing all my location info (longitude and latitudes) in my database by getting the long/lat from client side geocoding to avoid the 2500 max geocoding daily limit.
I just want to confirm that ...
0
votes
1answer
61 views
Can Texticle do geolocation search too?
I don't fully understand if Texticle search for PostgreSQL can be used with geolocation searching. I ask this because I need both Full-text searching and the ability to sort by distance and find near ...
0
votes
1answer
472 views
Rails 3.1 Geocoding not working on Heroku
I have a Rink model with this code:
geocoded_by :full_street_address
after_validation :geocode
...
def full_street_address
[address, city, 'Ontario', 'Canada'].compact.join(', ')
end
And then ...
0
votes
1answer
159 views
How can I construct this complex ActiveRecord query?
I have a bus model and an event model. Each bus is going to an event:
class Bus < ActiveRecord::Base
belongs_to :event
belongs_to :origin
end
class Event < ActiveRecord::Base
has_many ...
1
vote
2answers
269 views
geocoding rails
I am trying to geocode multiple addresses in a model using either geokit or geocoder and I can't get either on of the gems to work as I want them to. Here is the code that I am applying to my model ...
0
votes
2answers
460 views
Rails geocoder gem issues
I am using the geocoder gem and I need to code a start and end address for a model, however I am not sure if I can accomplish this using this gem and if I can whether I am doing it correctly. If this ...
0
votes
1answer
95 views
passing geocoder information to the views?
I am using geocoder gem to get location information about the user. The issue I am facing is how to pass this information to the views and the application as a variable?
I do not want to query the ...
3
votes
5answers
368 views
how to limit the number of location with rubygeocoder gem?
I have a location object so location.nearbys get all the locations near location. But I want to limit the results to 5. That I am doing with location.nearbys.limit(5) , but the problem is when there ...
1
vote
1answer
272 views
Implementing Location Checkin Rails
I am trying to implement location "checkins" in my Rails 3 application.
For example: User searches for a place and we can find the latitude and longitude of the that place and allow the user to ...
0
votes
2answers
166 views
Using a Rails scope as a proxy for the scope of a related object
In our application we have two models, Stores and Offers.
Stores are geocoded using the 'geocoder' gem
http://rubydoc.info/gems/geocoder
class Store < ActiveRecord::Base
geocoded_by :address
...
1
vote
2answers
1k views
How do I query objects near a point with Ruby Geocoder/Mongoid?
I am trying to do something like this:
if params[:q]
loc = Geocoder.search(params[:q])[0]
logger.info loc.coordinates
@places = Place.near(loc.coordinates).paginate(:per_page => 20, :page ...
3
votes
3answers
1k views
Using geocoder on production server
I am developing a location based application. And i need a trustable source for getting geolocation.
right now i am using this geocoder plugin.
and i am getting this error:-
Geocoding API not ...
0
votes
1answer
408 views
rails geocoder near scope
Is there a way to get, for example, ten nearest places, no matter how big distance from object is?
Obj.near(@address, 10)
And this scope should return 10 nearest places, not objects within radius ...
1
vote
1answer
332 views
Default site language based on the ip with rails 3
I've a multilanguage site, based on the localization of the visitor (his ip), I'll use one language or another (setting the I18n.locale).
i.e: for a visitor from France, the default language will be ...
0
votes
1answer
171 views
Graticule Geocoding Problem
I'm attempting to use Graticule to geocode an address but I'm running into an annoying problem. When geocoding an address in the US, the region attribute from the location is the two letter ...
1
vote
1answer
998 views
Use MySQL spatial ability or lat-long lookups for Rails 3 “Store Locator” functionality?
I have a Rails 3 application and I have a couple of use cases to support.
Store Locator given an address or zip code.
Graphical display of where users are originating from.
On the first one, I ...
18
votes
5answers
10k views
IP address in rails
I have Rails 2.3.8, Ruby 1.8.7, Mongrel Web Server and MySQL database.
I need to find the IP address but I am facing problems. I am in the development mode.
I googled and found code, that its simple ...
1
vote
2answers
2k views
Ruby geocoding library compatible with latest Google maps, Yahoo maps, Bing APIs
What Ruby / Rails geocoding library is compatible with (can fetch data from):
latest Yahoo PlaceFinder api
latest Google V3 API
Bing maps API
Please also comment on the compatibility with Rails 3 ...
1
vote
1answer
710 views
Geocoding an IP Address in Rails
I have GeoKit setup and in general I'm really happy with it.
But I recently tried Geocoding IP Addresses with it and its default results (provided by hostip.info it looks like) don't seem very ...
2
votes
3answers
5k views
Rails geocoding gems
I've used GeoKit and acts_as_geocodable in the past. I like GeoKit, but its missing nicer features like named_scopes. I'm not a huge fan of acts_as_geocodable because it duplicates address data into ...
0
votes
3answers
196 views
What is the best way to geocode large sets as a background process in Ruby on Rails?
I am implementing a contact importer and will be geocoding the contacts that are imported. If a user imports 1000 contacts, geocoding is way too slow. Essentially I would like to start a background ...
2
votes
2answers
886 views
parse google geocode
I am using the google geocoding api in my app but im finding it hard to parse the returned address information reliably. Im hoping someone has a library or way of parsing the info to prevent me from ...
1
vote
3answers
81 views
New to Rails Help
I have a database query that is returning to a variable which contains an address.
@terminal_address = Terminal.find(:all, :select => :full_address ,:conditions => ["id = ?" , params[:id]])
...

