Method: AbstractFeature.intersecting

Defined in:
app/models/abstract_feature.rb

.intersecting(other) ⇒ Object



58
59
60
# File 'app/models/abstract_feature.rb', line 58

def self.intersecting(other)
  join_other_features(other).where('ST_Intersects(features.geom_lowres, other_features.geom_lowres)').uniq
end