<?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 Re: List possible combinations - Arcade in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1535339#M61344</link>
    <description>&lt;P&gt;Yes the phenomena correspond to the name field.&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;</description>
    <pubDate>Wed, 04 Sep 2024 23:54:05 GMT</pubDate>
    <dc:creator>explocarto</dc:creator>
    <dc:date>2024-09-04T23:54:05Z</dc:date>
    <item>
      <title>List possible combinations - Arcade</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1533957#M61279</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a table with this structure.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="explocarto_0-1725232114727.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114107iC3B9C9C0C3AB70E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="explocarto_0-1725232114727.png" alt="explocarto_0-1725232114727.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As output i need a FeatureSet wich lists by zone all the possible combinations between "season_begin" and "season_end". Count the number of phenomena between these combinations and the average.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="explocarto_1-1725232434650.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114108i469ECDD00803179A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="explocarto_1-1725232434650.png" alt="explocarto_1-1725232434650.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Can someone help me ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2024 23:17:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1533957#M61279</guid>
      <dc:creator>explocarto</dc:creator>
      <dc:date>2024-09-01T23:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: List possible combinations - Arcade</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1534744#M61309</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Can you help me again ?&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2024 22:24:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1534744#M61309</guid>
      <dc:creator>explocarto</dc:creator>
      <dc:date>2024-09-03T22:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: List possible combinations - Arcade</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1534922#M61321</link>
      <description>&lt;P&gt;Are the "phenomena" the name field? Or is that some other field not pictured?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 14:05:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1534922#M61321</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-09-04T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: List possible combinations - Arcade</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1535339#M61344</link>
      <description>&lt;P&gt;Yes the phenomena correspond to the name field.&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 23:54:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1535339#M61344</guid>
      <dc:creator>explocarto</dc:creator>
      <dc:date>2024-09-04T23:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: List possible combinations - Arcade</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1535568#M61362</link>
      <description>&lt;P&gt;Honestly unsure how to get an average from a string field, but this will give you the count of phenomena per unique zone/begin/end combination.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var fs = FeatureSetByPortalItem(
  Portal('your portal url'),
  'itemid of your service',
  0, // layer index
  ['fields', 'you', 'need'],
  false
)

return GrouBy(
  fs,
  [ 'zone', 'season_begin', 'season_end' ],
  [
    { name: 'the_count', expression: 'phenomena', statistic: 'count' },
  ]
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 05 Sep 2024 16:45:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/list-possible-combinations-arcade/m-p/1535568#M61362</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-09-05T16:45:48Z</dc:date>
    </item>
  </channel>
</rss>

