<?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: Attribute Driven symbology in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1169015#M54564</link>
    <description>&lt;P&gt;taking dummy points and specifying symbology at the ranges I needed in Counts and Amounts (color) seemed to do what I was trying to accomplish!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your help!&lt;/P&gt;</description>
    <pubDate>Thu, 28 Apr 2022 19:25:55 GMT</pubDate>
    <dc:creator>SLouq</dc:creator>
    <dc:date>2022-04-28T19:25:55Z</dc:date>
    <item>
      <title>Attribute Driven symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1166668#M54299</link>
      <description>&lt;P&gt;I have a map which which has a number of points on it. Each point will hold a value which will be input by a worker in the field. I want to create color coded symbology based on a range of numbers, (ie 0-499, 500-999, etc.) How can I do this in ArcGIS Pro? I know how to do it based off of numbers already in an attribute table but how do you set up symbology for a feature service which hasn't been updated yet?&lt;/P&gt;&lt;P&gt;The idea is once I get it working in ArcGIS Pro on my desktop then I can transfer it over to a web map accessed through Collector by the workers in the field. Can anyone help me with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2022 15:59:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1166668#M54299</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2022-04-21T15:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Driven symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1168412#M54481</link>
      <description>&lt;P&gt;You'll want to use graduated colors symbology, and you'll have to temporarily create some dummy points first. Then it sounds like you know the process from there...&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Identify how many symbol classes you need - create that many temporary points in your feature class.&lt;/LI&gt;&lt;LI&gt;Populate the temporary points with different values covering the full range of possible future values.&lt;/LI&gt;&lt;LI&gt;Open the Symbology pane and change to Graduated Colors.&lt;/LI&gt;&lt;LI&gt;Assign the field and proper number of classes.&lt;/LI&gt;&lt;LI&gt;Adjust the Upper value in each class to define each symbol class range.&lt;/LI&gt;&lt;LI&gt;Update the class labels as necessary.&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Delete temporary points and publish the feature service.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Wed, 27 Apr 2022 16:09:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1168412#M54481</guid>
      <dc:creator>JesseWickizer</dc:creator>
      <dc:date>2022-04-27T16:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Driven symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1168426#M54482</link>
      <description>&lt;P&gt;Is there a way to create a template in ArcGIS Online to hold the ranges and assign the colors to the ranges in the template. Then have a web map reference that template?&amp;nbsp;&lt;/P&gt;&lt;P&gt;The hosted feature layer which will hold the features already exists in ArcGIS Online and I am trying to use that feature layer instead of creating a new one in ArcGIS Pro and then sharing it as a web layer&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 16:22:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1168426#M54482</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2022-04-27T16:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Driven symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1168465#M54487</link>
      <description>&lt;P&gt;you could set up the symbology with arcade in the web map to assign a "category" to each feature based on the range of values.&amp;nbsp; Here is example categorizing feature based on the StreetAddress range:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;if ($feature.StreetAddress &amp;gt; 0 &amp;amp;&amp;amp; $feature.StreetAddress &amp;lt;= 100){
    return "One"
}
else if ($feature.StreetAddress &amp;gt; 100 &amp;amp;&amp;amp; $feature.StreetAddress &amp;lt;= 200){
    return "Two"
}
else if ($feature.StreetAddress &amp;gt; 200 &amp;amp;&amp;amp; $feature.StreetAddress &amp;lt;= 300){
    return "Three"
}
else if ($feature.StreetAddress &amp;gt; 300){
    return "Maxed"
}
else {
    return "No Value"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then the Unique symbology is set up with symbols for "One", "Two", "Three", etc.&lt;/P&gt;&lt;P&gt;If you already have the entire range in the data, you should be able to symbolize by it.&amp;nbsp; If not, you can add what you have, then modify the JSON of the webmap drawingInfo to add the missing categories to the symbology/legend.&lt;/P&gt;&lt;P&gt;R_&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 17:59:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1168465#M54487</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2022-04-27T17:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Driven symbology</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1169015#M54564</link>
      <description>&lt;P&gt;taking dummy points and specifying symbology at the ranges I needed in Counts and Amounts (color) seemed to do what I was trying to accomplish!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2022 19:25:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/attribute-driven-symbology/m-p/1169015#M54564</guid>
      <dc:creator>SLouq</dc:creator>
      <dc:date>2022-04-28T19:25:55Z</dc:date>
    </item>
  </channel>
</rss>

