module FrOData::Query::Criteria::GeographyFunctions

Public Instance Methods

distance(to) click to toggle source

Applies the `geo.distance` function. @param to [to_s] @return [self]

# File lib/frodata/query/criteria/geography_functions.rb, line 8
def distance(to)
  set_function_and_argument(:'geo.distance', to)
end
intersects(what) click to toggle source

Applies the `geo.intersects` function. @param what [to_s] @return [self]

# File lib/frodata/query/criteria/geography_functions.rb, line 15
def intersects(what)
  set_function_and_argument(:'geo.intersects', what)
end