Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion content/tutorials/earthworks/gullies.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ to scale it vertically so that the mountains are not too high.
```{bash}
r.surf.fractal output=fractal seed=1
r.mapcalc expression="fractal = fractal / 10" --overwrite
r.stream.extract elevation=fractal accumulation=accumulation threshold=1000 stream_vector=streams
```

## Python
Expand Down
4 changes: 2 additions & 2 deletions content/tutorials/earthworks/levees.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ would be overtopped by a meter of surge.
## Command line

```{bash}
r.lake elevation=elevation water_level=1 lake=flooding coordinates=1109000,102750
r.lake elevation=elevation water_level=1 lake=flooding coordinates=1109000,102750 --overwrite
d.shade shade=relief color=elevation brighten=36
d.rast map=flooding
d.legend raster=flooding digits=1 color=white at=5,95,1,3
Expand Down Expand Up @@ -614,7 +614,7 @@ would be not overtopped by a meter of surge.
## Command line

```{bash}
r.lake elevation=earthworks water_level=1 lake=flooding coordinates=1109000,102750
r.lake elevation=earthworks water_level=1 lake=flooding coordinates=1109000,102750 --overwrite
d.shade shade=relief color=earthworks brighten=36
d.rast map=flooding
d.legend raster=flooding digits=1 color=white at=5,95,1,3
Expand Down
Loading