Select to view content in your preferred language

How to loop through matched features in featureset?

252
1
06-18-2023 06:20 AM
conor0460
New Contributor

What I need to do is examine each parcel feature in ParcelsByFeeder and do further analysis on that parcel (again, a polygon feature), such as examining its acreage, intersecting with wetlands layers, and so on. Unfortunately, I cannot find any documentation which shows me have to loop through a featureset and examine each feature within. Should be simple, eh?

0 Kudos
1 Reply
julian_svcs
Frequent Contributor

This should be able to be done using python and arcpy. Have a look at the search cursor:

SearchCursor—ArcGIS Pro | Documentation

Have a look at SHAPE@AREA. This will be in the units of the project of your data and can be re-calculated to acres.

0 Kudos