-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9742dad
commit ad8429f
Showing
100 changed files
with
7,730 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^data-raw$ | ||
dev_history.R | ||
^dev$ | ||
$run_dev.* | ||
^LICENSE\.md$ | ||
^README\.Rmd$ | ||
^packrat/ | ||
^\.Rprofile$ | ||
^app\.R$ | ||
^rsconnect$ | ||
^\.github$ | ||
^codecov\.yml$ | ||
^Makefile$ | ||
^Jenkinsfile$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^doc$ | ||
^Meta$ | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.Rdata | ||
.httr-oauth | ||
.DS_Store | ||
packrat/lib*/ | ||
docs | ||
inst/doc | ||
/doc/ | ||
/Meta/ | ||
.quarto |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Version: 1.0 | ||
|
||
RestoreWorkspace: No | ||
SaveWorkspace: No | ||
AlwaysSaveHistory: Default | ||
|
||
EnableCodeIndexing: Yes | ||
UseSpacesForTab: Yes | ||
NumSpacesForTab: 2 | ||
Encoding: UTF-8 | ||
|
||
RnwWeave: Sweave | ||
LaTeX: pdfLaTeX | ||
|
||
AutoAppendNewline: Yes | ||
StripTrailingWhitespace: Yes | ||
LineEndingConversion: Posix | ||
|
||
BuildType: Package | ||
PackageUseDevtools: Yes | ||
PackageInstallArgs: --no-multiarch --with-keep.source |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
Package: AquaBEHERgui | ||
Title: A shiny GUI app for estimation of wet-season calendar parameters | ||
Version: 0.1.1 | ||
Author: Robel Takele <[email protected]> Matteo Dell'Acqua <[email protected]> | ||
Maintainer: Robel Takele <[email protected]> | ||
Description: A shiny GUI app used to compute and visualize soil-water balance and wet-season calendar | ||
parameters. The app computes and integrates daily potential evapotranspiration (PET) | ||
into a daily soil-water balance model to estimate the calendar of a wet-season for | ||
agricultural applications. | ||
License: CC BY 4.0 | ||
Imports: | ||
config (>= 0.3.1), | ||
golem (>= 0.3.5.9001), | ||
magrittr, | ||
shinyjs, | ||
rmarkdown, | ||
DT, | ||
lubridate, | ||
openxlsx, | ||
plotly, | ||
shinyWidgets, | ||
shinyFiles, | ||
leaflet, | ||
mapboxapi, | ||
leaflet.extras2, | ||
leaflet.multiopacity, | ||
methods, | ||
foreach, | ||
doParallel, | ||
sp, | ||
terra, | ||
ncdf4 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.3.1 | ||
URL: https://github.com/RobelTakele/AquaBEHERgui, | ||
https://robeltakele.github.io/AquaBEHERgui/ | ||
BugReports: https://github.com/RobelTakele/AquaBEHERgui/issues | ||
Suggests: | ||
covr, | ||
spelling, | ||
testthat (>= 3.0.0), | ||
knitr, | ||
rgdal, | ||
devtools | ||
Config/testthat/edition: 3 | ||
Language: en-US | ||
Depends: | ||
R (>= 2.10), | ||
AquaBEHER, | ||
shiny, | ||
raster | ||
VignetteBuilder: knitr |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
pipeline { | ||
agent any { | ||
stages { | ||
stage('Build') { | ||
steps { | ||
make build | ||
} | ||
} | ||
stage('Check') { | ||
steps { | ||
make check | ||
} | ||
} | ||
stage('Clean') { | ||
steps { | ||
make clean | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.