<?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: DEM to Polygon in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255459#M3639</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh yes. Thanks a lot. I get it done correctly by splitting the workflow in the expression&amp;nbsp;as suggested by Curtis Price. Great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jul 2019 14:42:16 GMT</pubDate>
    <dc:creator>PawanThapa</dc:creator>
    <dc:date>2019-07-26T14:42:16Z</dc:date>
    <item>
      <title>DEM to Polygon</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255455#M3635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Working on a DEM (30m x 30m raster)&amp;nbsp;of a large area, I need to find out the area (polygons) which is greater that 5,000 hectares and within which average slope is less than 10 degree. The shape of the area/polygon- more it is towards square or reactangle better it is.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I cannot figure out which step would enable me to achieve this. Can you experts guide me or give me hint, please?&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2019 07:09:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255455#M3635</guid>
      <dc:creator>PawanThapa</dc:creator>
      <dc:date>2019-07-24T07:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: DEM to Polygon</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255456#M3636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The raster tools have capabilities that make this pretty straightforward. Check out the following tools:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Slope&lt;/LI&gt;&lt;LI&gt;Con&lt;/LI&gt;&lt;LI&gt;Region Group&lt;/LI&gt;&lt;LI&gt;Zonal Geometry&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest trying them on your data (using a smaller environment extent to save time) until you get a workflow that gets you what you want. Laster, you can expand the extent to process the full study area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the&amp;nbsp;magic of map algebra to do this analysis in Raster Calculator, using an expression that combines these tools. This may be helpful if you want to easily tweak your parameters once you have the process working. In this example I am assuming your xy coordinates are in meters so 1e6 is a 1 km2 (1000x1000 m2) minimum area.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;RegionGroup&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Con&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;ZonalGeometry&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;
    RegionGroup&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Con&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Slope&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"dem"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
        &lt;SPAN class="string token"&gt;"Value"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"AREA"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1e6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you have these zones defined, you can convert them to polygons with the Raster To Polygon tool. A good way to then&amp;nbsp;identify the "rounder" polygons would be to calculate the area / perimeter ratio (larger ratios are "rounder" polygons).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:36:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255456#M3636</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-11T12:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: DEM to Polygon</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255457#M3637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your suggestion. I think I understand it correctly and looks like it produce teh resultst hat i want in such straight forward way - but knowing only after you have mentioned it. But somehow when I copied the "expression" given by you in the raster calculator window--it shows error and doesnot run further..why can it be? I have changed the "dem" with my dem file name..rest i use as it is written by you. Do not know what t odo with the terms "Value" and "Area" in your expression..i leave as it is in my expression--and it does not run. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2019 11:54:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255457#M3637</guid>
      <dc:creator>PawanThapa</dc:creator>
      <dc:date>2019-07-26T11:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: DEM to Polygon</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255458#M3638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2019 12:53:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255458#M3638</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-07-26T12:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: DEM to Polygon</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255459#M3639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh yes. Thanks a lot. I get it done correctly by splitting the workflow in the expression&amp;nbsp;as suggested by Curtis Price. Great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2019 14:42:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255459#M3639</guid>
      <dc:creator>PawanThapa</dc:creator>
      <dc:date>2019-07-26T14:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: DEM to Polygon</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255460#M3640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To understand the tools, please read up each of the tools so you know what they do and their syntax. "Value" is the value field in the raster table, and "AREA" is an option for the zonal geometry tool. Again I suggest experimenting with these tools individually first instead of copying and pasting map algebra code so you know what you are doing. BTW "dem" would be a raster layer in your map, not a path to disk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2019 14:42:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/dem-to-polygon/m-p/255460#M3640</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2019-07-26T14:42:57Z</dc:date>
    </item>
  </channel>
</rss>

