Skip to content

Commit cab51a9

Browse files
committed
Update README.rmd/md
1 parent f793602 commit cab51a9

File tree

2 files changed

+38
-43
lines changed

2 files changed

+38
-43
lines changed

README.Rmd

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -22,35 +22,30 @@ You can install RHESSysPreprocessing directly from R
2222
devtools::install_github("RHESSys/RHESSysPreprocessing")
2323
```
2424

25-
Alternatively, the package can be installed manually:
25+
<!-- Alternatively, the package can be installed manually: -->
2626

27-
1. Download or clone the RHESSysPreprocessing repository.
28-
1. Open RHESSysPreprocessing.Rproj
29-
1. Under the "Build" menu, select "Install and restart".
30-
1. Close the package (under "File" - "Close Project").
31-
1. Load the package via: `library(RHESSysPreprocessing)`
27+
<!-- 1. Download or clone the RHESSysPreprocessing repository. -->
28+
<!-- 1. Open RHESSysPreprocessing.Rproj -->
29+
<!-- 1. Under the "Build" menu, select "Install and restart". -->
30+
<!-- 1. Close the package (under "File" - "Close Project"). -->
31+
<!-- 1. Load the package via: `library(RHESSysPreprocessing)` -->
3232

3333
## Contents
3434
RHESSysPreprocessing contains a few main components:
3535

36-
<!-- * RHESSysPreprocess.R: An all-in-one function that runs both world_gen.R and CreateFlownet.R -->
37-
<!-- * world_gen.R: Creates a worldfile for use in RHESSys (replaces g2w) -->
38-
<!-- * CreateFlownet.R: Creates a RHESSys flowtable (replaces cf) -->
39-
40-
| | |
41-
|-----------------------|---------------------------------------------------------------------------|
42-
| `RHESSysPreprocess()` | An all-in-one function that runs both `world_gen()` and `CreateFlownet()` |
43-
| `world_gen()` | Creates a worldfile for use in RHESSys (replaces g2w) |
44-
| `CreateFlownet()` | Creates a RHESSys flowtable (replaces cf) |
36+
* `RHESSysPreprocess()`: An all-in-one function that runs both `world_gen()` and `CreateFlownet()`
37+
* `world_gen()`: Creates a worldfile for use in RHESSys (replaces g2w)
38+
* `CreateFlownet()`: Creates a RHESSys flowtable (replaces cf)
4539

4640
Other functions of note that can be used on their own:
4741

48-
| | |
49-
|----------------------|-----------------------------------------------------------------------|
50-
| `template_read()` | Reads a template file and produces an R list |
51-
| `build_meta()` | Builds a metadata file. <under construction |
52-
| `convert_flowtable()`| Converts a non-parallelized (RHESSys < 7.0) flowtable to a parallelized flowtable |
53-
| `read_in_flow()` | Reads a flow table and creates an R list. |
42+
* `template_read()`: Reads a template file and produces an R list
43+
* `build_meta()`: Builds a metadata file. <under construction
44+
* `convert_flowtable()`: Converts a non-parallelized (RHESSys < 7.0) flowtable to a parallelized flowtable
45+
* `read_in_flow()`: Reads a flow table and creates an R list
46+
* `world_redefine()`: Small wrapper for `world_gen()` for creating redefines
47+
* `update_template()`: Read, modify, and/or output a new template file
48+
* `world_redefine()`: Read, modify, and/or output a new worldfile
5449

5550
## Compatibility
5651
Developed originally using R Version 3.4.0. May be incompatible with older R versions

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -22,38 +22,38 @@ You can install RHESSysPreprocessing directly from R
2222
devtools::install_github("RHESSys/RHESSysPreprocessing")
2323
```
2424

25-
Alternatively, the package can be installed manually:
25+
<!-- Alternatively, the package can be installed manually: -->
2626

27-
1. Download or clone the RHESSysPreprocessing repository.
28-
2. Open RHESSysPreprocessing.Rproj
29-
3. Under the “Build” menu, select “Install and restart”.
30-
4. Close the package (under “File” - “Close Project”).
31-
5. Load the package via: `library(RHESSysPreprocessing)`
27+
<!-- 1. Download or clone the RHESSysPreprocessing repository. -->
3228

33-
## Contents
29+
<!-- 1. Open RHESSysPreprocessing.Rproj -->
3430

35-
RHESSysPreprocessing contains a few main components:
31+
<!-- 1. Under the "Build" menu, select "Install and restart". -->
3632

37-
<!-- * RHESSysPreprocess.R: An all-in-one function that runs both world_gen.R and CreateFlownet.R -->
33+
<!-- 1. Close the package (under "File" - "Close Project"). -->
3834

39-
<!-- * world_gen.R: Creates a worldfile for use in RHESSys (replaces g2w) -->
35+
<!-- 1. Load the package via: `library(RHESSysPreprocessing)` -->
4036

41-
<!-- * CreateFlownet.R: Creates a RHESSys flowtable (replaces cf) -->
37+
## Contents
38+
39+
RHESSysPreprocessing contains a few main components:
4240

43-
`read_csv()` | | | |———————–|—————————————————————————| |
44-
`RHESSysPreprocess()` | An all-in-one function that runs both
45-
`world_gen()` and `CreateFlownet()` | | `world_gen()` | Creates a
46-
worldfile for use in RHESSys (replaces g2w) | | `CreateFlownet()` |
47-
Creates a RHESSys flowtable (replaces cf) |
41+
- `RHESSysPreprocess()`: An all-in-one function that runs both
42+
`world_gen()` and `CreateFlownet()`
43+
- `world_gen()`: Creates a worldfile for use in RHESSys (replaces g2w)
44+
- `CreateFlownet()`: Creates a RHESSys flowtable (replaces cf)
4845

4946
Other functions of note that can be used on their own:
5047

51-
| | |
52-
| --------------------- | ---------------------------------------------------------------------------------- |
53-
| `template_read()` | Reads a template file and produces an R list |
54-
| `build_meta()` | Builds a metadata file. \<under construction |
55-
| `convert_flowtable()` | Converts a non-parallelized (RHESSys \< 7.0) flowtable to a parallelized flowtable |
56-
| `read_in_flow()` | Reads a flow table and creates an R list. |
48+
- `template_read()`: Reads a template file and produces an R list
49+
- `build_meta()`: Builds a metadata file. \<under construction
50+
- `convert_flowtable()`: Converts a non-parallelized (RHESSys \< 7.0)
51+
flowtable to a parallelized flowtable
52+
- `read_in_flow()`: Reads a flow table and creates an R list
53+
- `world_redefine()`: Small wrapper for `world_gen()` for creating
54+
redefines
55+
- `update_template()`: Read, modify, and/or output a new template file
56+
- `world_redefine()`: Read, modify, and/or output a new worldfile
5757

5858
## Compatibility
5959

0 commit comments

Comments
 (0)