Skip to content

Commit 82e5fc5

Browse files
committed
merge
2 parents f1c3e34 + 1be4f95 commit 82e5fc5

File tree

6 files changed

+30
-13
lines changed

6 files changed

+30
-13
lines changed

content/tutorials/earthworks/basics.qmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This tutorial covers:
6666
This tutorial can be run as a
6767
[computational notebook](https://grass-tutorials.osgeo.org/content/tutorials/earthworks/basics.ipynb).
6868
Learn how to work with notebooks with the tutorial
69-
[Get started with GRASS & Python in Jupyter Notebooks](./get_started/fast_track_grass_and_python.qmd).
69+
[Get started with GRASS & Python in Jupyter Notebooks](./../get_started/fast_track_grass_and_python.qmd).
7070
:::
7171

7272
# Setup
@@ -401,4 +401,8 @@ m.show()
401401

402402
:::
403403

404-
![Contours](images/basics_06.webp)
404+
<<<<<<< HEAD
405+
![Contours](images/basics_06.webp)
406+
=======
407+
![Contours](images/basics_06.webp)
408+
>>>>>>> upstream/main

content/tutorials/earthworks/gullies.qmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ try the landscape evolution model
8080
This tutorial can be run as a
8181
[computational notebook](https://grass-tutorials.osgeo.org/content/tutorials/earthworks/gullies.ipynb).
8282
Learn how to work with notebooks in the tutorial
83-
[Get started with GRASS & Python in Jupyter Notebooks](./get_started/fast_track_grass_and_python.qmd).
83+
[Get started with GRASS & Python in Jupyter Notebooks](./../get_started/fast_track_grass_and_python.qmd).
8484
:::
8585

8686
# Setup
@@ -355,4 +355,8 @@ m.show()
355355

356356
![Gullies](images/gullies_03.webp)
357357

358-
![Volumetric change](images/gullies_04.webp)
358+
<<<<<<< HEAD
359+
![Volumetric change](images/gullies_04.webp)
360+
=======
361+
![Volumetric change](images/gullies_04.webp)
362+
>>>>>>> upstream/main

content/tutorials/earthworks/levees.qmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This tutorial covers:
6363
This tutorial can be run as a
6464
[computational notebook](https://grass-tutorials.osgeo.org/content/tutorials/earthworks/levees.ipynb).
6565
Learn how to work with notebooks in the tutorial
66-
[Get started with GRASS & Python in Jupyter Notebooks](./get_started/fast_track_grass_and_python.qmd).
66+
[Get started with GRASS & Python in Jupyter Notebooks](./../get_started/fast_track_grass_and_python.qmd).
6767
:::
6868

6969
# Setup
@@ -643,4 +643,8 @@ m.save("images/levees_09.webp")
643643

644644
:::
645645

646-
![Flood simulation](images/levees_09.webp)
646+
<<<<<<< HEAD
647+
![Flood simulation](images/levees_09.webp)
648+
=======
649+
![Flood simulation](images/levees_09.webp)
650+
>>>>>>> upstream/main

content/tutorials/earthworks/synthesis.qmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Terrain Synthesis
7272
This tutorial can be run as a
7373
[computational notebook](https://grass-tutorials.osgeo.org/content/tutorials/earthworks/synthesis.ipynb).
7474
Learn how to work with notebooks with the tutorial
75-
[Get started with GRASS & Python in Jupyter Notebooks](./get_started/fast_track_grass_and_python.qmd).
75+
[Get started with GRASS & Python in Jupyter Notebooks](./../get_started/fast_track_grass_and_python.qmd).
7676
:::
7777

7878
# Setup
@@ -440,4 +440,8 @@ m.show()
440440

441441
![Terrain synthesis](images/synthesis_06.webp)
442442

443-
![Volumetric change](images/synthesis_07.webp)
443+
<<<<<<< HEAD
444+
![Volumetric change](images/synthesis_07.webp)
445+
=======
446+
![Volumetric change](images/synthesis_07.webp)
447+
>>>>>>> upstream/main

content/tutorials/map_algebra/basic_map_algebra.qmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ description: >
88
Learn the basics of map algebra in GRASS
99
including arithmetic, functions, and logic.
1010
Use map algebra to model a landscape.
11-
thumbnail: images/map_algebra_00.webp
11+
image: images/map_algebra_01.webp
1212
links:
13+
g_region: "[g.region](https://grass.osgeo.org/grass-stable/manuals/g.region.html)"
1314
r_mapcalc: "[r.mapcalc](https://grass.osgeo.org/grass-stable/manuals/r.mapcalc.html)"
1415
r_mapcalc_simple: "[r.mapcalc.simple](https://grass.osgeo.org/grass-stable/manuals/r.mapcalc.simple.html)"
1516
r_series: "[r.series](https://grass.osgeo.org/grass-stable/manuals/r.series.html)"
@@ -150,7 +151,7 @@ Map algebra operators, functions, and variables in this tutorial
150151

151152
# Setup
152153
Start a GRASS session in a new project with a Cartesian (XY) coordinate system.
153-
Use [g.region](https://grass.osgeo.org/grass-stable/manuals/g.region.html)
154+
Use {{< meta links.g_region >}}
154155
to set the extent and resolution of the computational region.
155156
Since we are working in a Cartesian coordinate system,
156157
we can simply create a region starting at the origin
@@ -285,7 +286,7 @@ Print the rescaled elevation range with
285286
```{bash}
286287
r.mapcalc expression="elevation = fractal / 10"
287288
r.colors map=elevation color=elevation
288-
r.info -r map=elevation format=plain
289+
r.info -r map=elevation
289290
```
290291
## Python
291292
```{python}

content/tutorials/map_algebra/images/map_algebra_01.svg

Lines changed: 2 additions & 2 deletions
Loading

0 commit comments

Comments
 (0)