The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
46 views

Installing GEOS on heroku cedar

we have troubles in installing the GEOS library on heroku cedar stack. We followed this guide: https://devcenter.spacialdb.com/Heroku.html and it didn't work. We noticed that the path ...
0
votes
0answers
34 views

RGeo-GeoJSON rendering feature collection

I need help rendering a feature collection in geojson for my index action. Using postgis, RGeo, RGeo-GeoJSON, activerecord-postgis-adapter, etc. MIME type is set to render geojson and the show action ...
1
vote
0answers
31 views

INSERTs and UPDATEs in ruby/rails using PostgreSQL functions

I'm using activerecord-postgis-adapter and squeel in a geo oriented application. Fetching data using various queries based on find and where is working fine and squeel allows me to use ...
0
votes
0answers
64 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 ...
0
votes
0answers
58 views

How to create RGeo polygon in Ruby from WKT when the polygon has errors

I'm working with a MySQL database with polygons stored in WKT format. Many polygons in the database have duplicate points (e.g. in the below example, the point -122.323502 47.600959 is repeated three ...
0
votes
3answers
212 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
37 views

How to express the projection using pure sql?

I have used RGEO_FACTORY = RGeo::Geographic.simple_mercator_factory RGEO_FACTORY.point(lon, lat).projection But now I want to use sql to implement it. And I have the point(geometry) in the postgis ...
0
votes
1answer
48 views

What's the result of point's projection method using the RGeo::Geographic.simple_mercator_factory

I have a factory RGEO_FACTORY = RGeo::Geographic.simple_mercator_factory And I have a point(POINT (28.97566007 41.01452809)), whose srid is 3785. Then I get a new coordinate using ...
2
votes
1answer
272 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 ...