-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsourceEnvRtype.R
21 lines (19 loc) · 1.66 KB
/
sourceEnvRtype.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cat("it is ugly, but works! :) \n")
if (!requireNamespace('nasapower', quietly = TRUE)) {utils::install.packages("nasapower");require("nasapower")}
if (!requireNamespace('plyr', quietly = TRUE)) {utils::install.packages("plyr");require("plyr")}
if (!requireNamespace('foreach', quietly = TRUE)) {utils::install.packages("foreach");require("foreach")}
if (!requireNamespace('reshape2', quietly = TRUE)) {utils::install.packages("reshape2");require("reshape2")}
if (!requireNamespace('raster', quietly = TRUE)) {utils::install.packages("raster");require("raster")}
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/AtmosphericPAram.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/SradPARAM.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/SupportFUnction.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/EnvTyping.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/Wmatrix.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/covfromraster.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/envKernel.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/gdd.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/getGEenriched.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/get_weather_gis.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/processWTH.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/met_kernel_model.R')
source('https://raw.githubusercontent.com/allogamous/EnvRtype/master/R/summary_weather.R')