From 2bbf47afd1b0b99fccd924d0e757c43cfcaf70c4 Mon Sep 17 00:00:00 2001 From: RAJVEER42 Date: Sun, 19 Jul 2026 22:46:20 +0530 Subject: [PATCH] Fix broken addon manual links (r.runoff, r.windfetch) Both tools are addons, but their manual pages were linked at the core manual path, which returns 404. Point them to manuals/addons/ instead. --- content/tutorials/parallelization/SIMWE_parallelization.qmd | 2 +- content/tutorials/windfetch/windfetch.qmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/tutorials/parallelization/SIMWE_parallelization.qmd b/content/tutorials/parallelization/SIMWE_parallelization.qmd index 9deb677..4ab9b98 100644 --- a/content/tutorials/parallelization/SIMWE_parallelization.qmd +++ b/content/tutorials/parallelization/SIMWE_parallelization.qmd @@ -534,7 +534,7 @@ We will then create an input precipitation depth raster, assuming uniform rainfa tools.r_mapcalc(expression=f"rainfall_{huc12} = {depth}") ``` -With that we estimate runoff (rainfall excess) with [r.runoff](https://grass.osgeo.org/grass-stable/manuals/r.runoff.html), +With that we estimate runoff (rainfall excess) with [r.runoff](https://grass.osgeo.org/grass-stable/manuals/addons/r.runoff.html), which estimates for each cell total runoff depth in mm for the duration of the storm using SCS Curve Number method. diff --git a/content/tutorials/windfetch/windfetch.qmd b/content/tutorials/windfetch/windfetch.qmd index b54682b..a8772cf 100644 --- a/content/tutorials/windfetch/windfetch.qmd +++ b/content/tutorials/windfetch/windfetch.qmd @@ -26,7 +26,7 @@ jupyter: python3 # Introduction Wind fetch — the distance wind blows across open water — is a key factor in wave generation and shoreline exposure. It is widely used in coastal engineering to estimate wave height, and in ecology to assess habitat vulnerability to wave energy. This tutorial demonstrates how to use the -[r.windfetch](https://grass.osgeo.org/grass-devel/manuals/r.windfetch.html) addon in GRASS to compute fetch lengths for a case study on the North Carolina coast. +[r.windfetch](https://grass.osgeo.org/grass-stable/manuals/addons/r.windfetch.html) addon in GRASS to compute fetch lengths for a case study on the North Carolina coast. We will: