Class: RGeo::ActiveRecord::SpatialNamedFunction
- Inherits:
-
Arel::Nodes::NamedFunction
- Object
- Arel::Nodes::NamedFunction
- RGeo::ActiveRecord::SpatialNamedFunction
- Includes:
- SpatialExpressions
- Defined in:
- lib/rgeo/active_record/arel_spatial_queries.rb
Overview
A NamedFunction subclass that keeps track of the spatial-ness of the arguments and return values, so that it can provide context to visitors that want to interpret syntax differently when dealing with spatial elements.
Instance Method Summary collapse
-
#initialize(name_, expr_, spatial_flags_ = [], aliaz_ = nil) ⇒ SpatialNamedFunction
constructor
A new instance of SpatialNamedFunction.
- #spatial_argument?(index_) ⇒ Boolean
- #spatial_result? ⇒ Boolean
Methods included from SpatialExpressions
#st_area, #st_asbinary, #st_astext, #st_boundary, #st_buffer, #st_centroid, #st_contains, #st_convexhull, #st_crosses, #st_difference, #st_dimension, #st_disjoint, #st_distance, #st_endpoint, #st_envelope, #st_equals, #st_exteriorring, #st_function, #st_geometryn, #st_geometrytype, #st_interiorringn, #st_intersection, #st_intersects, #st_isclosed, #st_isempty, #st_isring, #st_issimple, #st_length, #st_m, #st_numgeometries, #st_numinteriorrings, #st_numpoints, #st_overlaps, #st_pointn, #st_pointonsurface, #st_relate, #st_srid, #st_startpoint, #st_symdifference, #st_touches, #st_union, #st_within, #st_x, #st_y, #st_z
Constructor Details
#initialize(name_, expr_, spatial_flags_ = [], aliaz_ = nil) ⇒ SpatialNamedFunction
Returns a new instance of SpatialNamedFunction.
99 100 101 102 |
# File 'lib/rgeo/active_record/arel_spatial_queries.rb', line 99 def initialize(name_, expr_, spatial_flags_=[], aliaz_=nil) super(name_, expr_, aliaz_) @spatial_flags = spatial_flags_ end |
Instance Method Details
#spatial_argument?(index_) ⇒ Boolean
108 109 110 |
# File 'lib/rgeo/active_record/arel_spatial_queries.rb', line 108 def spatial_argument?(index_) @spatial_flags[index_+1] end |
#spatial_result? ⇒ Boolean
104 105 106 |
# File 'lib/rgeo/active_record/arel_spatial_queries.rb', line 104 def spatial_result? @spatial_flags.first end |