最近探していたところ、しばらくすると次のようになりました。多分誰か他の人がこれを使うでしょう。
$geoIntersectsは現在mongoid4.0.0.beta1に実装されていますが、十分に文書化されていません。これは、オリジンの変更ログで見つかりました:https ://github.com/mongoid/origin/blob/master/CHANGELOG.md#new-features -1
query.geo_spacial(:location.intersects_line => [[ 1, 10 ], [ 2, 10 ]])
query.geo_spacial(:location.intersects_point => [[ 1, 10 ]])
query.geo_spacial(:location.intersects_polygon => [[ 1, 10 ], [ 2, 10 ], [ 1, 10 ]])
query.geo_spacial(:location.within_polygon => [[ 1, 10 ], [ 2, 10 ], [ 1, 10 ]])
およびコミット:https ://github.com/mongoid/origin/commit/30938fad644f17fe38f62cf90571b78783b900d8
# Add a $geoIntersects selection. Symbol operators must be used as shown in
# the examples to expand the criteria.
#
# @note The only valid geometry shapes for a $geoIntersects are: :line,
# :point, and :polygon.
# ...
# @example Add a geo intersect criterion for a point.
# query.geo_intersects(:location.point => [[ 1, 10 ]])
私のプロジェクトでは、mongoid(4.0.0.beta1)とorigin(2.1.0)があります。モデルPolygonがあります。
class Polygon
include Mongoid::Document
# some fields
embeds_many :loc
# coordinates is an array of two points: [10, 12]
def find_polygons_with_point(coordinates)
# This is where the magic happens!
Polygon.all.geo_spacial(:loc.intersects_point => coordinates)
end
end
そしてモデルLoc
class Loc
field :type, type: String #Need to be set to 'Polygon' when creating a new location.
field :coordinates, type: Array
# For some reason the array has to be in the format
# [ [ [1,1], [2,3], [5,3], [1,1] ] ]
# And the first coordinate needs to be the same as the last
# to close the polygon
embedded_in :polygon
index({ coordinates: "2d" }, { min: -200, max: 200 }) #may not need min/max
end
このコードは、このポイントを内部に持つすべてのポリゴンを返します。
これを行うためのよりエレガントな方法があるかもしれません。もしそうなら、私はそれを聞きたいです:)