Overlay_Intersects and Buffers in QGIS 3.2x

A common GIS task is to suppress duplicated points from other layers. What if those points don’t line up perfectly? Then you can’t use overlay_intersects but you can use intersects with a buffer. The key to using buffer with a layer is to use the aggregate function inside of the buffer function, so the layer appears as a MULTIPOLYGON or MULTIPOINT to the buffer command. Then just do an ordinary NOT intersects between the current layer and the buffered layer.

NOT intersects($geometry,
buffer(
aggregate('other_layer_compare_against', 'collect', $geometry)
,500 )
)
Map: Alma Pond
Map: Dobbins Memorial State Forest
Map: Little John Wildlife Management Area
Map: Otter Lake
Map: South Hill State Forest (Oneida 23)
Map: Summer Hill State Forest
Map: West Parishville State Forest
SVGZ Graphic: albany-snow-depth
SVGZ Graphic: college-rate
SVGZ Graphic: december-holidays
SVGZ Graphic: ht2025
SVGZ Graphic: lt2025
SVGZ Graphic: Places Named Bethlehem
SVGZ Graphic: Towns with Most Similiar Land Cover to the Town of Bethlehem
Terrain Map: Happy World Milk Day!
Photo: Double Bridges
Photo: Sunlight
Photo: Bird watching
Photo: Red skies at night...
Photo: No, it doesn't work
Photo: West To Cannaan Ridge
Photo: Bear Rocks View
Photo: After The Fire
Photo: Long Trail
Photo: Pine Bush Raffle

Leave a Reply

Your email address will not be published. Required fields are marked *