Is there a simple day to grab attribute data from a polygon fc that intersects with a point fc. I need to update points based on what polygon layer name they intersect.
Right now, I am doing a spatial query and then attempting to field calculate but I feel like there is an easier way.
I need to do this in an AGO notebook but here is my arcade expression
var inter_trust = count(Intersects($feature, trust))
if (inter_trust > 0)
{
return "Trust";
}