Symbolize Polyline Feature based on Point Feature Values Logic If Statements

694
1
05-12-2021 07:28 AM
GentryEwing1
New Contributor II

I have GeoEvent grabbing real-time status for point layer features. I am trying to develop a workflow that will give a related Polyline Feature a status based on the point layer features. I want this to be displayed in a WebMap or Dashboard I already have created.

Example:

Point A - Status = 0

Point B - Status = 1

Point C  Status = 0

Polyline A - Status = 1

Polyline B - Status = 0

I believe I can use IF statements to write code that has rules assigned to it that will change the status of the Polyline features based on those rules.

If Point A = 0, and Point B = 1 and Point C = 0, then Polyline A = 1

If Point A = 1, and Point B = 1 and Point C = 0, then Polyline A = 0

If Point A = 0, and Point B = 1 and Point C = 1, then Polyline A = 0

To my knowledge, ESRI does not support symbolizing layers based on ARCADE in the popups.  Any direction/help would be much appreciated. 

0 Kudos
1 Reply
DavidPike
MVP Frequent Contributor

Sure it does, go to your symbology tab and input a custom expression.

have a gander at the storymap guide here How to Smart Map: Arcade (arcgis.com) (there's a demo about symbology near the end).

Or am I missing the point and you saying it's not working with related fields?

0 Kudos