-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from steffilazerte/facet_wepp
Facet wepp
- Loading branch information
Showing
3,202 changed files
with
349,831 additions
and
140,176 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
FES4 Input files | ||
^doc$ | ||
^Meta$ | ||
^RELEASE.R$ |
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,7 +1,7 @@ | ||
Package: LITAP | ||
Type: Package | ||
Title: Landscape Integrated Terrain Analysis Package | ||
Version: 0.3.1 | ||
Version: 0.4.0 | ||
Authors@R: c( | ||
person("Steffi", "LaZerte", email = "[email protected]", role = c("aut","cre"))) | ||
Description: Flow analysis of elevation data including pit removal. | ||
|
@@ -11,25 +11,31 @@ Encoding: UTF-8 | |
LazyData: true | ||
URL: https://github.com/steffilazerte/LITAP | ||
Depends: | ||
R (>= 3.3) | ||
R (>= 3.5.0) | ||
Imports: | ||
assertr (>= 2.7), | ||
dplyr (>= 0.7.0), | ||
DT (>= 0.2), | ||
ggplot2 (>= 3.2.0), | ||
gridExtra(>= 2.2.1), | ||
magrittr(>= 1.5), | ||
glue (>= 1.4.2), | ||
gridExtra (>= 2.2.1), | ||
magrittr (>= 1.5), | ||
progress (>= 1.1.2), | ||
purrr (>= 0.2.2.2), | ||
raster(>= 2.5.8), | ||
raster (>= 2.5.8), | ||
readr (>= 1.1.0), | ||
rlang (>= 0.4.10), | ||
rmarkdown (>= 1.5), | ||
stringr (>= 1.2.0), | ||
tibble (>= 2.1.3), | ||
tidyselect (>= 1.1.0), | ||
tidyr (>= 1.0.0) | ||
Suggests: | ||
foreign (>= 0.8.67), | ||
knitr, | ||
microbenchmark, | ||
readxl, | ||
testthat | ||
VignetteBuilder: knitr | ||
RoxygenNote: 6.1.1 | ||
RoxygenNote: 7.1.1 | ||
Roxygen: list(markdown = TRUE) |
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,8 +1,10 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export("%>%") | ||
export(facet_mapper) | ||
export(flow_mapper) | ||
export(flow_plot) | ||
export(form_mapper) | ||
export(load_file) | ||
export(wepp_mapper) | ||
importFrom(magrittr,"%>%") |
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
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
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,20 @@ | ||
# args ------------------ | ||
#' Common arguments for [flow_mapper()] and [form_mapper()] | ||
#' | ||
#' @param resume Character. From which stage should the run be resumed? (see | ||
#' Details below) | ||
#' @param end Character. If ending a run after a particular step, which step | ||
#' (see Details below) | ||
#' @param out_format Character. What format should the data be output as? "csv" | ||
#' for Comma-separated values, "dbf" for dbf database files, or "rds" for R | ||
#' data format. | ||
#' @param clean Logical. Remove all output files from previous runs in this | ||
#' folder? | ||
#' @param report Logical. Create html report of results? | ||
#' @param log Logical. Create log file recording progress? | ||
#' @param verbose Logical. Output extra progress messages. | ||
#' @param quiet Logical. Suppress all messages. | ||
#' | ||
#' @keywords internal | ||
#' @name args | ||
NULL |
Oops, something went wrong.