Will $map global function be added to Arcade field calc in ArcPro?

419
0
09-24-2020 06:30 AM
Roquinn
New Contributor II

Based on the documentation (https://developers.arcgis.com/arcade/guide/profiles/#field-calculate) the only arcade functions that are supported for field calc is $feature and $datastore. I am trying to field calculate an intersect that will return a value from the intersecting feature where the workflow will not support any type of join. The intersecting feature will not be in the dataset containing the edit feature so I am not able to use the $datastore function. This functionality is available for use dealing with popups (https://developers.arcgis.com/arcade/guide/profiles/#popup).

Here is some sample code that I am trying to use:

var intersectLayer =Intersects(FeatureSetByName($map,"Elementary School Attendance Boundary"), $feature)

for (var f in intersectLayer){
return f.Name
}

*"Elementary School Attendance Boundary" is not in the same dataset as $feature.*

Ryan O'Quinn
0 Replies