Skip to content

Commit 8b4e5dd

Browse files
authored
Add Huidae's tutorials as external sources (#53)
* Add Huidae's tutorials as external sources * also update contributing file for the case of external tutorials * Address suggestions about contributing external tutorials
1 parent 85c7d43 commit 8b4e5dd

File tree

5 files changed

+50
-0
lines changed

5 files changed

+50
-0
lines changed

CONTRIBUTING.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,41 @@ You can either specify it in the YAML header (`thumbnail: image.webp`) or add `{
123123
![Slope map](slope.webp){.preview-image}
124124
```
125125

126+
## External tutorials
127+
128+
If you want to have your GRASS external tutorials listed, you can create a `.yml` file
129+
within the `content/tutorials/external` folder with the tutorial(s) you want to include.
130+
See an example below:
131+
132+
``` yaml
133+
- title: Species distribution modeling using Maxent in GRASS GIS
134+
path: https://ecodiv.earth/TutorialsNotes/sdmingrassgis/
135+
author: Paulo van Breugel
136+
image: content/tutorials/external/images/sdm_in_grass_tutorialbanner.png
137+
date: "2025-02-12"
138+
description: Species distribution models to predict the current and future distribution of the Almond-eyed Ringlet.
139+
categories: ['biogeography', 'ecology', 'intermediate', 'advanced']
140+
- title: Density distribution map of white-tailed deer
141+
path: https://ecodiv.earth/TutorialsNotes/deerdensities/index.html
142+
author: Paulo van Breugel
143+
image: content/tutorials/external/images/deer-density-tile.png
144+
date: "2025-01-10"
145+
description: Habitat suitability map for the white-tailed deer using spatial multicriteria analysis and spatial disaggregation in GRASS.
146+
categories: ['biogeography', 'MCDA', 'ecology', 'intermediate']
147+
```
148+
149+
Then, you need to add the path to your `.yml` file in the header of the
150+
`index.qmd` file in the root directory.
151+
152+
``` yaml
153+
contents:
154+
- content/tutorials
155+
- content/tutorials/external/your_tutorials.yml
156+
```
157+
158+
Do not forget to also include the image that will be used as thumbnail within
159+
`content/tutorials/external/images`.
160+
126161
## Submitting your contribution
127162
128163
Check your markdown with a [linter](https://dlaa.me/markdownlint/) and fix as many issues as you can. This will help keeping the tutorials consistent.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
- title: Deforestation study using GRASS
2+
path: https://workshop.isnew.info/grass-deforestation/
3+
author: Huidae Cho
4+
image: content/tutorials/external/images/deforestation_tutorial.png
5+
date: "2022-03-25"
6+
description: Estimate the forest change rate and learn some GRASS basic concepts.
7+
categories: ['bash', 'Python', 'beginner']
8+
- title: Physically-based hydrologic modeling using GRASS r.topmodel
9+
path: https://workshop.isnew.info/nsf-pose-2025-r.topmodel/
10+
author: Huidae Cho
11+
image: content/tutorials/external/images/subwatersheds-streams-watershed.png
12+
date: "2025-01-31"
13+
description: Workshop introducing the r.topmodel tool for hydrologic modeling.
14+
categories: ['bash', 'R', 'intermediate', 'hydrology']
168 KB
Loading
176 KB
Loading

index.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ listing:
1010
contents:
1111
- content/tutorials
1212
- content/tutorials/external/ecodiv.yml
13+
- content/tutorials/external/huidae_courses.yml
1314
sort: "date desc"
1415
type: grid
1516
categories: true

0 commit comments

Comments
 (0)