使用activerecord-postgis-adapter保存点值

时间:2019-03-02 06:26:04

标签: ruby-on-rails rails-activerecord postgis

我在Rails应用程序中使用activerecord-postgis-adapter,并且有一列存储一个点,但是我不知道如何保存该点的值。

在我的模式中,我有

  create_table "privacy_zones", force: :cascade do |t|
    t.bigint "user_id"
    t.geography "original_point", limit: {:srid=>4326, :type=>"st_point", :geographic=>true}, null: false
    t.geography "random_in_range", limit: {:srid=>4326, :type=>"st_point", :geographic=>true}, null: false
    t.integer "range", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["user_id"], name: "index_privacy_zones_on_user_id"
  end

并且在我的控制器中

def create
    @privacy_zone = PrivacyZone.new(
        range: params[:privacy_zone][:range],
        original_point: "ST_POINT(#{params[:privacy_zone][:original_point][0]}, #{params[:privacy_zone][:original_point][1]})",
        random_in_range: "ST_POINT(#{params[:privacy_zone][:random_in_range][0]}, #{params[:privacy_zone][:random_in_range][1]})",
        user: current_user
    )

    p @privacy_zone
end

在我发帖时,我会在服务器日志中看到它

Started POST "/profile/privacy_zone" for 127.0.0.1 at 2019-03-02 16:47:24 +1030
Processing by PrivacyZoneController#create as HTML
  Parameters: {"privacy_zone"=>{"original_point"=>[35.87006446264988, 107.75390625], "random_in_range"=>[35.87185877011052, 107.75633485018554], "range"=>400}}
  User Load (4.4ms)  SELECT  "users".* FROM "users" WHERE "users"."uid" = $1 LIMIT $2  [["uid", "test@example.com"], ["LIMIT", 1]]
#<PrivacyZone id: nil, user_id: 1, original_point: nil, random_in_range: nil, range: 400, created_at: nil, updated_at: nil>

original_point和random_in_range为零,因此记录将不会保存。将数据插入到st_point列的正确方法是什么?

3 个答案:

答案 0 :(得分:0)

我的代码正在生成ST_POINT(42.14603262169405, 69.43359375000001)形式的值

正确的值为POINT(42.14603262169405 69.43359375000001)(没有ST_且没有,

答案 1 :(得分:0)

您可以尝试

t.column 'point', 'point'

答案 2 :(得分:0)

可以使用空间工厂代替原始字符串插值来创建点对象。例如

original_point: RGeo::Geographic.spherical_factory(srid: 4326).point(
  params[:privacy_zone][:original_point][0],
  params[:privacy_zone][:original_point][1]
)

其中SRID 4326代表使用以度数为单位的地理空间参考系统。 https://postgis.net/workshops/postgis-intro/geography.html