You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe you can't find the CARD that you want so you want to try to customize one or even create one based on other example. To do so, you need to first get the CARD example that you want in a local directory with for example
that will create the `VCN10-5.R` CARD in the directory `"CARD-WIP"` of your working directory.
320
+
Maybeyoucan't find the CARD that you want so you want to try to customize one or even create a new one based on another example. To do so, get the example CARD you want in a local directory by running
This will create the `VCN10-5.R` CARD in the `"CARD-WIP"` directory of your working directory.
285
325
286
-
From that point, you can open this R file and for example change the metadata and the return period parameter from `5` to `10`in order to get the `VCN10-10`so the annual minimum of 10-day mean daily discharge with a return period of 10 years instead of 5.
326
+
From there, you can open this R file and, for example, change the metadata and the return period parameter from `5` to `10` to get the `VCN10-10` CARD, which represents the annual minimum of 10-day mean daily discharge with a return period of 10 years instead of 5.
287
327
288
-
And now for the extraction, just run
289
-
```R
290
-
res= CARD_extraction(data, CARD_name=NULL,
291
-
CARD_path="CARD-WIP")
292
-
```
293
-
in order to perform the extraction of all the CARD in the `CARD_path` directory.
328
+
For the extraction, simply run
329
+
```R
330
+
res = CARD_extraction(data, CARD_name = NULL,
331
+
CARD_path = "CARD-WIP")
332
+
```
333
+
This will perform the extraction of all the CARDs in the `CARD_path` directory.
294
334
295
-
If you want to make a selection of the variable to extract in your custom CARD directory, simply use the variable `CARD_name`like previously seen in the [basic workflow](#basic-workflow) section.
335
+
If you want to select specific variables to extract from your custom CARD directory, just use the `CARD_name` variable as seen in the [basic workflow](#basic-workflow) section.
296
336
297
-
Take a look at the [EXstat.CARD documentation](https://github.com/super-lou/EXstat.CARD?tab=readme-ov-file#exstatcard-) to better understand the CARD formatting.
337
+
For a deeper understanding of the CARD formatting, refer to the [EXstat.CARD documentation](https://github.com/super-lou/EXstat.CARD?tab=readme-ov-file#exstatcard-).
0 commit comments