Module: SpatialFeatures::InstanceMethods
- Defined in:
- lib/spatial_features/has_spatial_features.rb
Instance Method Summary collapse
- #acts_like_spatial_features? ⇒ Boolean
-
#aggregate_features ⇒ Object
Scope to perform SQL-only calculations on a record’s aggregate feature.
- #bounds ⇒ Object
- #features? ⇒ Boolean
- #features_area_in_square_meters ⇒ Object
- #features_cache_key ⇒ Object
- #intersects?(other) ⇒ Boolean
- #lines? ⇒ Boolean
- #points? ⇒ Boolean
- #polygons? ⇒ Boolean
- #spatial_cache_for?(other, buffer_in_meters) ⇒ Boolean
- #total_intersection_area_in_square_meters(other) ⇒ Object
- #total_intersection_area_percentage(klass) ⇒ Object
Instance Method Details
#acts_like_spatial_features? ⇒ Boolean
172 173 174 |
# File 'lib/spatial_features/has_spatial_features.rb', line 172 def acts_like_spatial_features? true end |
#aggregate_features ⇒ Object
Scope to perform SQL-only calculations on a record’s aggregate feature. This avoids loading the large data payload if all that is needed is metadata
246 247 248 |
# File 'lib/spatial_features/has_spatial_features.rb', line 246 def aggregate_features self.class.where(id: id).aggregate_features end |
#bounds ⇒ Object
204 205 206 207 208 209 210 211 |
# File 'lib/spatial_features/has_spatial_features.rb', line 204 def bounds if association(:aggregate_feature).loaded? aggregate_feature&.feature_bounds else result = aggregate_features.pluck(:north, :east, :south, :west).first [:north, :east, :south, :west].zip(result.map {|bound| BigDecimal(bound) }).to_h.with_indifferent_access if result end end |
#features? ⇒ Boolean
192 193 194 195 196 197 198 |
# File 'lib/spatial_features/has_spatial_features.rb', line 192 def features? if features.loaded? features.present? else features.exists? end end |
#features_area_in_square_meters ⇒ Object
219 220 221 222 223 224 225 |
# File 'lib/spatial_features/has_spatial_features.rb', line 219 def features_area_in_square_meters if association(:aggregate_feature).loaded? aggregate_feature&.area else aggregate_features.pluck(:area).first end end |
#features_cache_key ⇒ Object
176 177 178 |
# File 'lib/spatial_features/has_spatial_features.rb', line 176 def features_cache_key "#{self.class.name}/#{id}-#{has_spatial_features_hash? ? features_hash : aggregate_feature.cache_key}" end |
#intersects?(other) ⇒ Boolean
200 201 202 |
# File 'lib/spatial_features/has_spatial_features.rb', line 200 def intersects?(other) self.class.unscoped { self.class.intersecting(other).exists?(id) } end |
#lines? ⇒ Boolean
184 185 186 |
# File 'lib/spatial_features/has_spatial_features.rb', line 184 def lines? !features.lines.empty? end |
#points? ⇒ Boolean
188 189 190 |
# File 'lib/spatial_features/has_spatial_features.rb', line 188 def points? !features.points.empty? end |
#polygons? ⇒ Boolean
180 181 182 |
# File 'lib/spatial_features/has_spatial_features.rb', line 180 def polygons? !features.polygons.empty? end |
#spatial_cache_for?(other, buffer_in_meters) ⇒ Boolean
233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/spatial_features/has_spatial_features.rb', line 233 def spatial_cache_for?(other, buffer_in_meters) if cache = spatial_caches.between(self, Utils.class_of(other)).first return cache.intersection_cache_distance.nil? if buffer_in_meters.nil? # cache must be total if no buffer_in_meters return false if cache.stale? # cache must be for current features return true if cache.intersection_cache_distance.nil? # always good if cache is total return buffer_in_meters <= cache.intersection_cache_distance else return false end end |
#total_intersection_area_in_square_meters(other) ⇒ Object
227 228 229 230 231 |
# File 'lib/spatial_features/has_spatial_features.rb', line 227 def total_intersection_area_in_square_meters(other) other = other.intersecting(self) unless other.is_a?(ActiveRecord::Base) return features.area if spatial_cache_for?(other, 0) && SpatialProximity.between(self, other).where('intersection_area_in_square_meters >= ?', features.area).exists? return features.total_intersection_area_in_square_meters(other.features) end |
#total_intersection_area_percentage(klass) ⇒ Object
213 214 215 216 217 |
# File 'lib/spatial_features/has_spatial_features.rb', line 213 def total_intersection_area_percentage(klass) return 0.0 unless features_area_in_square_meters > 0 ((total_intersection_area_in_square_meters(klass) / features_area_in_square_meters) * 100).round(1) end |