<?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: Slope height in Mining Questions</title>
    <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45810#M119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/129054"&gt;Ansu Louw&lt;/A&gt; , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm afraid I'm a bit lost in the explanation... When you refer to the "actual height of the slope", are you referring to the elevation or the length of the slope?&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/123851_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;For what I understand you are not interested in the length of the brown line following the surface, but in the slope length, right? ... and you want to generate contours in a 50 m interval based on the length of the slope... If so, that will probably be a very complicated process and include some heavy coding (even if you would already have lines representing crests and toes)...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2015 12:06:55 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2015-08-25T12:06:55Z</dc:date>
    <item>
      <title>Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45805#M114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to determine the height of slopes from the actual toe to the crest, without having to digitize the toe and crest. I'm not being lazy - the area of interest is large and it will be very time-consuming to do the latter. In essence, I am hoping there is a method in Spatial Analyst / 3D Analyst or a formula that I can use in Raster Calculator. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 12:26:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45805#M114</guid>
      <dc:creator>AnsuLouw1</dc:creator>
      <dc:date>2015-08-24T12:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45806#M115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you already have the crests and toes extracted?&lt;/P&gt;&lt;P&gt;How many of those slope "lines" should be created?&lt;/P&gt;&lt;P&gt;Should the length show the length using the surface or a straight line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 18:34:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45806#M115</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-24T18:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45807#M116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to digitize the toe and crest since a slope value only applies for a very small 3x3 window so all you could do is figure out the length by considering the slope value and aspect at a cell.&amp;nbsp; This would give you the ability to get an estimate of the surface length for the window...but consider that the slope derived for one cell is not know by its adjacent cells.&amp;nbsp; You task would be to make these cells self-aware.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Consider the following example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;a 500 m line of constant slope denotes the space between the toe and crest&lt;/LI&gt;&lt;LI&gt;each cell along that line has the same slope value&lt;/LI&gt;&lt;LI&gt;each cell doesnt what the values of its neighbor&lt;/LI&gt;&lt;LI&gt;the directional slope is currently not known since you need to determine the slope at various directions from those normal to the slope&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So the questions become:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;what criteria are you going to use to identify areas of 'constant' slope?&lt;/LI&gt;&lt;LI&gt;how are you going to identify the toe and crest from these data&lt;/LI&gt;&lt;LI&gt;how are you going to account for the fact that you could have slope areas with different slope values? (for example, a 25% slope on one side of a v-shaped valley versus 22% across...what if the valley is u-shaped?&lt;/LI&gt;&lt;LI&gt;once you have identified the areas, how do you ensure that the slope determined, its length and elevations are normal to the direction of the contours?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;You can easily do this in your head...can't you?&amp;nbsp; The task becomes translating your 'rules' to those that can be implemented in raster and/or vector world.&amp;nbsp; So some discussion of your criteria, would be useful.&amp;nbsp; Are you only interested in&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;particular slope, elevation difference values?&lt;/LI&gt;&lt;LI&gt;do you want to rule out areas where the elevation differences are less that a threshold values regardless of the slope?&lt;/LI&gt;&lt;LI&gt;etc etc&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Interesting problem, there are some things that could be done, but rather than throwing tools at a problem and hoping a solution arises, formulate the required steps to see if the solution is realizable without human intervention.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 21:36:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45807#M116</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-08-24T21:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45808#M117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have the toes and crests extracted as yet.&lt;/P&gt;&lt;P&gt;The client wants to see the height of the slope as contours / colour grid ranging from 0m to ± 300m in 50m intervals. The length should be the actual height of the slope and not the values of the surface elevation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 10:14:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45808#M117</guid>
      <dc:creator>AnsuLouw1</dc:creator>
      <dc:date>2015-08-25T10:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45809#M118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;mmm, just wondering... I remember that your friend William Huber did some magic in Avenue to detect crests... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would it be possible to generalize the aspect of the surface using the SciPy circular mean (&lt;EM&gt;scipy.stats.morestats.circmean(numpy_raster)&lt;/EM&gt;) as &lt;A href="https://community.esri.com/migrated-users/31672"&gt;Shaun Walbridge&lt;/A&gt;​ showed in his presentation at the DevSummit this year (&lt;A href="https://4326.us/scipy/#/" title="https://4326.us/scipy/#/"&gt;Python: Working With Scientific Data&lt;/A&gt; ) and using a moving window to detect opposite aspect angle ranges to depict crests and toes (won't work with rather flat and wide valleys)? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 11:51:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45809#M118</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-25T11:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45810#M119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/129054"&gt;Ansu Louw&lt;/A&gt; , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm afraid I'm a bit lost in the explanation... When you refer to the "actual height of the slope", are you referring to the elevation or the length of the slope?&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/123851_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;For what I understand you are not interested in the length of the brown line following the surface, but in the slope length, right? ... and you want to generate contours in a 50 m interval based on the length of the slope... If so, that will probably be a very complicated process and include some heavy coding (even if you would already have lines representing crests and toes)...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 12:06:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45810#M119</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-25T12:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45811#M120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes that is correct. I want the actual slope length (perhaps height is not the right wording).&lt;/P&gt;&lt;P&gt;If I were to simplify it and try obtain the length of the "brown line" what would you suggest?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 12:15:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45811#M120</guid>
      <dc:creator>AnsuLouw1</dc:creator>
      <dc:date>2015-08-25T12:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45812#M121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the additional explanation. To determine the slope length using the actual surface doesn't make things easier. I would probably apply some of the code used for this solution: &lt;A href="https://community.esri.com/message/509218"&gt;Re: Creating a surface buffer?&lt;/A&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, If you are more interested in the straight slope length between crest and toe, than the straight line would make it less complex. Now the idea of creating contours that represent an equal slope length, makes things ever more complex. It would require to create multiple slope lines (many), determine points on these lines and the interval mentioned (50m) and connect these to form lines (and determine if the interval should start on the crest or the toe). Additionally mountains should be isolated for this process. Sounds like a very interesting problem, but pretty complex...&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create 3D toe and crest lines&lt;/LI&gt;&lt;LI&gt;Iterate points on the crest line using an interval &lt;/LI&gt;&lt;LI&gt;Snap to the nearest toe line on both sides of the crest line&lt;/LI&gt;&lt;LI&gt;Determine elevation of crest and toe point &lt;/LI&gt;&lt;LI&gt;Create 3D slope line and calculate 3D length of line&lt;/LI&gt;&lt;LI&gt;Iterate through resulting 3D slope lines, and extract contour interval point, and construct contour line.&lt;/LI&gt;&lt;LI&gt;Optionally adapt the contour line to the surface to make the slope contour follow the surface...&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I said... pretty complex..., but not impossible...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 16:58:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45812#M121</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-25T16:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45813#M122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;mmm... I think this is the (ancient) thread I was talking about &lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=995&amp;amp;t=303181" title="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=995&amp;amp;t=303181"&gt;Finding peaks from a DEM&lt;/A&gt; where &lt;A href="https://community.esri.com/migrated-users/62455"&gt;William Huber&lt;/A&gt;​ collaborated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 17:44:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45813#M122</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-08-26T17:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45814#M123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will have a look through Bill's links later, but I do remember him doing something like this and curvature is coming to mind, but don't quote me.&amp;nbsp; Some of my concerns in my original post still haven't be answered as yet even if the surface length is still being sought after.&amp;nbsp; Contour lines would help IFFF they are at least representative of the underlying DEM, you can atleast propagate normal lines etc.&amp;nbsp; I will have a look, just trying to finish up some einsum stuff&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 22:15:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45814#M123</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-08-26T22:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Slope height</title>
      <link>https://community.esri.com/t5/mining-questions/slope-height/m-p/45815#M124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan, &lt;/P&gt;&lt;P&gt;Many thanks for your response. It is much appreciated.&lt;/P&gt;&lt;P&gt;Your questions have got me questioning myself. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am busy digitizing the crest and the toe as I realized that this will be necessary. I realize i need to calculate the difference in height between the toe and crest; but I don't want to display the actual difference in elevation values between the toe and the crest but rather the length of the slope from the toe (i.e. 0m to e.g. 300m).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xander has given me a pretty good sense of how to obtain this. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 09:28:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/mining-questions/slope-height/m-p/45815#M124</guid>
      <dc:creator>AnsuLouw1</dc:creator>
      <dc:date>2015-08-27T09:28:13Z</dc:date>
    </item>
  </channel>
</rss>

