Glyph Base Class#
The Glyph class is the base class for all cleopatra visualization glyphs.
It provides shared infrastructure for figure/axes management, color scale
normalization, colorbar creation, tick control, point overlays, and
animation saving.
Both ArrayGlyph and MeshGlyph inherit from Glyph.
Class Documentation#
cleopatra.glyph.Glyph
#
Base class for cleopatra visualization glyphs.
Handles figure/axes management, default options, color scale normalization, colorbar creation, tick control, point overlays, and animation saving. Subclasses implement the actual rendering.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
default_options
|
dict
|
Default plot options dict. Subclasses provide
their own defaults merged with |
required |
fig
|
Figure
|
Pre-existing matplotlib figure. Default is None. |
None
|
ax
|
Axes
|
Pre-existing matplotlib axes. Default is None. |
None
|
**kwargs
|
Override any key in |
{}
|
Examples:
- Create a Glyph and override the colormap:
- Provide a pre-existing figure and axes:
>>> import matplotlib.pyplot as plt >>> from cleopatra.glyph import Glyph >>> from cleopatra.styles import DEFAULT_OPTIONS >>> opts = DEFAULT_OPTIONS.copy() >>> opts["vmin"] = None >>> opts["vmax"] = None >>> fig, ax = plt.subplots() >>> g = Glyph(default_options=opts, fig=fig, ax=ax) >>> g.fig is fig True >>> g.ax is ax True
See Also
cleopatra.array_glyph.ArrayGlyph: Glyph subclass for 2D/3D arrays. cleopatra.mesh_glyph.MeshGlyph: Glyph subclass for unstructured meshes.
Source code in src/cleopatra/glyph.py
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 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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | |
anim
property
#
Animation object created by animate().
default_options
property
#
Default plot options.
vmax
property
#
Maximum value for color scaling.
vmin
property
#
Minimum value for color scaling.
adjust_ticks(axis, multiply_value=1, add_value=0, fmt='{0:g}', visible=True)
#
Adjust the axis tick labels with a linear transformation.
Applies tick_value * multiply_value + add_value to each
tick, formatted with fmt. Useful for converting pixel
coordinates to real-world units.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
axis
|
str
|
|
required |
multiply_value
|
float | int
|
Multiplier for tick values. Default is 1. |
1
|
add_value
|
float | int
|
Offset added to tick values. Default is 0. |
0
|
fmt
|
str
|
Format string for tick labels.
Default is |
'{0:g}'
|
visible
|
bool
|
Whether the axis is visible. Default is True. |
True
|
Examples:
- Scale x-axis ticks by 100 and offset by 5:
>>> import matplotlib.pyplot as plt >>> from cleopatra.glyph import Glyph >>> from cleopatra.styles import DEFAULT_OPTIONS >>> opts = DEFAULT_OPTIONS.copy() >>> opts.update({"vmin": None, "vmax": None}) >>> g = Glyph(default_options=opts) >>> fig, ax = plt.subplots() >>> _ = ax.plot([0, 1, 2], [0, 1, 2]) >>> g.fig, g.ax = fig, ax >>> g.adjust_ticks(axis="x", multiply_value=100, add_value=5)
Source code in src/cleopatra/glyph.py
create_color_bar(ax, im, cbar_kw)
#
Create a colorbar with full customization from default_options.
Reads cbar_length, cbar_orientation, cbar_label,
cbar_label_size, and cbar_label_location from
default_options to configure the colorbar.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ax
|
Axes
|
Matplotlib axes. |
required |
im
|
Any
|
The mappable (image or contour) to attach the colorbar to. |
required |
cbar_kw
|
dict
|
Colorbar keyword arguments (ticks, format, etc.). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Colorbar |
Colorbar
|
The created colorbar. |
Examples:
- Create a colorbar with a custom label:
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> from cleopatra.glyph import Glyph >>> from cleopatra.styles import DEFAULT_OPTIONS >>> opts = DEFAULT_OPTIONS.copy() >>> opts.update({"vmin": None, "vmax": None}) >>> g = Glyph(default_options=opts, cbar_label="Depth [m]") >>> fig, ax = plt.subplots() >>> im = ax.imshow(np.arange(9).reshape(3, 3)) >>> cbar = g.create_color_bar(ax, im, {"ticks": [0, 4, 8]}) >>> cbar.orientation 'vertical'
Source code in src/cleopatra/glyph.py
create_figure_axes()
#
Create a new figure and axes from default_options.
Uses the figsize key from default_options to set the
figure dimensions.
Returns:
| Type | Description |
|---|---|
tuple[Figure, Axes]
|
tuple[Figure, Axes]: The created figure and axes. |
Examples:
- Create a figure with custom size:
Source code in src/cleopatra/glyph.py
get_ticks()
#
Compute colorbar tick locations from default_options.
Uses vmin, vmax, and ticks_spacing from
default_options to generate evenly-spaced tick positions.
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: Array of tick positions. |
Examples:
- Compute ticks for a 0-10 range with spacing of 2:
Source code in src/cleopatra/glyph.py
save_animation(path, fps=2)
#
Save the animation to a file.
The output format is determined by the file extension. GIF uses
PillowWriter; mov/avi/mp4 require FFmpeg to be installed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Output file path. Extension determines format. Supported: gif, mov, avi, mp4. |
required |
fps
|
int
|
Frames per second. Default is 2. |
2
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If the file format is not supported. |
Examples:
- Check the supported video formats: