-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issues with the seasonal forecast resolved
- Loading branch information
1 parent
50ad43d
commit 9e36f5e
Showing
27 changed files
with
1,443 additions
and
665 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ Authors@R: c( | |
person("Matteo", "Dell'Acqua", , "[email protected]", role = c("aut", "ctb"), | ||
comment = c(ORCID = "0000-0003-0151-2537")) | ||
) | ||
Author: Robel Takele [aut, cre], Matteo Dell'Acqua [aut, ctb] | ||
Maintainer: Robel Takele <[email protected]> | ||
Description: The AquaBEHER package provides tools for computing and | ||
integrating daily reference evapotranspiration (Eto) and a soil water | ||
|
@@ -20,9 +19,9 @@ Description: The AquaBEHER package provides tools for computing and | |
water resources more effectively. For detailed methodologies, users | ||
can refer to Allen et al. (1998, ISBN:92-5-104219-5); Allen (2005, | ||
ISBN:9780784408056); Doorenbos and Pruitt (1975, ISBN:9251002797); Guo | ||
et al. (2016) doi:10.1016/j.envsoft.2015.12.019; Hargreaves and Samani | ||
(1985) doi:10.13031/2013.26773; and Priestley and Taylor (1972) | ||
https://journals.ametsoc.org/view/journals/apme/18/7/1520-0450_1979_018_0898_tptema_2_0_co_2.xml. | ||
et al. (2016) <doi:10.1016/j.envsoft.2015.12.019>; Hargreaves and Samani | ||
(1985) <doi:10.13031/2013.26773>; and Priestley and Taylor (1972) | ||
<https://journals.ametsoc.org/view/journals/apme/18/7/1520-0450_1979_018_0898_tptema_2_0_co_2.xml>. | ||
License: GPL (>= 3) | ||
URL: https://github.com/RobelTakele/AquaBEHER, | ||
https://robeltakele.github.io/AquaBEHER/ | ||
|
@@ -31,6 +30,7 @@ Depends: | |
R (>= 3.5.0) | ||
Imports: | ||
dplyr, | ||
magrittr, | ||
lubridate, | ||
zoo, | ||
rlang, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export("%>%") | ||
export(calcEto) | ||
export(calcSeasCal) | ||
export(calcWatBal) | ||
export(fcstWSC) | ||
importFrom(dplyr,"%>%") | ||
export(seasFcstQBR) | ||
importFrom(dplyr,filter) | ||
importFrom(dplyr,group_by) | ||
importFrom(dplyr,mutate) | ||
importFrom(dplyr,summarize) | ||
importFrom(graphics,legend) | ||
importFrom(graphics,lines) | ||
importFrom(graphics,par) | ||
importFrom(lubridate,as_date) | ||
importFrom(magrittr,"%>%") | ||
importFrom(rlang,.data) | ||
importFrom(sp,CRS) | ||
importFrom(sp,coordinates) | ||
importFrom(sp,proj4string) | ||
importFrom(stats,na.omit) | ||
importFrom(stats,quantile) | ||
importFrom(stats,sd) | ||
importFrom(terra,extract) | ||
importFrom(terra,rast) | ||
importFrom(zoo,rollapply) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.