├── .Rbuildignore ├── .github └── workflows │ ├── apt.txt │ └── ubuntu.yml ├── .gitignore ├── Bayesian_LSP.Rproj ├── DESCRIPTION ├── Dockerfile ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── base.R ├── dat_dl_point_ts.R ├── data.R ├── hlp_funs.R ├── mod_fit.R ├── models.R ├── utils-pipe.R └── vis_fit.R ├── README.md ├── blsp-logo.svg ├── data └── landsatEVI2.rda ├── docker-compose.yaml ├── gee ├── getSampleData.js └── sampleData.csv ├── img ├── model_fit_more_phenos.png ├── model_fit_phenos.png └── model_fit_plot.png ├── man ├── BLSPFitted.Rd ├── FitAvgModel.Rd ├── FitBLSP.Rd ├── FitBLSP_spring.Rd ├── GetEvi2PointTs.Rd ├── GetModel.Rd ├── PlotAvg.Rd ├── PlotBLSP.Rd ├── SanityCheck.Rd ├── figures │ └── logo.png ├── landsatEVI2.Rd └── pipe.Rd ├── requirements └── requirements.R ├── scripts ├── build.sh └── test.sh ├── tests ├── testthat.R └── testthat │ ├── test-dat_cl.R │ ├── test-dat_dl.R │ └── test-mod_fit.R └── vignettes ├── .gitignore ├── geeResults.png ├── introduction.Rmd └── mpcResults.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/.github/workflows/apt.txt -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/.gitignore -------------------------------------------------------------------------------- /Bayesian_LSP.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/Bayesian_LSP.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: blsp authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/base.R -------------------------------------------------------------------------------- /R/dat_dl_point_ts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/dat_dl_point_ts.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/data.R -------------------------------------------------------------------------------- /R/hlp_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/hlp_funs.R -------------------------------------------------------------------------------- /R/mod_fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/mod_fit.R -------------------------------------------------------------------------------- /R/models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/models.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/vis_fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/R/vis_fit.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/README.md -------------------------------------------------------------------------------- /blsp-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/blsp-logo.svg -------------------------------------------------------------------------------- /data/landsatEVI2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/data/landsatEVI2.rda -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /gee/getSampleData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/gee/getSampleData.js -------------------------------------------------------------------------------- /gee/sampleData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/gee/sampleData.csv -------------------------------------------------------------------------------- /img/model_fit_more_phenos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/img/model_fit_more_phenos.png -------------------------------------------------------------------------------- /img/model_fit_phenos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/img/model_fit_phenos.png -------------------------------------------------------------------------------- /img/model_fit_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/img/model_fit_plot.png -------------------------------------------------------------------------------- /man/BLSPFitted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/BLSPFitted.Rd -------------------------------------------------------------------------------- /man/FitAvgModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/FitAvgModel.Rd -------------------------------------------------------------------------------- /man/FitBLSP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/FitBLSP.Rd -------------------------------------------------------------------------------- /man/FitBLSP_spring.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/FitBLSP_spring.Rd -------------------------------------------------------------------------------- /man/GetEvi2PointTs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/GetEvi2PointTs.Rd -------------------------------------------------------------------------------- /man/GetModel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/GetModel.Rd -------------------------------------------------------------------------------- /man/PlotAvg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/PlotAvg.Rd -------------------------------------------------------------------------------- /man/PlotBLSP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/PlotBLSP.Rd -------------------------------------------------------------------------------- /man/SanityCheck.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/SanityCheck.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/landsatEVI2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/landsatEVI2.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /requirements/requirements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/requirements/requirements.R -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-dat_cl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/tests/testthat/test-dat_cl.R -------------------------------------------------------------------------------- /tests/testthat/test-dat_dl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/tests/testthat/test-dat_dl.R -------------------------------------------------------------------------------- /tests/testthat/test-mod_fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/tests/testthat/test-mod_fit.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/geeResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/vignettes/geeResults.png -------------------------------------------------------------------------------- /vignettes/introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/vignettes/introduction.Rmd -------------------------------------------------------------------------------- /vignettes/mpcResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncsuSEAL/Bayesian_LSP/HEAD/vignettes/mpcResults.png --------------------------------------------------------------------------------