Skip to content

Commit

Permalink
primers pdf amb tots els mapes
Browse files Browse the repository at this point in the history
  • Loading branch information
jospueyo committed Jul 20, 2024
1 parent 277727c commit 36c1434
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 0 deletions.
Binary file added clim_class.pdf
Binary file not shown.
18 changes: 18 additions & 0 deletions clim_class.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Classificacions climàtiques"
format: pdf
execute:
echo: false
warning: false
---

```{r}
#| output: asis
library(purrr)
folder <- "assets/climate_classifications/"
list.files(folder) |>
walk(\(f) cat(glue::glue("![]({folder}/{f})"), "<br>"))
```

Binary file added idoneitat.pdf
Binary file not shown.
18 changes: 18 additions & 0 deletions idoneitat.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Idoneïtat dels cultius"
format: pdf
execute:
echo: false
warning: false
---

```{r}
#| output: asis
library(purrr)
folder <- "assets/suitability/"
list.files(folder) |>
walk(\(f) cat(glue::glue("![]({folder}{f})"), "<br>"))
```

Binary file added idoneitat_dotacions.pdf
Binary file not shown.
18 changes: 18 additions & 0 deletions idoneitat_dotacions.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Idoneïtat dels cultius segons dotacions de regadiu"
format: pdf
execute:
echo: false
warning: false
---

```{r}
#| output: asis
library(purrr)
folder <- "assets/suitability_irrig/"
list.files(folder) |>
walk(\(f) cat(glue::glue("![]({folder}{f})"), "<br>"))
```

0 comments on commit 36c1434

Please sign in to comment.