2

Address模型具有 RGeo 属性时,有一个典型的模式:

t.st_point :coordinates,   geographic: true, srid: 4326

通常它被包裹在RGeo::Geographic::SphericalPointImpl类中

Realty.last.address.coordinates
#<RGeo::Geographic::SphericalPointImpl:0x2b1a364b429c "POINT (106.5 10.5)">

但在某些情况下,它是用完全不合适的笛卡尔包装器包装的RGeo::Cartesian::PointImpl

Realty.joins(:address).select('realties.id, addresses.coordinates::geometry').first.coordinates
#<RGeo::Cartesian::PointImpl:0x2b1a364a691c "POINT (106.0 10.0)">

我正在使用最新'activerecord-postgis-adapter 3.1.4'rails 4.2.4

也许有人知道如何解决这个问题,即coordinates总是返回实例RGeo::Geographic::SphericalPointImpl

4

1 回答 1

2

当您选择带有 的列时addresses.coordinates::geometry,您将强制 Postgres 返回几何类型的列。当您这样做时Realty.last.address.coordinates,您将返回一个不同的 SQL 类型(一个点)。

我会::geometry从您的 SQL 查询中删除。

来自https://github.com/rgeo/rgeo-activerecord#spatial-factories-for-columns的文档:

activerecord-postgis-adapterSpatialFactoryStore使用类作为查找类型的注册表将 SQL 类型转换为 ruby​​ 类型。

SpatialFactoryStore在单例类中注册空间工厂。ActiveRecord 模型中的每个空间类型都将使用SpatialFactoryStore来检索与其类型属性匹配的工厂。例如,您可以为点类型、匹配特定 SRID、具有 Z 坐标或属性的任意组合的类型设置不同的空间工厂。

此处列出了注册空间类型时支持的键及其默认值和其他允许值:

geo_type: "geometry", # point, polygon, line_string, geometry_collection, 
                      # multi_line_string, multi_point, multi_polygon
has_m:    false,      # true
has_z:    false,      # true
sql_type: "geometry", # geography
srid:     0,          # (any valid SRID)

默认工厂RGeo::Geographic.spherical_factory用于地理类型和RGeo::Cartesian.preferred_factory几何类型。

这是一个示例设置:

RGeo::ActiveRecord::SpatialFactoryStore.instance.tap do |config|
  # By default, use the GEOS implementation for spatial columns.
  config.default = RGeo::Geos.factory_generator

  # But use a geographic implementation for point columns.
  config.register(RGeo::Geographic.spherical_factory(srid: 4326), geo_type: "point")
end
于 2016-03-10T18:19:19.833 回答