Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
315 views

Using rails gem geokit sort by distance and pagination?

I come across a small issue in my app. I'm currently using geokit to find objects near a given location, and I use the sort_by_distance_from on the found set. See below: @find = Item.find(:all, ...
4
votes
6answers
4k views

Geokit and rails 3

I am using the geokit gem and plugin with rails 3. It seems there is a known issue with them, which can be seen here http://github.com/andre/geokit-rails/issues#issue/15 Now, I tried to follow the ...
4
votes
1answer
531 views

Is mysql using my index or not, and can the performance of geokit be improved?

I'm using geokit (acts_as_mappable) in a rails application, and the performance of radial or bounds searches degrades considerably when there is a large number of models (I've tried with 1-2million ...
3
votes
1answer
398 views

Learning geokit-rails3

I'm searching for complete explanations about how to use geokit-rails3. I've found loads for rails2 but not for rails3. Does any of you have a simple and complete tutorial about how to display a ...
3
votes
1answer
171 views

using geokit or other ruby gem to calculate the center of a series of geo coordinates

I've been using the geokit and geokit-rails gem for rails for awhile but one question I haven't found answered is how to find the calculated aggregate center for a collection of points. I know how to ...
3
votes
4answers
2k views

Change value of request.remote_ip in Ruby on Rails

For test purposes I want to change the return value of request.remote_ip. While being on my development machine it returns always 127.0.0.1 as it should but I would like to give myself different fake ...
2
votes
2answers
88 views

Put this text in array

I wanna put res into an array[google, Rue Abdallaye, null, Trarza, null, 18.0951362, -15.9806735, MR, true]. How do I do that? Thanks. >> puts res Provider: google Street: Rue Abdallaye City: ...
2
votes
2answers
102 views

geokit — using raw lat lng in rails

I've been using GeoKit for Rails and it works great. However, I noticed that when pulling alot of listings it is VERY slow in loading. I'm wondering if it is because it is querying google or some ...
2
votes
1answer
204 views

Distance and range calculation in Geokit/Geocoder

I have the following issue. Consider 2 models with attributes: Place - lat - lng - range User - lat - lng Places have location and some range defined (think about it as area of shipping). User ...
2
votes
1answer
144 views

Find users in a specific location by querying their latest status update location

I'm working on a Rails application, which is very similar to Twitter, that is used to track members of a teams and their updated status through status updates called 'pings'. Twitter calls these ...
2
votes
1answer
270 views

Location based search in Rails using geokit problem

I have a rather complex (or so it seems) geokit based location search on my site. In short, I have a model named "Campaigns" that belongs to another model called "Businesses". When I am searching on ...
2
votes
3answers
637 views

Combine arrays of conditions in Rails

I'm using the Rails3 beta, will_paginate gem, and the geokit gem & plugin. As the geokit-rails plugin, doesn't seem to support Rails3 scopes (including the :origin symbol is the issue), I need to ...
2
votes
2answers
396 views

Rails: Converting from MySQL to PostGres breaks Geokit Distance Calculations?

I recently switched my database from MySQL to PostGres. I also use GeoKit. When I started my app up with the new database already seeded, I get the following error: PGError: ERROR: function ...
2
votes
1answer
423 views

Rails ActiveRecord Problem With Complex Join - Select Does Not Work

I have two model objects: Event Venue Events have Venues. Venues can have 1..* events. Venues have a location, a lat and long, which I use with the Geokit Rails plugin. Here's what these models ...
2
votes
2answers
411 views

Floating point calculations with latitudes and longitudes of varying precisions

Background: I receive a long and lat as parameters to a web service. They are typically up to 6 decimal places. When a new request is received, I calculate the distance between the last recorded loc ...
2
votes
1answer
376 views

Make GeoKit play nicely with my Address class

My Address class has a geocode class method that returns an array of address objects derived from geocoding the method's parameter (if the geocoding results in an exact match, the array will have one ...
1
vote
2answers
87 views

Geokit plus Rails 3.1.1, lat and lon issue.

I am using geokit-rails3 gem to find products in all colleges within range of particular college. A college has_many products and a product belong to college, there is another category model which ...
1
vote
2answers
95 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 ...
1
vote
1answer
289 views

Rails 3.1.0, geokit, with error acts_as_mappable

I am getting the undefined local variable or method `acts_as_mappable' error when using geokit, and after tons of Goggling and attempts, I cannot seem to be able correct the problem. Basically, I ...
1
vote
1answer
86 views

rails geokit - get travel/commute time

Is there a way to use geokit in rails to get the estimated travel time between two locations? Right now, I'm simply showing the distance away but I think a better approach would be to show '15 minutes ...
1
vote
0answers
117 views

Rails 3 Geokit Order not working

I have added GEOkit rails gem to my website and i am trying to do the following query. @suppliers = Supplier.within(9999, :origin => @current_address).order("distance ...
1
vote
1answer
284 views

undefined method 'merge_conditions' for geokit-rails

I am playing around with Geokit-Rails (https://github.com/andre/geokit-rails) and I need to find all records within 10 miles of an origin. Here's my error: Company.find(:all, :origin=>'New York, ...
1
vote
0answers
79 views

Geokit query with multiple models involved

My database structure consists of Store, Book, BookStore and Address as below. class Store < ActiveRecord::Base has_many :book_stores has_many :books, :through => :book_stores has_many ...
1
vote
1answer
112 views

'distance' field gets dropped when using Geokit with acts_as_mappable :through

We know that the distance field gets dropped when using the Geokit gem in Rails with acts_as_mappable :through model class. I wonder if there's a way to work around this to get the distance field ...
1
vote
1answer
421 views

Geocoder vs Geokit for finding objects within X miles of a latitude/longitude coordinate?

Newbie to Rails. I am building an app where users create events at a certain location, and plan to host on heroku. Other users can view events taking place within x miles of their latitude/longitude. ...
1
vote
1answer
211 views

Rails Location based search not working on Heroku

Recently I deployed my application on Heroku. I'm using Geokit to search events, based on user's location. @events = Event.all(:origin => [@location.lat, @location.lng], :within => 5, :conditions => ...
1
vote
1answer
146 views

Assigning a polymorphic acts_as_mappable model in the Rails console

I have a polymorphic Location model: class Location < ActiveRecord::Base acts_as_mappable before_validation :geocode_address, :on => :create belongs_to :locatable, :polymorphic => true ...
1
vote
1answer
433 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 ...
1
vote
1answer
309 views

RoR - Geokit plugin: why Location.find is giving me back an empty array? (Location is a model that “acts_as_mappable”)

I have installed both geokit gem and geokit-rails plugin. I configured the plugin as shown here: http://github.com/andre/geokit-rails . Then I generated a new model - Location, which looks like this: ...
1
vote
2answers
3k views

Geokit in Ruby on Rails, problem with acts_as_mappable

i have looked through the list of related questions however my problem does not seem to be listed and hence here it is: Basically I'm trying to use Geokit within the Ruby on Rails environment, im not ...
1
vote
1answer
441 views

Why does Postgresql fail with Geokit like this?

I've just started playing with geokit with Rails for an app I am building. I have got my recorda getting geocoded, but then when I go into the console to have a look at what I can do it with and it ...
1
vote
3answers
2k views

Geokit and Authlogic, geocoding the users ip address when they create a user

Has anyone done this? I'm confused at how I can make this work, first off I have my user model Geocoding with it works fine in IRB, just can't figure out how to get it to work in my project. Trying ...
0
votes
0answers
5 views

Geokit::Geocoder::logger is not set in RSpec

I'm calling the Geokit's geocoders from inside my RSpec spec files. When I do, the specs fail because Geokit::Geocoder::logger is not set properly. The simplest spec to reproduce the problem is this ...
0
votes
2answers
41 views

How to do batch geo-coding in rails 3

I have about 100,000 records, that I need to find latitude and longitude. Currently I am using geokit-rails for geo-coding. What I am doing now is looping the records one by one to find latitude and ...
0
votes
1answer
77 views

Ruby, rvm and geokit gem. Trouble with UTF-8

i use rvm, Ruby 1.9.3 and geokit(1.6.0) gem and have trouble with UTF-8. i added line export RUBYOPT=-Ku to my ~/.rvm/environments/@default and replaced exec ruby "$@" with exec ruby -Ku "$@" in ...
0
votes
0answers
45 views

active record search with will paginate and geokit gem

Rails 2.3.5 //family.rb has_many :individuals, :dependent => :destroy acts_as_mappable //individual.rb belongs_to :family acts_as_mappable Below is my code that do a first search for individual ...
0
votes
0answers
104 views

Using Geokit and has_many relationship, having problems getting right result

Users have multiple checkins and I want their current location to be determined by their most recent checkin. I'm looking to find the (say) ten nearest users to a checkin point. I'm using ...
0
votes
0answers
24 views

Rails GeoKit: Find distance Determine two farthest points in an array and return the distance

I'm working with Geokit to help plot some points on a Google map. I've got the map centering where I want, but I'm trying to determine the initial bounds of the map, based on distance. Given an ...
0
votes
1answer
91 views

how to handle Geokit::Geocoders::GeocodeError in rails 3

Hi, I am using Geokit plugin in Ruby on Rails 3, it works fine for me. But when I give origin value not in a proper way it throws Geokit::Geocoders::GeocodeError Here is my code: @listing = ...
0
votes
0answers
92 views

Geokit query not returning expected data fields in Rails 3

I find myself a little stumped here. Included below are few examples of Rails code, corresponding SQL queries generated and the Rails output - I am using the geokit-rails3 gem. In each case, when I ...
0
votes
0answers
131 views

Geokit gem not working

I'm building an app using Raiis 3 and I'm trying to use Geokit gem for finding stores by zip code. I've installed the gem as says in its page, and then I've wrote the following code in order to do ...
0
votes
1answer
106 views

Geokit helper usage

I'm trying to localize my users throught their IP address. As the docs say, a class method called geocode_ip_address has been mixed into the ActionController::Base. But there must be something I'm ...
0
votes
0answers
76 views

GeoKit 1.5 and Rails: distance field from database is always nil, why?

I have a user model in Rails and have GeoKit 1.5.0 installed in my local machine running Rails 2.3.6 and MySQL. class User < ActiveRecord::Base acts_as_mappable :through => :location end ...
0
votes
1answer
270 views

undefined method `within'

I followed the installation procedure of geokit-rails3, here is my conf : Using rails (3.0.4) Using activerecord (3.0.4) Using geokit (1.5.0) Using geokit-rails (1.1.4) I get this error ...
0
votes
1answer
502 views

Using Rails 3 with Geokit-rails3 location gem

I am trying to use the geokit-rails3 gem for geolocation information in a rails application. I have a simple model: class Location < ActiveRecord::Base def lookup_ip_information(post_ip) ip ...
0
votes
1answer
126 views

Ruby gem geokit and :within maximum or tolerance?

Just started playing with geokit and trying some things out... Things are pretty much working as expected, given a point, its finding things nearby. However, if I set :within to be a large value, ...
0
votes
1answer
154 views

Geokit in Ruby on Rails, distance finder, how to sort by nearest to farthest?

I'm using Geokit. I have the following in my model: # Distance-based finder method # Usage: # - find_this_within(Shop.first, 10) def self.find_this_within(origin, within) if ...
0
votes
2answers
269 views

Update geocode latitude and longitude everytime address is updated

I have this in my shop.rb: def geocode_address if !address_geo.blank? geo=Geokit::Geocoders::MultiGeocoder.geocode(address_geo) errors.add(:address, "Could not Geocode address") if ...
0
votes
1answer
105 views

scoped and find_within

Iam using geokit-rails (http://github.com/jlecour/geokit-rails branch gem). I like to build a scope like a = MyModel.scoped a = a.limit(10).scoped a = a.find_within(10,:origin => ...
0
votes
2answers
115 views

gem customizations

I added some caching functionality to the geokit gem and used gemcutter to create a copy 'badnaam-geokit'. The only changed are in Geocoders.rb which works fine if I just modify it locally. However, ...

1 2