I'm having a bit of a brain freeze on this problem. I want to use intersect to return a parcel that intersects with a point, and then I want to filter the featureset of parcels based on a owner address value found in my intersected parcel record. I'm having a hard time accessing the individual attributes of the intersected parcel however - I had thought something like $feature.attributename would work but this doesn't seem to work with featuresets. My workflow as i have been envisioning it is something like:
- make parcel feature set.
- intersect parcels with $feature
- obtain 'owner address' from intersected parcel feature set
- filter original parcel feature set with the owner address.
- display filtered records in popup, or at least a count.
Objective here is to return the number (and list) of parcels which have the same owner address. Any thoughts?