Skip to content

Commit

Permalink
ini2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobelTakele committed Jul 3, 2024
1 parent 9742dad commit ad8429f
Show file tree
Hide file tree
Showing 100 changed files with 7,730 additions and 0 deletions.
22 changes: 22 additions & 0 deletions AquaBEHERgui/.Rbuildignore
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$

11 changes: 11 additions & 0 deletions AquaBEHERgui/.gitignore
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
21 changes: 21 additions & 0 deletions AquaBEHERgui/AquaBEHERgui.Rproj
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
53 changes: 53 additions & 0 deletions AquaBEHERgui/DESCRIPTION
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
21 changes: 21 additions & 0 deletions AquaBEHERgui/Jenkinsfile
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
}
}
}
}
}
Loading

0 comments on commit ad8429f

Please sign in to comment.