<?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 Need a reclassify tool for vector polygons in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246445#M3456</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am working with a polygon layer and need to classify three different fields by quartile based on the value for each record.&amp;nbsp; My field values range from integers to very long decimal numbers.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Essentially what I want to do is create a new, corresponding field for each of the three existing fields.&amp;nbsp; Each record in the new field will have the values 1, 2, 3, or 4 to indicate the quartile in which the existing value fell. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any suggestions!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 13 Nov 2011 17:29:19 GMT</pubDate>
    <dc:creator>ChrisPlano</dc:creator>
    <dc:date>2011-11-13T17:29:19Z</dc:date>
    <item>
      <title>Need a reclassify tool for vector polygons</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246445#M3456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am working with a polygon layer and need to classify three different fields by quartile based on the value for each record.&amp;nbsp; My field values range from integers to very long decimal numbers.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Essentially what I want to do is create a new, corresponding field for each of the three existing fields.&amp;nbsp; Each record in the new field will have the values 1, 2, 3, or 4 to indicate the quartile in which the existing value fell. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any suggestions!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 Nov 2011 17:29:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246445#M3456</guid>
      <dc:creator>ChrisPlano</dc:creator>
      <dc:date>2011-11-13T17:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need a reclassify tool for vector polygons</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246446#M3457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Agreed, trying to do basically the same thing.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 21:42:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246446#M3457</guid>
      <dc:creator>ChrisChutter</dc:creator>
      <dc:date>2012-03-07T21:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need a reclassify tool for vector polygons</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246447#M3458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I found that you can use python scripting to do this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;def calculate(x):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; if x &amp;lt;= 0.215316:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; elif x &amp;lt;= 0.645051:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; elif x &amp;lt;= 1.495379:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; elif x &amp;lt;= 11.260259:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 4&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;calculate(!NEW FIELD!)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Define your breaks using the 'elif' lines and define the quartiles using the 'return' lines.&amp;nbsp; The top bit should go into the top box and the bottom line should go into the bottom box in the calculate field dialog box. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if this is unclear.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 01:03:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246447#M3458</guid>
      <dc:creator>ChrisPlano</dc:creator>
      <dc:date>2012-03-08T01:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need a reclassify tool for vector polygons</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246448#M3459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I should say that I used the symbology tab in the layer properties to determine where my breaks were.&amp;nbsp; Say you want 4 classes with an equal number of values, and it should give you the breaks for quartiles.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 01:04:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246448#M3459</guid>
      <dc:creator>ChrisPlano</dc:creator>
      <dc:date>2012-03-08T01:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need a reclassify tool for vector polygons</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246449#M3460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would consider the &lt;/SPAN&gt;&lt;A href="http://ideas.arcgis.com/apex/ideaSearchResults?s=reclassify+polygons&amp;amp;searchButton=search"&gt;ideas page&lt;/A&gt;&lt;SPAN&gt; as someone has discussed this request.&amp;nbsp; Adding more points to this post will raise the awareness of the request to the decision makers.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 11:48:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246449#M3460</guid>
      <dc:creator>JeffreySwain</dc:creator>
      <dc:date>2012-03-08T11:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need a reclassify tool for vector polygons</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246450#M3461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have also had the same issue.&amp;nbsp; A Reclassify tool like the one available for rasters would be great (maybe re-using the RemapValue and RemapTable functionality?).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2018 17:03:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/need-a-reclassify-tool-for-vector-polygons/m-p/246450#M3461</guid>
      <dc:creator>RobertTrotter</dc:creator>
      <dc:date>2018-11-23T17:03:10Z</dc:date>
    </item>
  </channel>
</rss>

