├── .gitignore ├── LICENSE ├── README.html ├── README.md ├── code ├── functions.R └── plotFunctions.R ├── data ├── lake_aasee.geojson └── temperature_values.csv ├── egu_open_reproducible_research.pdf ├── egu_shortcourse.Rproj ├── figures ├── idw.png ├── idw_var1.png ├── idw_var10.png ├── idw_var2.png ├── idw_var3.png ├── idw_var4.png ├── idw_var5.png ├── idw_var6.png ├── idw_var7.png ├── idw_var8.png ├── idw_var9.png └── studyarea.png ├── install.R ├── references.bib ├── rmd_idw.Rmd ├── rmd_idw.html └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/LICENSE -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/README.md -------------------------------------------------------------------------------- /code/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/code/functions.R -------------------------------------------------------------------------------- /code/plotFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/code/plotFunctions.R -------------------------------------------------------------------------------- /data/lake_aasee.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/data/lake_aasee.geojson -------------------------------------------------------------------------------- /data/temperature_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/data/temperature_values.csv -------------------------------------------------------------------------------- /egu_open_reproducible_research.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/egu_open_reproducible_research.pdf -------------------------------------------------------------------------------- /egu_shortcourse.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/egu_shortcourse.Rproj -------------------------------------------------------------------------------- /figures/idw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw.png -------------------------------------------------------------------------------- /figures/idw_var1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var1.png -------------------------------------------------------------------------------- /figures/idw_var10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var10.png -------------------------------------------------------------------------------- /figures/idw_var2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var2.png -------------------------------------------------------------------------------- /figures/idw_var3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var3.png -------------------------------------------------------------------------------- /figures/idw_var4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var4.png -------------------------------------------------------------------------------- /figures/idw_var5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var5.png -------------------------------------------------------------------------------- /figures/idw_var6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var6.png -------------------------------------------------------------------------------- /figures/idw_var7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var7.png -------------------------------------------------------------------------------- /figures/idw_var8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var8.png -------------------------------------------------------------------------------- /figures/idw_var9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/idw_var9.png -------------------------------------------------------------------------------- /figures/studyarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/figures/studyarea.png -------------------------------------------------------------------------------- /install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/install.R -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/references.bib -------------------------------------------------------------------------------- /rmd_idw.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/rmd_idw.Rmd -------------------------------------------------------------------------------- /rmd_idw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusKonk/reproducible-interpolation-short-course/HEAD/rmd_idw.html -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | r-4.3.1-2023-06-16 2 | --------------------------------------------------------------------------------