| Path: | README |
| Last Update: | Thu Oct 19 21:47:36 Romance Daylight Time 2006 |
This is the Spatial Adapter for Rails 0.1.1. It is a plugin for Rails which manages the MySql Spatial and PostGIS geometric columns in a transparent way (that is like the other base data type columns). It also provides a way to manage these columns in migrations. It replaces both the "PostGIS Adapter for Rails" and "MySql Spatial Adapter for Rails" plugins.
You need to install a version >= 0.1.1 of the GeoRuby gem (rubyforge.org/projects/georuby/) :
gem install georuby
At the root of your Rails project, type :
script\plugin install svn://rubyforge.org/var/svn/georuby/SpatialAdapter/trunk/spatial_adapter
You need to have SVN installed.
Geometric columns in your ActiveRecord models now appear just like any other column of other basic data types. They can also be dumped in ruby schema mode and loaded in migrations the same way as columns of basic types.
Here is an example of code for the creation of a table with a geometric column in PostGIS, along with the addition of a spatial index on the column :
ActiveRecord::Schema.define do
create_table "table_points", :force => true do |t|
t.column "data", :string
t.column "geom", :point, :null=>false, :srid => 123, :with_z => true
end
add_index "table_points", "geom", :spatial=>true
end
Here is a related statement valid for MySql version <= 5.0.16 :
ActiveRecord::Schema.define do
create_table "table_points", :options=>"ENGINE=MyISAM", :force => true do |t|
t.column "data", :string
t.column "geom", :point, :null=>false
end
add_index "table_points", "geom", :spatial=>true
end
The differences with the PostGIS version are because of the following reasons :
Here is the model you would use, in both MySql and PostGIS:
class TablePoint < ActiveRecord::Base
end
That was easy! As you see, there is no need to declare a column as geometric. The plugin will get this information by itself.
Here is an example of PostGIS row creation and access, using the model and the table defined above :
pt = TablePoint.new(:data => "Hello!",:geom => Point.from_x_y_z(-1.6,2.8,-3.4,123))
pt.save
pt = TablePoint.find_first
puts pt.geom.x #access the geom column like any other
For MySQL, it is slightly different since it does not support Z dimension or SRID :
pt = TablePoint.new(:data => "Hello!",:geom => Point.from_x_y(-1.6,2.8))
pt.save
pt = TablePoint.find_first
puts pt.geom.x #access the geom column like any other
If you use fixtures for your unit tests, at some point, you will want to input a geometry. You could transform your geometries to a form suitable for YAML yourself everytime but the spatial adapter provides a method to do it for you: to_fixture_format. It works for both MySQL and PostGIS (although the string returned is different for each database). You would use it like this, if the geometric column is a point:
fixture:
id: 1
data: HELLO
geom: <%= Point.from_x_y(123.5,321.9).to_fixture_format %>
find_by_[column] has been redefined when column is of a geometric type. Instead of using the Rails default ’=’ operator, for which I can’t see a definition for MySql spatial datatypes and which performs a bounding box equality test in PostGIS, it uses a bounding box intersection: && in PostGIS and MBRIntersects in MySQL, which can both make use of a spatial index if one is present to speed up the queries. You could use this query, for example, if you need to display data from the database: You would want only the geometries which are in the screen rectangle and you could use a bounding box query for that. Since this is a common case, it is the default. You have 2 ways to use the find_by_[geom_column]: Either by passing a geometric object directly, or passing an array with the 2 opposite corners of a bounding box (with 2 or 3 coordinates depending of the dimension of the data).
Park.find_by_geom(LineString.from_coordinates([[1.4,5.6],[2.7,8.9],[1.6,5.6]]))
or
Park.find_by_geom([[3,5.6],[19.98,5.9]])
In PostGIS, since you can only use operations with geometries with the same SRID, you can add a third element representing the SRID of the bounding box to the array. It is by default set to -1:
Park.find_by_geom([[3,5.6],[19.98,5.9],123])
Ruby geometric datatypes are currently made available only through the GeoRuby library (thepochisuperstarmegashow.com/ProjectsDoc/georuby-doc/index.html): This is where the Point.from_x_y in the example above comes from. It is a goal of a future release of the Spatial Adapter to support additional geometric datatype libraries, such as Ruby/GEOS, as long as they can support reading and writing of EWKB.
place = Place.find_first
place.the_geom.y=123456.7
place = Place.find_first
the_geom = place.the_geom
the_geom.y=123456.7
place.the_geom = the_geom
The Spatial Adapter for Rails is released under the MIT license.
Any questions, enhancement proposals, bug notifications or corrections can be sent to guilhem.vellut+georuby@gmail.com.