Geos ruby​​ - 创建点

时间:2017-05-29 09:04:37

标签: ruby geometry geos

我正在努力使用GEOS库来实现Ruby,我只是想用IRB创建一个简单的点。 require geos返回true,因此安装有效。但是,我并不真正理解documentation并且在github页面上没有任何帮助。

我尝试了Geos::Point.new('POINT(0 0)'),但它返回TypeError: allocator undefined for Geos::Point

1 个答案:

答案 0 :(得分:3)

GEOS是一个C ++库。查看那里的文档以了解所需的Ruby语法没有多大帮助。

你需要这个rgeo宝石。

这是一个很好的教程:"Geo-Rails Part 3: Spatial Data Types with RGeo"

举个例子:

# gem install rgeo
require 'rgeo'

factory = RGeo::Cartesian.factory

point = factory.point(0, 0)
puts point
# POINT (0.0 0.0)

square = factory.parse_wkt("POLYGON((1 0, 0 1, -1 0, 0 -1, 1 0))")
puts square
# POLYGON ((1.0 0.0, 0.0 1.0, -1.0 0.0, 0.0 -1.0, 1.0 0.0))

puts square.contains?(point)
# true