Select to view content in your preferred language

Selecting polygons that intersect with 5 or less points

339
1
Jump to solution
05-16-2023 04:16 PM
RoryEscobedo
New Contributor

Hi!

This might be a simple problem, but I keep getting stuck.

So, I have many polygons (about 500). A mass amount of points overlaps these polygons. I want to select only the polygons that intersect with less than 5 points (0 to 5). Once I select these polygons I want to remove them from the map.

 I have read up on the SQL (https://community.esri.com/t5/arcgis-pro-questions/perform-a-sql-count-in-calculate-field/td-p/11339...) just an example, and seem to keep running into problems. I feel like this should be an easy solution, but I keep getting stuck!

0 Kudos
1 Solution

Accepted Solutions
jcarlson
MVP Esteemed Contributor

You could probably do it with Arcade, too.

var pts = FeatureSetByName($map, 'points layer name')

var xs_pts = Intersects($feature, pts)

return Count(xs_pts)

The resulting count would give you the ability to select by attribute and delete.

- Josh Carlson
Kendall County GIS

View solution in original post

1 Reply
jcarlson
MVP Esteemed Contributor

You could probably do it with Arcade, too.

var pts = FeatureSetByName($map, 'points layer name')

var xs_pts = Intersects($feature, pts)

return Count(xs_pts)

The resulting count would give you the ability to select by attribute and delete.

- Josh Carlson
Kendall County GIS