From 9721d395ac57ac2b12a619b878596e695169cb6f Mon Sep 17 00:00:00 2001 From: mKlapwijk Date: Mon, 29 Jan 2024 16:11:18 +0100 Subject: [PATCH] Add documentation of save_only_variable --- docs/manual/input.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/manual/input.md b/docs/manual/input.md index 064df3e8..c441a72d 100644 --- a/docs/manual/input.md +++ b/docs/manual/input.md @@ -19,7 +19,7 @@ output-data: In the input data the variables that are present in the input data provided through “filename” are selected for use. It is possible to filter the input data by providing a start date or end date (format: "dd-mm-yyyy"); this is optional. The variables that are used can be selected under “variable_mapping”. Here you are also able to rename variables as the name used for storage is often cryptic. -At output data the location where the output file needs to be written can be provided through “filename”. In this output file only variables that have been used from the input data and variables that have been created in the model are stored. +At output data the location where the output file needs to be written can be provided through “filename”. In this output file only variables that have been used from the input data and variables that have been created in the model are stored. It is possible to reduce the file size with the optional parameter "save_only_variables", which can take the name of one or several variables. The model needs at least one rule under “rules” to execute. ``` @@ -39,6 +39,7 @@ rules: ……… output-data: filename: + save_only_variables: ``` ```