DESCRIPTION
r.carve accepts vector stream data as input, transforms them to
raster, and subtracts a default-depth + additional-depth from a DEM. If
the given width is more than 1 cell, it will carve the stream with the
given width. With the -n flag it should eliminate all flat cells within
the stream, so when and if the water gets into the stream it will
flow. The points option generates x,y,z for points which define the stream
with the z-value of the bottom of the carved-in stream. These points
can then be combined with contours to interpolate a new DEM with
better representation of valleys.
NOTES
r.carve does not create a depressionless DEM because many
depressions are in flat areas and not in the streams.
EXAMPLE
North Carolina sample dataset:
# set computational region
g.region raster=elev_lid792_1m -p
# visualize original data
d.mon wx0
d.rast elev_lid792_1m
d.vect streams
# carve
r.carve rast=elev_lid792_1m vect=streams out=carved_dem width=3 depth=0.5
# visualize resulting carved DEM map
d.rast carved_dem
# visualize
r.relief input=elev_lid792_1m output=elev_lid792_1m_shaded
r.relief input=carved_dem output=carved_dem_shaded
d.rast elev_lid792_1m_shaded
d.erase
d.rast carved_dem_shaded
# flow accumulation
r.watershed elevation=elev_lid792_1m accumulation=elev_lid792_1m_accum
r.watershed elevation=carved_dem accumulation=carved_dem_accum
d.rast elev_lid792_1m_accum
d.erase
d.rast carved_dem_accum
Fig: Original 1m LiDAR based DEM with vector streams map on top
|
Fig: Original 1m LiDAR based DEM shown as shaded terrain
|
Fig: Carved 1m LiDAR based DEM
|
Fig: Carved 1m LiDAR based DEM shown as shaded terrain
|
Fig: Flow accumulation in original 1m LiDAR based DEM
|
Fig: Flow accumulation in carved 1m LiDAR based DEM
|
KNOWN ISSUES
The module does not operate yet in latitude-longitude locations. It
has not been thoroughly tested, so not all options may work properly -
but this was the intention.
REFERENCES
Terrain
modeling and Soil Erosion Simulations for Fort Hood and Fort Polk test
areas, by Helena Mitasova, Lubos Mitas, William M. Brown, Douglas
M. Johnston, GMSL (Report for CERL 1999)
SEE ALSO
r.flow,
r.fill.dir,
r.watershed
AUTHOR
Bill Brown (GMSL)
GRASS 6 update: Brad Douglas
Last changed: $Date: 2017-05-18 13:33:28 +0200 (Thu, 18 May 2017) $