RShiny_Microclim is an interactive shiny app that facilitates the selection of microclimate datasets. The app compares 8 different datasets (SCAN, ERA5-Land, GLDAS, gridMET, NOAA NCDC, microclim, microclimUS, USCRN) both temporally and spatially. Once users selects a dataset, we offer this user guide, which explains how to access and download each dataset.
Git and Rstudio (Instructions)
Installation of the following R packages: shiny, raster, ggplot2, leaflet, shinyWidgets, shinythemes, shinycssloaders, magrittr, shinyBS, shinyjs, climateR, AOI, plotly, data.table, viridis, cicerone, utils, MALDIquant, ncdf4, rnoaa
pkgs <- c("shiny", "raster", "ggplot2", "leaflet", "shinyWidgets", "shinythemes", "shinycssloaders", "magrittr", "shinyBS", "shinyjs", "climateR", "AOI", "plotly", "data.table", "viridis", "cicerone", "utils", "MALDIquant", "ncdf4", "rnoaa")
lapply(pkgs, FUN = function(x) {
if (!require(x, character.only = TRUE)) {
install.packages(x, dependencies = TRUE)
}
}
)
devtools::install_github(c("mikejohnson51/AOI", "mikejohnson51/climateR"))
-
Opening in Rstudio:
Click on "Code" on the top right to copy the link to this repository.
ClickFile
,New Project
,Version Control
,Git
Paste the repository URL and clickCreate Project
. -
Alternatively, go to this link.
To contribute to RShiny_Microclim, follow these steps:
- Fork this repository.
- Create a branch:
git checkout -b <branch_name>
. - Make your changes and commit them:
git commit -m '<commit_message>'
- Push to the original branch:
git push origin <project_name>/<location>
- Create the pull request.
Alternatively see the GitHub documentation on creating a pull request.