<?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: detemine domes in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17434#M271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Okay, I get some idea of what you´re heading for and the syntax. I tried it but it failed&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Okay -- try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Add "dtm20" to ArcMap as a raster layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Start Raster Calculator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Compose this expression.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;"dtm20" == FocalStatistics("dtm20",NbrCircle(5),"MAXIMUM")&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;This should give you a 1-0 grid where 1 (True) cells are where the cell is at the local maximum for the 5x5 circular neighborhood. This will include flat areas.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can play with it further once you get that far.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example of how to specify neighborhood are in the help for Focal Statistics.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Mar 2013 21:43:55 GMT</pubDate>
    <dc:creator>curtvprice</dc:creator>
    <dc:date>2013-03-13T21:43:55Z</dc:date>
    <item>
      <title>detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17429#M266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;you guys know how to determine domes in a raster. I thought something of "curvature", but still cannot distinguish them from basins. Maybe something with a specific concave/convex kurtosis... Anyone´s got some experience with this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your time!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2013 01:16:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17429#M266</guid>
      <dc:creator>MathiasHaarmann</dc:creator>
      <dc:date>2013-03-10T01:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17430#M267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;you guys know how to determine domes in a raster. I thought something of "curvature", but still cannot distinguish them from basins. &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bill Huber would probably have a better idea -- but I can't resist suggesting that if you're looking for local maxima you could try selecting areas where &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;(ingrid == focalmax(ingrid)) and (ingrid &amp;gt; focalmin(ingrid))&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using a larger-than-default neighborhood may help you find broader "domes" that have some flat areas on the top. These areas could then be collapsed to single-cells or points using the Zonal Geometry tool with the CENTROID option.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2013 05:24:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17430#M267</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-03-10T05:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17431#M268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Bill Huber would probably have a better idea -- but I can't resist suggesting that if you're looking for local maxima you could try selecting areas where &lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;(ingrid == focalmax(ingrid)) and (ingrid &amp;gt; focalmin(ingrid))&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Using a larger-than-default neighborhood may help you find broader "domes" that have some flat areas on the top. These areas could then be collapsed to single-cells or points using the Zonal Geometry tool with the CENTROID option.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;mh... result still looks quite blurry, especially that code. Maybe someone has got a more concrete approach?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2013 20:52:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17431#M268</guid>
      <dc:creator>MathiasHaarmann</dc:creator>
      <dc:date>2013-03-11T20:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17432#M269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, I slipped back into 9x map algebra. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a raster calculator syntax&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;("inraster" == FocalStatistics("inraster","#","MAXIMUM")) and 
("inraster" &amp;gt; FocalStatistics("inraster","#","MINIMUM"))&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using a larger-than-default neighborhood may help you find broader "domes" that have some flat areas on the top. These areas could then be collapsed to single-cells or points using the Zonal Geometry tool with the CENTROID option.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This will select areas where the center cell is the equal to or greater than the maximum of the neighborhood, as long as the whole neighborhood is not the same value (flat).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:42:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17432#M269</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-10T20:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17433#M270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sorry, I slipped back into 9x map algebra. &lt;BR /&gt;&lt;BR /&gt;Here's a raster calculator syntax&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;("inraster" == FocalStatistics("inraster","#","MAXIMUM")) and 
("inraster" &amp;gt; FocalStatistics("inraster","#","MINIMUM"))&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Using a larger-than-default neighborhood may help you find broader "domes" that have some flat areas on the top. These areas could then be collapsed to single-cells or points using the Zonal Geometry tool with the CENTROID option.&lt;BR /&gt;&lt;BR /&gt;This will select areas where the center cell is the equal to or greater than the maximum of the neighborhood, as long as the whole neighborhood is not the same value (flat).&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Okay, I get some idea of what you´re heading for and the syntax. I tried it but it failed:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;dtm20=&amp;gt; my raster-data, # = neighboorhood settings?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;("dtm20" == FocalStatistics("dtm20","5","MAXIMUM")) and 
("dtm20" &amp;gt; FocalStatistics("dtm20","5","MINIMUM"))&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;maybe a short explanation how to implement the code? Or maybe running "focal statistics" first, before some "raster calculator"?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot for your help&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:42:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17433#M270</guid>
      <dc:creator>MathiasHaarmann</dc:creator>
      <dc:date>2021-12-10T20:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17434#M271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Okay, I get some idea of what you´re heading for and the syntax. I tried it but it failed&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Okay -- try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Add "dtm20" to ArcMap as a raster layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Start Raster Calculator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Compose this expression.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;"dtm20" == FocalStatistics("dtm20",NbrCircle(5),"MAXIMUM")&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;This should give you a 1-0 grid where 1 (True) cells are where the cell is at the local maximum for the 5x5 circular neighborhood. This will include flat areas.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can play with it further once you get that far.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example of how to specify neighborhood are in the help for Focal Statistics.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Mar 2013 21:43:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17434#M271</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-03-13T21:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17435#M272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Okay -- try this:&lt;BR /&gt;&lt;BR /&gt;1. Add "dtm20" to ArcMap as a raster layer&lt;BR /&gt;2. Start Raster Calculator.&lt;BR /&gt;3. Compose this expression.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;"dtm20" == FocalStatistics("dtm20",NbrCircle(5),"MAXIMUM")&lt;/PRE&gt;&lt;BR /&gt;This should give you a 1-0 grid where 1 (True) cells are where the cell is at the local maximum for the 5x5 circular neighborhood. This will include flat areas.&lt;BR /&gt;&lt;BR /&gt;You can play with it further once you get that far.&lt;BR /&gt;&lt;BR /&gt;Example of how to specify neighborhood are in the help for Focal Statistics.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Okay, it worked out, thank you very much for your help. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just two more things: I guess, in this case, exclusion of focalmins (like �??and (ingrid &amp;gt; focalmin(ingrid))�?�) is redundant, is it (just got a look with "swipe" with the effects-toolbar)? I don´t think �??zonal geometry�?� makes sense in case of chosen cells of a raster, too.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Mar 2013 23:57:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17435#M272</guid>
      <dc:creator>MathiasHaarmann</dc:creator>
      <dc:date>2013-03-15T23:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17436#M273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am working on data which consists of many mound features &amp;gt; 50 m high and average 200 m diameter. Some are rounded and others are elongate. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The edges of the mounds are difficult to see on a shaded relief image, impeding the ability to place accurate zone boundaries around the mounds. Thus, using the measurement tool in ArcMap to find diameter is not a solution. Also, I would like to utilize an automated mound detection method.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone have a method for detecting mound boundaries? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Stapes&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2013 20:27:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17436#M273</guid>
      <dc:creator>FionaStapleton</dc:creator>
      <dc:date>2013-03-21T20:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17437#M274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;Does anyone have a method for detecting mound boundaries? &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You need a better definition of a mound. We got the local maximum nailed, but then you need to define the extent around the point. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example if you wanted to define the mound as all contiguous areas at or below the peaks we found using the above map algebra, within x amount of elevation, that would be a start.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2013 22:51:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17437#M274</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-03-21T22:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: detemine domes</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17438#M275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Well the mound boundary has been defined as the point where the 6 degree slope contour begins. So this could be used in addition to the peak.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So maybe: all contiguous areas between the 6 degree slope contour and the peak height..?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm a GIS amature..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Stapes&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 10:05:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/detemine-domes/m-p/17438#M275</guid>
      <dc:creator>FionaStapleton</dc:creator>
      <dc:date>2013-03-25T10:05:13Z</dc:date>
    </item>
  </channel>
</rss>

