speedviz.py¶
ErosionSpeedViz
¶
flowchart TD
erosionfront.visualization.speedviz.ErosionSpeedViz[ErosionSpeedViz]
erosionfront.visualization.base.GraphingBase[GraphingBase]
erosionfront.visualization.base.GraphingBase --> erosionfront.visualization.speedviz.ErosionSpeedViz
click erosionfront.visualization.speedviz.ErosionSpeedViz href "" "erosionfront.visualization.speedviz.ErosionSpeedViz"
click erosionfront.visualization.base.GraphingBase href "" "erosionfront.visualization.base.GraphingBase"
XXXX
Parameters¶
XXX
Attributes¶
TBD
Returns¶
XXX
Methods:
-
create_figure–Initialize a :mod:
Pyplot <matplotlib.pyplot>figure. -
get_aspect–Get aspect ratio of graph.
-
get_fonts–Fetch the names of all the font families available on the system.
-
naturalize–Adjust graph aspect ratio into 'natural' ratio.
-
plot_model_erosion_speed–Plot surface-normal erosion speed model ξ(β).
-
stretch–Stretch graph axes by respective factors.
Source code in erosionfront/visualization/base.py
create_figure
¶
create_figure(
fig_name: str, fig_size: tuple[float, float] | None = None, dpi: int | None = None
) -> Figure
Initialize a :mod:Pyplot <matplotlib.pyplot> figure.
Set its size and dpi, set the font size, choose the Arial font family if possible, and append it to the figures dictionary.
Parameters¶
fig_name: name of figure; used as key in figures dictionary fig_size: optional width and height of figure in inches dpi: rasterization resolution
Returns¶
:obj:Pyplot figure <matplotlib.figure.Figure>:
reference to :mod:MatPlotLib/Pyplot <matplotlib.pyplot>
figure
Source code in erosionfront/visualization/base.py
get_aspect
¶
get_aspect(axes: Axes) -> float
Get aspect ratio of graph.
Parameters¶
axes:
the axes object of the figure
Returns¶
float: aspect ratio
Source code in erosionfront/visualization/base.py
get_fonts
¶
Fetch the names of all the font families available on the system.
Source code in erosionfront/visualization/base.py
naturalize
¶
Adjust graph aspect ratio into 'natural' ratio.
Source code in erosionfront/visualization/base.py
plot_model_erosion_speed
¶
plot_model_erosion_speed(
fig_name: str,
model: Isotropic | Step | ExponentialActivation,
gma: GeometricMechanicsAnalysis | None = None,
do_polar: bool = False,
title_font_size: int = 12,
fig_size: tuple[float, float] | None = None,
) -> None
Plot surface-normal erosion speed model ξ(β).
Parameters¶
fig_name: str model: Any title_font_size: int=12 fig_size: tuple[float, float]=(6, 2.5,)
Attributes¶
Uses create_figure (adds to fig dict).
Source code in erosionfront/visualization/speedviz.py
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
stretch
¶
stretch(
fig: Figure,
xs: tuple[float, float] | None = None,
ys: tuple[float, float] | None = None,
) -> None
Stretch graph axes by respective factors.