Hello,
I am looking to return the last feature in a feature set. I can do this with the first record in a feature set, but I am unsure how to return other features from the feature set. Like the second record in a feature set.
var manholes = FeatureSetByName($datastore, 'Nodes', ['IN_1_EL'], true)
var intersecting = Intersects($feature, manholes)
var count_check = Count(intersecting)
if (count_check > 0) {
return first(intersecting).IN_1_EL
}
else {
return $feature.Down_Inv
}
Anyone know how to access the second value in a feature set?
Regards,
Jim