Dynamico grid dynamico/std
#
YAML arguments#
The following arguments are used to configure the plugin. pyCIF will return an exception at the initialization if mandatory arguments are not specified, or if any argument does not fit accepted values or type:
Mandatory arguments#
- grid_file : str, mandatory
NetCDF containing the horizontal grid coordinate
- vcoord_file : str, mandatory
NetCDF containing the vertical grid coordinate should be an absolute path if neither
dir
orvcoord_dir
is used
Optional arguments#
- dir : str, optional
directory containing
grid_file
andvcoord_file
. Usegrid_dir
andvcoord_dir
instead if the files are not located in the same directory- grid_dir : str, optional
directory containing
grid_file
. should be an absolute path if neitherdir
orgrid_dir
is used- vcoord_dir : str, optional
directory containing
vcoord_file
.
YAML template#
Please find below a template for a YAML configuration:
1domain:
2 plugin:
3 name: dynamico
4 version: std
5 type: domain
6
7 # Mandatory arguments
8 grid_file: XXXXX # str
9 vcoord_file: XXXXX # str
10
11 # Optional arguments
12 dir: XXXXX # str
13 grid_dir: XXXXX # str
14 vcoord_dir: XXXXX # str