-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_var_histogram.toml
39 lines (38 loc) · 1.67 KB
/
plot_var_histogram.toml
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
# Lines starting with '#? ' are used to verify variables' types
# Type hints lines are structured the following way:
# Variable keys: possible types: additionnal comment
#? LOADING_DIR: str: directory from which to load data
LOADING_DIR = "bgc_data"
#? SHOW: bool: whether to show the Figure or not
SHOW = true
#? SAVE: bool: whether to save the Figure or not
SAVE = false
#? PLOT_VARIABLE: str: Variable to plot the histogram of
PLOT_VARIABLE = "TEMP"
#? SAVING_DIR: str: directory in which to save the Figure
SAVING_DIR = "bgc_figs"
#? DATE_MIN: str: first date to map
DATE_MIN = "20070101"
#? DATE_MAX: str: last date to map
DATE_MAX = "20121231"
#? LATITUDE_MIN: int | float: minimum latitude boundary (included)
LATITUDE_MIN = 50
#? LATITUDE_MAX: int | float: maximum latitude boundary (included)
LATITUDE_MAX = 90
#? LONGITUDE_MIN: int | float: minimum longitude boundary (included)
LONGITUDE_MIN = -180
#? LONGITUDE_MAX: int | float: maximum longitude boundary (included)
LONGITUDE_MAX = 180
#? WATER_MASS_ACRONYMS: list[str]: list of the acronyms of the water masses to load
WATER_MASS_ACRONYMS = ["AW", "PSWw"]
#? EXPOCODES_TO_LOAD: list[str]: precise expocode to load alone.
# If empty, no discrimination on expocode will be conducted
EXPOCODES_TO_LOAD = []
#? PRIORITY: list[str]: providers priority list to use when removing duplicates
PRIORITY = ["GLODAP_2022", "CMEMS", "ARGO", "NMDC", "CLIVAR", "IMR", "ICES"]
#? VERBOSE: int: verbose value, the higher, the more informations.
# If set to 0 or below: no information displayed
# If set to 1: minimal informations displayed
# If set to 2: very complete informations displayed
# if set to 3 or higher: exhaustive informations displayed
VERBOSE = 2