I'm trying to take a point in a search cursor and then find what section it is in. I have a bioFC and a "sec_lyr" and I am passing in the feature from the cursor - looping through the cursor. It is not working. How can I iterate one point feature at a time?
cursor = arcpy.da.SearchCursor(bioFC, ["Twp_Sec_Rng"])
arcpy.MakeFeatureLayer_management(secFC, "sec_lyr")
# loop one, is a search cursor
print("Processing data...")
for fea in cursor:
arcpy.SelectLayerByLocation_management("sec_lyr", "intersect", fea)