Research SitesNavigationUser loginWho's onlineThere are currently 1 user and 5 guests online.
Online users
|
Geologic-Scale ErosionSubmitted by dylan on Thu, 2005-08-11 00:10.
100 iterations of mass removal based on preferential flow of water as calculated by r.topidx in GRASS. Notice how landform is cutdown most in stream channels, least at the ridges. The basins between ridges appear to "fill" with sediment near the 50th iteration as the entire landform is lowered to sea level (0m). Absolute change in elevation is visble in the elevation profiles below. Example GRASS commands below. Here is a link to a movie, containing all 100 iterations. Note that this is *not* a direct measure of sediment removal, mearly one means of visualizing the qualitative effects of sediment removal. Actual sediment flow values could possibly be calculated with r.terraflow and some expert knowledge of the area. In addition, sediment transport models such as RUSLE, USPED, and SIMWE will provide a quantitative erosion AND deposition estimate. Details here:
r.topidx in=elev_meters out=ti
# for x in `seq 0 1 100` do r.mapcalc "e = if( float(elev_meters - float($x*ti)) > 0.0 ,float(elev_meters - float($x*ti) ), 0.0 )" r.shaded.relief map=e shade=s1 d.rast s1 d.barscale at=0,0 d.out.png out=e_$x res=1 d.erase done convert `ls *.png | sort -n -k2 -t"_"` movie.mpg #make an elevation profile ( categories: )
|