├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── macos-latest.yml │ ├── main.yml │ ├── pkgdown.yaml │ ├── test-coverage.yaml │ ├── ubuntu-latest.yml │ └── windows-latest.yml ├── .gitignore ├── AWAPer.Rproj ├── AWAPer.pdf ├── ChangeLog ├── DESCRIPTION ├── NAMESPACE ├── NEWS.html ├── NEWS.md ├── R ├── data_documentation.R ├── download.ASCII.file.R ├── extractCatchmentData.R ├── get.ASCII.file.header.R ├── getURLs.R ├── makeNetCDF_file.R └── readin.ASCII.file.R ├── README.md ├── _pkgdown.yml ├── data └── catchments.rda ├── inst └── CITATION ├── man ├── catchments.Rd ├── download.ASCII.file.Rd ├── extractCatchmentData.Rd ├── get.ASCII.file.header.Rd ├── getURLs.Rd ├── makeNetCDF_file.Rd └── readin.ASCII.file.Rd ├── tests ├── testthat.R └── testthat │ ├── test-extractCatchmentData.R │ └── test-makeNetCDF_file.R └── vignettes ├── AWAPer.Rmd ├── AWAPer.Rnw ├── A_Make_data_grids.Rmd ├── A_Make_data_grids.Rnw ├── B_Point_rainfall.Rmd ├── B_Point_rainfall.Rnw ├── C_Catchment_avg_ET_rainfall.Rmd ├── C_Catchment_avg_ET_rainfall.Rnw ├── D_Catchment_avg_ET_types.Rmd ├── D_Catchment_avg_ET_types.Rnw └── build_commands.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/macos-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.github/workflows/macos-latest.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.github/workflows/ubuntu-latest.yml -------------------------------------------------------------------------------- /.github/workflows/windows-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.github/workflows/windows-latest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/.gitignore -------------------------------------------------------------------------------- /AWAPer.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/AWAPer.Rproj -------------------------------------------------------------------------------- /AWAPer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/AWAPer.pdf -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/ChangeLog -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/NEWS.html -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data_documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/data_documentation.R -------------------------------------------------------------------------------- /R/download.ASCII.file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/download.ASCII.file.R -------------------------------------------------------------------------------- /R/extractCatchmentData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/extractCatchmentData.R -------------------------------------------------------------------------------- /R/get.ASCII.file.header.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/get.ASCII.file.header.R -------------------------------------------------------------------------------- /R/getURLs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/getURLs.R -------------------------------------------------------------------------------- /R/makeNetCDF_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/makeNetCDF_file.R -------------------------------------------------------------------------------- /R/readin.ASCII.file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/R/readin.ASCII.file.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: https://peterson-tim-j.github.io/AWAPer/ 2 | template: 3 | bootstrap: 5 4 | 5 | -------------------------------------------------------------------------------- /data/catchments.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/data/catchments.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/catchments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/catchments.Rd -------------------------------------------------------------------------------- /man/download.ASCII.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/download.ASCII.file.Rd -------------------------------------------------------------------------------- /man/extractCatchmentData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/extractCatchmentData.Rd -------------------------------------------------------------------------------- /man/get.ASCII.file.header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/get.ASCII.file.header.Rd -------------------------------------------------------------------------------- /man/getURLs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/getURLs.Rd -------------------------------------------------------------------------------- /man/makeNetCDF_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/makeNetCDF_file.Rd -------------------------------------------------------------------------------- /man/readin.ASCII.file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/man/readin.ASCII.file.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-extractCatchmentData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/tests/testthat/test-extractCatchmentData.R -------------------------------------------------------------------------------- /tests/testthat/test-makeNetCDF_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/tests/testthat/test-makeNetCDF_file.R -------------------------------------------------------------------------------- /vignettes/AWAPer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/AWAPer.Rmd -------------------------------------------------------------------------------- /vignettes/AWAPer.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/AWAPer.Rnw -------------------------------------------------------------------------------- /vignettes/A_Make_data_grids.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/A_Make_data_grids.Rmd -------------------------------------------------------------------------------- /vignettes/A_Make_data_grids.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/A_Make_data_grids.Rnw -------------------------------------------------------------------------------- /vignettes/B_Point_rainfall.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/B_Point_rainfall.Rmd -------------------------------------------------------------------------------- /vignettes/B_Point_rainfall.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/B_Point_rainfall.Rnw -------------------------------------------------------------------------------- /vignettes/C_Catchment_avg_ET_rainfall.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/C_Catchment_avg_ET_rainfall.Rmd -------------------------------------------------------------------------------- /vignettes/C_Catchment_avg_ET_rainfall.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/C_Catchment_avg_ET_rainfall.Rnw -------------------------------------------------------------------------------- /vignettes/D_Catchment_avg_ET_types.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/D_Catchment_avg_ET_types.Rmd -------------------------------------------------------------------------------- /vignettes/D_Catchment_avg_ET_types.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/D_Catchment_avg_ET_types.Rnw -------------------------------------------------------------------------------- /vignettes/build_commands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterson-tim-j/AWAPer/HEAD/vignettes/build_commands.R --------------------------------------------------------------------------------