<?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 Custom Arcade Symbology question in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1578812#M92286</link>
    <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm attempting to create custom symbology on a tesselation layer.&amp;nbsp; Currently I have the symbology as checkerboard style, but would like to&amp;nbsp; instead have the symbology to be like the selected polygons below.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ceb_1-1737745022563.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/124022i3A77D7698AC12DB3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ceb_1-1737745022563.png" alt="ceb_1-1737745022563.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Ideally, a more alternating checkerboard type of style.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the expression I am currently using:&amp;nbsp;&lt;/P&gt;&lt;P&gt;var id = Split($feature.GRID_ID, '-')&lt;BR /&gt;var x = ToCharCode(id[0])&lt;BR /&gt;var y = Number(id[1])&lt;/P&gt;&lt;P&gt;return iif(x % 1 == y % 2, 'X', 'Y')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if my ideal symbology can be achieved using arcade or if I should try other ways of achieving it.&amp;nbsp; Any thoughts or suggestions are appreciated!&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jan 2025 19:06:33 GMT</pubDate>
    <dc:creator>ceb</dc:creator>
    <dc:date>2025-01-24T19:06:33Z</dc:date>
    <item>
      <title>Custom Arcade Symbology question</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1578812#M92286</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm attempting to create custom symbology on a tesselation layer.&amp;nbsp; Currently I have the symbology as checkerboard style, but would like to&amp;nbsp; instead have the symbology to be like the selected polygons below.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ceb_1-1737745022563.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/124022i3A77D7698AC12DB3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ceb_1-1737745022563.png" alt="ceb_1-1737745022563.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Ideally, a more alternating checkerboard type of style.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the expression I am currently using:&amp;nbsp;&lt;/P&gt;&lt;P&gt;var id = Split($feature.GRID_ID, '-')&lt;BR /&gt;var x = ToCharCode(id[0])&lt;BR /&gt;var y = Number(id[1])&lt;/P&gt;&lt;P&gt;return iif(x % 1 == y % 2, 'X', 'Y')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if my ideal symbology can be achieved using arcade or if I should try other ways of achieving it.&amp;nbsp; Any thoughts or suggestions are appreciated!&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 19:06:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1578812#M92286</guid>
      <dc:creator>ceb</dc:creator>
      <dc:date>2025-01-24T19:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Arcade Symbology question</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1578844#M92289</link>
      <description>&lt;P&gt;Assuming your grid is like A-0, B-0, A-1, B-1 etc., would this work?&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;(x % 2 == 1) &amp;amp;&amp;amp; (y % 2 == 0)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 21:00:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1578844#M92289</guid>
      <dc:creator>DavidSolari</dc:creator>
      <dc:date>2025-01-24T21:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Arcade Symbology question</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1579054#M92309</link>
      <description>&lt;P&gt;Hi David - Thanks for your response!&amp;nbsp; My grid does follow the A-0, B-0 convention.&amp;nbsp; Here is what it looks like after trying your suggestion:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ceb_2-1737982722562.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/124080i239FD00F59A29380/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ceb_2-1737982722562.png" alt="ceb_2-1737982722562.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It's close but doesn't select the "alternating" diamonds&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 12:59:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/custom-arcade-symbology-question/m-p/1579054#M92309</guid>
      <dc:creator>ceb</dc:creator>
      <dc:date>2025-01-27T12:59:48Z</dc:date>
    </item>
  </channel>
</rss>

