├── .gitignore ├── FOSSGIS2025-examples.Rproj ├── README.md ├── _quarto.yml ├── caret.html ├── caret.qmd ├── data ├── predictors.tif ├── spain.gpkg └── temp_train.gpkg ├── misc_scv.html ├── misc_scv.qmd ├── misc_sml.html ├── misc_sml.qmd ├── mlr3.html ├── mlr3.qmd ├── poster ├── _extensions │ └── quarto-ext │ │ └── poster │ │ ├── _extension.yml │ │ ├── typst-show.typ │ │ └── typst-template.typ ├── _preposter.qmd ├── glossary-creator.R ├── images │ ├── EN-Funded by the EU-POS.jpg │ ├── aoa.png │ ├── blockCV.png │ ├── blockCV.svg │ ├── logo-remotesenising-en.png │ ├── prediction.png │ ├── qr.png │ ├── spain_cov1.png │ ├── spain_cov2.png │ ├── spain_cov3.png │ ├── spain_plots.png │ └── spain_plots.svg ├── pak-database.R ├── poster.png ├── poster.svg ├── poster_figures.R ├── poster_files │ └── figure-typst │ │ └── mermaid-figure-1.png └── poster_lr.png ├── tidymodels.html └── tidymodels.qmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /FOSSGIS2025-examples.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/FOSSGIS2025-examples.Rproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/README.md -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/_quarto.yml -------------------------------------------------------------------------------- /caret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/caret.html -------------------------------------------------------------------------------- /caret.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/caret.qmd -------------------------------------------------------------------------------- /data/predictors.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/data/predictors.tif -------------------------------------------------------------------------------- /data/spain.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/data/spain.gpkg -------------------------------------------------------------------------------- /data/temp_train.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/data/temp_train.gpkg -------------------------------------------------------------------------------- /misc_scv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/misc_scv.html -------------------------------------------------------------------------------- /misc_scv.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/misc_scv.qmd -------------------------------------------------------------------------------- /misc_sml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/misc_sml.html -------------------------------------------------------------------------------- /misc_sml.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/misc_sml.qmd -------------------------------------------------------------------------------- /mlr3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/mlr3.html -------------------------------------------------------------------------------- /mlr3.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/mlr3.qmd -------------------------------------------------------------------------------- /poster/_extensions/quarto-ext/poster/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/_extensions/quarto-ext/poster/_extension.yml -------------------------------------------------------------------------------- /poster/_extensions/quarto-ext/poster/typst-show.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/_extensions/quarto-ext/poster/typst-show.typ -------------------------------------------------------------------------------- /poster/_extensions/quarto-ext/poster/typst-template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/_extensions/quarto-ext/poster/typst-template.typ -------------------------------------------------------------------------------- /poster/_preposter.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/_preposter.qmd -------------------------------------------------------------------------------- /poster/glossary-creator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/glossary-creator.R -------------------------------------------------------------------------------- /poster/images/EN-Funded by the EU-POS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/EN-Funded by the EU-POS.jpg -------------------------------------------------------------------------------- /poster/images/aoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/aoa.png -------------------------------------------------------------------------------- /poster/images/blockCV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/blockCV.png -------------------------------------------------------------------------------- /poster/images/blockCV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/blockCV.svg -------------------------------------------------------------------------------- /poster/images/logo-remotesenising-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/logo-remotesenising-en.png -------------------------------------------------------------------------------- /poster/images/prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/prediction.png -------------------------------------------------------------------------------- /poster/images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/qr.png -------------------------------------------------------------------------------- /poster/images/spain_cov1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/spain_cov1.png -------------------------------------------------------------------------------- /poster/images/spain_cov2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/spain_cov2.png -------------------------------------------------------------------------------- /poster/images/spain_cov3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/spain_cov3.png -------------------------------------------------------------------------------- /poster/images/spain_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/spain_plots.png -------------------------------------------------------------------------------- /poster/images/spain_plots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/images/spain_plots.svg -------------------------------------------------------------------------------- /poster/pak-database.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/pak-database.R -------------------------------------------------------------------------------- /poster/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/poster.png -------------------------------------------------------------------------------- /poster/poster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/poster.svg -------------------------------------------------------------------------------- /poster/poster_figures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/poster_figures.R -------------------------------------------------------------------------------- /poster/poster_files/figure-typst/mermaid-figure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/poster_files/figure-typst/mermaid-figure-1.png -------------------------------------------------------------------------------- /poster/poster_lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/poster/poster_lr.png -------------------------------------------------------------------------------- /tidymodels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/tidymodels.html -------------------------------------------------------------------------------- /tidymodels.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LOEK-RS/FOSSGIS2025-examples/HEAD/tidymodels.qmd --------------------------------------------------------------------------------