ogstools.plot.plot_setup_defaults module#

 1   :language: python
 2   :linenos:
 3   :lines: 9-
 4
 5"""
 6
 7setup_dict = {
 8    "default_cmap": "RdBu_r",
 9    "continuous_cmap": False,
10    "custom_cmap": None,
11    "dpi": 120,
12    "min_ax_aspect": 0.5,
13    "max_ax_aspect": 2.0,
14    "invert_colorbar": False,
15    "layout": "compressed",
16    "material_names": None,
17    "num_levels": 11,
18    "num_streamline_interp_pts": 50,
19    "vmin": None,
20    "vmax": None,
21    "scale_type": "auto",
22    "show_element_edges": "MaterialIDs",
23    "show_region_bounds": True,
24    "log_scaled": False,
25    "combined_colorbar": False,
26    "tick_pad": 14,
27    "tick_length": 14,
28    "fontsize": 32,
29    "linewidth": 1,
30    "label_split": 30,
31    "time_unit": "s",
32    "arrowsize": 1,
33}