-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdefault.properties
More file actions
70 lines (48 loc) · 2.47 KB
/
default.properties
File metadata and controls
70 lines (48 loc) · 2.47 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# the logging level; one of DISABLED, DEBUG, INFO, WARNING
opec.general.log_level=INFO
# the log target file; if 'None', no log is written
opec.general.log_file=None
# the maximum size of cached data in MB
opec.general.max_cache_size=1024
# alpha and beta value used for percentile calculations
opec.algo.percentile.alpha = 1
opec.algo.percentile.beta = 1
# the Delta Degrees of Freedom used for standard deviation calculations
opec.algo.stddev.ddof = 0
# the maximum time period of matchup pixels; unit: seconds
opec.matchup.time_delta = 86400
# the maximum difference in the depth dimension of matchup pixels; unit: meters
opec.matchup.depth_delta = 12
# zip the output; either TRUE or FALSE
opec.output.zip=FALSE
# the prefix to the output files
opec.output.target_prefix = benchmark_
# show a legend in plots; either TRUE or FALSE
opec.output.plot.show_legends=TRUE
# write target diagram; either TRUE or FALSE
opec.output.plot.target.write_target_diagram = TRUE
# normalise target diagram axes; either TRUE or FALSE
opec.output.plot.target.normalise_target_diagram = TRUE
# utilise negative x-space to indicate negative difference between model and reference stddevs; either TRUE or FALSE
opec.output.plot.target.utilise_stddev_difference = TRUE
# the bounds of the target diagram in the form [<xmin>, <xmax>, <ymin>, <ymax>] with each entry a float or None; if None, bounds are computed dynamically.
# only considered if property opec.output.plot.target.normalise_target_diagram is set to FALSE
opec.output.plot.target.diagram_bounds = None
# write taylor diagrams; either TRUE or FALSE
opec.output.plot.taylor.write_taylor_diagrams = TRUE
# the rules when to create multiple taylor diagrams; a string containing characters 'u' and 'n' for 'unit' and 'variable name'
opec.output.plot.taylor.split_diagrams = u
# in taylor diagram: include negative correlation coefficients; either TRUE or FALSE
opec.output.plot.taylor.show_negative_corrcoeff=FALSE
# write density plots; either TRUE or FALSE
opec.output.plot.density.write_density_plots=TRUE
# use a logarithmic scale for the color map in density plot; either TRUE or FALSE
opec.output.plot.density.log_scaled=FALSE
# write a CSV file; either TRUE or FALSE
opec.output.csv.write_csv = TRUE
# include a header in CSV files; either TRUE or FALSE
opec.output.csv.include_header = TRUE
# the separator in CSV files, for example \t, ;, ' '
opec.output.csv.separator = \t
# write an XHTML output; either TRUE or FALSE
opec.output.xhtml.write_xhtml = TRUE