<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Symbolize Polyline Feature based on Point Feature Values Logic If Statements in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/symbolize-polyline-feature-based-on-point-feature/m-p/1057135#M30162</link>
    <description>&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Point A - Status = 0&lt;/P&gt;&lt;P&gt;Point B - Status = 1&lt;/P&gt;&lt;P&gt;Point C&amp;nbsp; Status = 0&lt;/P&gt;&lt;P&gt;Polyline A - Status = 1&lt;/P&gt;&lt;P&gt;Polyline B - Status = 0&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;If Point A = 0, and Point B = 1 and Point C = 0, then Polyline A = 1&lt;/P&gt;&lt;P&gt;If Point A = 1, and Point B = 1 and Point C = 0, then Polyline A = 0&lt;/P&gt;&lt;P&gt;If Point A = 0, and Point B = 1 and Point C = 1, then Polyline A = 0&lt;/P&gt;&lt;P&gt;To my knowledge, ESRI does not support symbolizing layers based on ARCADE in the popups.&amp;nbsp; Any direction/help would be much appreciated.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 May 2021 14:26:05 GMT</pubDate>
    <dc:creator>GentryEwing1</dc:creator>
    <dc:date>2021-05-12T14:26:05Z</dc:date>
    <item>
      <title>Symbolize Polyline Feature based on Point Feature Values Logic If Statements</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/symbolize-polyline-feature-based-on-point-feature/m-p/1057135#M30162</link>
      <description>&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Point A - Status = 0&lt;/P&gt;&lt;P&gt;Point B - Status = 1&lt;/P&gt;&lt;P&gt;Point C&amp;nbsp; Status = 0&lt;/P&gt;&lt;P&gt;Polyline A - Status = 1&lt;/P&gt;&lt;P&gt;Polyline B - Status = 0&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;If Point A = 0, and Point B = 1 and Point C = 0, then Polyline A = 1&lt;/P&gt;&lt;P&gt;If Point A = 1, and Point B = 1 and Point C = 0, then Polyline A = 0&lt;/P&gt;&lt;P&gt;If Point A = 0, and Point B = 1 and Point C = 1, then Polyline A = 0&lt;/P&gt;&lt;P&gt;To my knowledge, ESRI does not support symbolizing layers based on ARCADE in the popups.&amp;nbsp; Any direction/help would be much appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 14:26:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/symbolize-polyline-feature-based-on-point-feature/m-p/1057135#M30162</guid>
      <dc:creator>GentryEwing1</dc:creator>
      <dc:date>2021-05-12T14:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Symbolize Polyline Feature based on Point Feature Values Logic If Statements</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/symbolize-polyline-feature-based-on-point-feature/m-p/1057552#M30167</link>
      <description>&lt;P&gt;You double posted &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi, you can build/use a view to achieve what you want.&amp;nbsp; View can be created from pro or from sql.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="sqlkeywordcolor"&gt;select case&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;when Point A = 0, and Point B = 1 and Point C = 0&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="sqlkeywordcolor"&gt;THEN&amp;nbsp;&lt;SPAN&gt;Polyline A = 1&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="sqlkeywordcolor"&gt;WHEN&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Point A = 1, and Point B = 1 and Point C = 0 THEN Polyline A = 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="sqlkeywordcolor"&gt;ELSE&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Polyline A = 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="sqlkeywordcolor"&gt;END as status,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;attribute1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;attribute2,&lt;/P&gt;&lt;P&gt;from table a inner join table b on a.id = b.id&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 12:30:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/symbolize-polyline-feature-based-on-point-feature/m-p/1057552#M30167</guid>
      <dc:creator>VictorTey</dc:creator>
      <dc:date>2021-05-13T12:30:54Z</dc:date>
    </item>
  </channel>
</rss>

