-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_profile.toml
55 lines (54 loc) · 2.55 KB
/
plot_profile.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# 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"
#? VARIABLE: str: variable to map
# If 'all': will map density of datapoints, regardless of their variables.
VARIABLE = "NTRA"
#? SAVE: bool: whether to save the Figure or not
SAVE = true
#? SAVING_DIR: str: directory in which to save the Figure
SAVING_DIR = "bgc_figs"
#? SHOW: bool: whether to show the Figure or not
SHOW = true
#? DATE_MIN: str: first date to map
DATE_MIN = "20070101"
#? DATE_MAX: str: last date to map
DATE_MAX = "20201231"
#? INTERVAL: str: horizontal resolution of the plot
# If set to 'day': will group datapoint by day
# If set to 'week': will group datapoints by their week number
# If set to 'month': will group datapoints by month
# If set to 'year': will grou datapoints by year
# If set to 'custom': will group datapoints based on a custom interval
INTERVAL = "month"
#? CUSTOM_INTERVAL: int: if INTERVAL is 'custom', length of the custom interval (in days)
CUSTOM_INTERVAL = 8
#? 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
#? DEPTH_MIN: int | float: minimum depth boundary (included), 'nan' indicate not boundary
DEPTH_MIN = nan
#? DEPTH_MAX: int | float: maximum depth boundary (included), 'nan' indicate not boundary
DEPTH_MAX = 0
#? DEPTH_INTERVAL: int | list[int]: vertical resolution of the Figure
# If of type int: vertical axis will be divided in equally sized bins of size DEPTH_INTERVAL
# If of type list[int]: vertical axis will be divided according to the given levels (levls value ar supposed to negative)
DEPTH_INTERVAL = 10
#? 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