Skip to content

Documents · Verb reference

fire_plot

Fire time-hull + climate visualization workflow.

Callable type: Visualization helper (direct call) · Browse: Visualization

Call this helper directly with the documented data arguments; it does not return a configured pipe stage. Use v.apply(...) or an explicit callable if composition is needed.

Usage

from cubedynamics import verbs as v
v.fire_plot(da=None, *, fired_event=None, fired_daily=None, event_id=None, climate_variable='vpd', freq=None, time_buffer_days=1, n_ring_samples=200, n_theta=296, color_limits=None, z_exaggeration=2.2, scalar_debug_mode=None, debug_scalars=False, show_hist=False, verbose=False, save_prefix=None, fast=False, allow_synthetic=False, prefer_streaming=True)

Arguments

Argument Meaning Default
da See implementation docstring below; no parameter-specific description supplied. None
fired_event See implementation docstring below; no parameter-specific description supplied. None
fired_daily See implementation docstring below; no parameter-specific description supplied. None
event_id See implementation docstring below; no parameter-specific description supplied. None
climate_variable See implementation docstring below; no parameter-specific description supplied. 'vpd'
freq See implementation docstring below; no parameter-specific description supplied. None
time_buffer_days See implementation docstring below; no parameter-specific description supplied. 1
n_ring_samples See implementation docstring below; no parameter-specific description supplied. 200
n_theta See implementation docstring below; no parameter-specific description supplied. 296
color_limits See implementation docstring below; no parameter-specific description supplied. None
z_exaggeration See implementation docstring below; no parameter-specific description supplied. 2.2
scalar_debug_mode See implementation docstring below; no parameter-specific description supplied. None
debug_scalars See implementation docstring below; no parameter-specific description supplied. False
show_hist See implementation docstring below; no parameter-specific description supplied. False
verbose See implementation docstring below; no parameter-specific description supplied. False
save_prefix See implementation docstring below; no parameter-specific description supplied. None
fast See implementation docstring below; no parameter-specific description supplied. False
allow_synthetic See implementation docstring below; no parameter-specific description supplied. False
prefer_streaming See implementation docstring below; no parameter-specific description supplied. True

Accepts

FireEventDaily / FireHull or VaseDefinition geometry and/or an observed climate cube, as specified by the arguments. Match CRS and event dates before attribution.

Returns

The public docstring does not specify a return contract. Do not assume a pipe-ready return; consult the linked implementation.

Order / grammar behavior

Construct and validate event geometry before attributing climate or rendering. Fire plotting still uses a Plotly hull backend; it is not the general HTML cube viewer.

Minimal example

Follow the real FIRED event and streamed gridMET example. It provides the event acquisition, geometry, climate loading and plots together; a climate cube alone is insufficient for this operation.

Works with

FireEventDaily / FireHull or VaseDefinition geometry and/or an observed climate cube, as specified by the arguments. Match CRS and event dates before attribution.

See also

Implementation notes

No additional implementation notes in the current docstring.

Implementation source. Signatures and descriptions on this page are generated from this checkout, not hand-maintained copies.