Tagged Questions
2
votes
0answers
15 views
Rails test database getting wrong column type on geographic columns
We have a rails app that uses postgis and activerecord-postgis-adapter for geographic information search. However, it doesn't work right in the test database. In development and production database, ...
0
votes
1answer
30 views
undefined method when trying to build db with activerecord-postgis-adapter
I am trying to deploy a rails application using activerecord-postgis-adapter to heroku, however I keep getting this error.
ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.3.0]
Rails 3.2.13
...
0
votes
0answers
40 views
Receiving PG::Error when trying to save GeoJSON to Postgres / PostGIS database. What's missing?
I'm using Rails 3.2 with a Postgres / PostGIS database and the following gems:
pg (0.15.1)
rgeo (0.3.20)
rgeo-activerecord (0.5.0)
rgeo-geojson (0.2.3)
activerecord-postgis-adapter (0.6.2)
The ...
2
votes
1answer
124 views
How can I use PostGIS functions in rails?
The query I'd like to run is:
SELECT zcta.geoid10, ST_AsGeoJSON(ST_simplify(zcta.geom,500)) FROM zcta WHERE zcta.geoid10 = '90210'
However in the Rails console when I enter this:
testquery = ...
0
votes
1answer
105 views
POSTGIS query optimization in RAILS
I am using postgis2.0 with postgres 9.1 db. My goal is to write as close as possible to an optimized query to get nearby locations within certain radius and out put them with their distance order. The ...
0
votes
1answer
81 views
postgis st_distance returning incorrect results
I am using postgis to calculate distance between 2 geo co-ordinates.
select st_distance(
'POINT(15.651955 73.712769)'::geography,
'POINT(14.806993 74.131451)'::geography) AS d;
It's returning ...
0
votes
3answers
192 views
Convert an ActiveRecord column to PostGIS Point
My setup:
Ruby 2.0.0
Rails 3.2.12
most recent pg gem
most recent activerecord-postgis-adapter gem
most recent rgeo-geojson gem
Postgres 9.1.6
PostGIS 2
I've asked something similar a few days ago. ...
0
votes
1answer
43 views
Load only needed points to map from PostGIS in Rails
I'm loading a lot of points, polygons and lines from a PostGIS database to a google map. If I load the entire DB, it'll kill the browser, so I'm looking for a way to load only in the area the user can ...
0
votes
1answer
42 views
Storing a geo route
I'm planning to build a Rails application that should store data about a geo routes (potentially millions). The route is recorded from an smartphone or manually "drawn" in an web-interface.
A route ...
2
votes
1answer
141 views
Find all items within a bounding box with PostGIS and Rails
I have a Rails model that uses a PostGIS POINT type to store the coordinates of a location. How can I query all locations that are contained within a bounding box? The bounding box comes from Google ...
0
votes
2answers
137 views
Can't save polygon with PostGIS/RGeo
How do you save a polygon using the PostGIS adapter for Rails? In my model I have:
self.rgeo_factory_generator = RGeo::Geos.factory_generator
set_rgeo_factory_for_column(:bounds, ...
0
votes
1answer
138 views
Using postgres_ext with postgis adapter not working with array columns
I've successfully installed PostGIS and using the postgres_ext gem to add support Rails postgis ActiveRecord adapter, but when I try to use a Postgres array column type in my migration, it fails:
...
0
votes
1answer
78 views
how to configure database.yml in windows 7 to use postgis
My database.yml development section looks like this:
development:
adapter: postgis
encoding: unicode
database: openData_development
pool: 5
username: postgres
password: test1234
...
2
votes
1answer
244 views
RGeo Projected Buffer Polygon too small
I have a rails app that is using rgeo 0.3.19 with proj4 support connecting to a PostGIS 1.5 database with the rgeo-activerecord 0.4.5 gem.
My app has a model called Region which contains a geographic ...
1
vote
2answers
158 views
rails gem install pg
I want to install the gem pg onto my windows 7 machine with:
gem install pg
But it fails every time with following error:
Fetching: pg-0.14.1-x86-mingw32.gem (100%)
Successfully installed ...
0
votes
1answer
146 views
Trying to get postres and postgis running in rails app
I am completely new to Postgresql, Postgis, and SQL and have a little bit of rails knowledge. I am trying to get an existing app going on my local and am currently receiving the following messages ...
1
vote
1answer
283 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
206 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
0answers
105 views
coordinate values from json into database in Rails
I am using Rails with a PostgreSQL and PostGis.
I try to put each x and y coordinate into my database model, with Point.from_x_y()
But i always get an error msg like this, i have no clue why i get ...
0
votes
0answers
91 views
Ruby on Rails + PostGIS model custom initialization and custom JSON output
I am using PostgreSQL + PostGIS to work with spatial data and I am also using this gem activerecord-postgis-adapter to keep it easy to write code. I have this model
class Device < ...
3
votes
0answers
104 views
How to test Rails applications using GIS databases
I'm developing a Rails app (3.2.8) that will use the activerecord-postgis-adapter and activerecord-spatialite-adapater gems and various rgeo plugins.
I would like to use the Rails unit and functional ...
0
votes
2answers
197 views
why are my rgeo / postgis distances so far off from reality?
I am trying to get the number of miles away a given post record...
class Post < ActiveRecord::Base
attr_accessor :lat, :lng
set_rgeo_factory_for_column(:location, ...
3
votes
3answers
1k views
Rails + PostGIS errors migrating database
I was following Daniel Azuma's talk on geospatial analysis with rails but I am having difficulty whenever I run rake db:migrate in the second project.
The details of my setup are as follows: I am ...
0
votes
1answer
130 views
Does postgres offset/limit not work the same way as mysql?
I have a rails app (postgres + postGIS) with a post model with a rating column (integer). If I go into the console and do:
Post.order("rating DESC").map(&:id)
=> [9, 15, 19, 6, 17, 5, 4, 16, ...
1
vote
2answers
217 views
new row for relation “venues” violates check constraint “enforce_srid_latlon”
I'm getting the following error when I try to create a new venue that is location aware.
ActiveRecord::StatementInvalid: PG::Error: ERROR: new row for relation "venues" violates check constraint ...
1
vote
1answer
239 views
Getting an error while running rake command on a rails 2 project
I am runnning a rails 2 project with the following gems, georuby, spatial_adapter. And Postgres db as backend. But I am facing this error. I tired installing postgis also but still get this. Any ideas ...
0
votes
2answers
983 views
Ruby Rails Postgis - Finding all the points in a polygon
I would like some help on constructing sql queries for use in rails with activerecord-postgis-adapter. I have been doing quite a bit of reading but am now a bit stuck, any help would be much ...
5
votes
1answer
286 views
Given collection of points and polygons, determine which point lies in which polygon (or not)
My question is almost similar to this. But in my case, the polygons are not necessarily touching/overlapping each other. They are present all over the space.
I have a big set of such polygons. ...
0
votes
2answers
208 views
Technology stack for a location based app
This might sound like a trivial question to a lot of people, but since I'm just beginning my tryst with LBS, this is turning out to be a nightmare.
At the simplest, what I'm trying to do is build ...
5
votes
2answers
925 views
How Can I Transform the Coordinates of a Shapefile
I am trying to get neighborhood data into my application, and I'm having problems with the data I am using, which I got from here.
This file contains a shapefile that has the neighborhoods of San ...
3
votes
3answers
1k views
Rails - PostGIS + postgis_adapter Geometry Problem
I use postgis_adapter alongside with PostgreSQL 9.0.4, PostGIS 1.5.2 and Rails 3.1.0 on Ruby 1.9.2.
As described in the the postgis_adapter README, I tried to perform
Model.create(:geom => ...
0
votes
2answers
192 views
What is the best way to implement a “Find a Store” feature in Rails?
I will be implementing a search feature on a project to allow a user to find the nearest store based on driving time given a input physical address. I would prefer showing a Google maps of the closest ...
9
votes
2answers
3k views
Rails with PostGIS
First of all, I'm using Rails3 with Ruby 1.9.2.
I have a problem using PostgreSQL with PostGIS. I've tried two gems:
https://github.com/nofxx/georuby
...
1
vote
5answers
956 views
Order by nearest - PostGIS, GeoRuby, spatial_adapter
I'm trying to do an order query that finds records nearest to the current_user.
I know the distance between the two points is: current_location.euclidean_distance(@record.position)
How can I work ...
2
votes
3answers
976 views
Storing & Querying Location data (geo/gis/etc) in Rails
I need to record and track location of some entities in a Rails app. Simply put, iPhone will post its location (lat/long) and Rails will archive it. Then when queried Rails will need to return ...
0
votes
2answers
368 views
Can I remove or alter a PostgreSQL table's geometry dimension constraint via a Rails migration?
The question
I am using Rails 2.3 with the Spatial Adapter plugin and a Postgres 8.4 database with PostGIS extension.
A while ago, a geometry field has been added to a table via a migration like ...
1
vote
1answer
544 views
Rails + Postgis with spatial_adapter or postgis_adapter gem?
I need to use Ruby-on-Rails together with a Postgis database.
Anyone experience with both spatial_adapter and postgis_adapter gem?
What are the differences? Which do you recommend? Are there any other ...
2
votes
3answers
1k views
Constucting a PostGIS query with Rails
I'm using PostGIS (1.5.1) with Rails (3.0.0rc) and a Google Map (v3), and I'm looking for a way to query the database to retrieve all the points within a polygon (specifically, the bounds of the map ...
6
votes
3answers
2k views
Accessing PostGIS spatial data from Rails
I need to use an existing PostGIS database from my Rails application. So far I am able to access the DB just fine, GeoRuby nicely converts the 'geom' column into a Point object.
What I am looking for ...
