-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfireSense_dataPrepFit.Rmd
66 lines (45 loc) · 1.42 KB
/
fireSense_dataPrepFit.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
title: "fireSense_dataPrepFit"
author:
- Ian Eddy
- Alex Chubaty
date: "September 2020; updated February 2022"
output:
html_document:
keep_md: yes
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, eval = FALSE, results = "hold", message = FALSE)
```
# Overview
Prepare data required by `fireSense_IginitionFit`, `fireSense_EscapeFit`, and `fireSense_SpreadFit`.
# Parameters
Provide a summary of user-visible parameters.
```{r moduleParams, echo = FALSE, eval = TRUE}
df_params <- SpaDES.core::moduleParams("fireSense_dataPrepFit", "..")
knitr::kable(df_params)
```
# Events
Describe what happens for each event type.
## Plotting
Write what is plotted.
## Saving
Write what is saved.
# Data dependencies
## Input data
How to obtain input data, and a description of the data required by the module.
If `sourceURL` is specified, `downloadData("fireSense_dataPrepFit", "..")` may be sufficient.
```{r moduleInputs, echo = FALSE, eval = TRUE}
df_inputs <- SpaDES.core::moduleInputs("fireSense_dataPrepFit", "..")
knitr::kable(df_inputs)
```
## Output data
Description of the module outputs.
```{r moduleOutputs, echo = FALSE, eval = TRUE}
df_outputs <- SpaDES.core::moduleOutputs("fireSense_dataPrepFit", "..")
knitr::kable(df_outputs)
```
# Links to other modules
Outputs used by `fireSense_IginitionFit`, `fireSense_EscapeFit`, and `fireSense_SpreadFit`.