Source code for xclim.indices.fire

# noqa: D205,D400
"""
Fire indices submodule
======================
"""

from __future__ import annotations

import warnings

import xarray as xr

from xclim.core.units import declare_units

from ._cffwis import *
from ._cffwis import cffwis_indices  # noqa
from ._ffdi import *


[docs]@declare_units( tas="[temperature]", pr="[precipitation]", sfcWind="[speed]", hurs="[]", lat="[]", snd="[length]", ffmc0="[]", dmc0="[]", dc0="[]", season_mask="[]", ) def fire_weather_indexes( tas: xr.DataArray, pr: xr.DataArray, sfcWind: xr.DataArray, hurs: xr.DataArray, lat: xr.DataArray, snd: xr.DataArray | None = None, ffmc0: xr.DataArray | None = None, dmc0: xr.DataArray | None = None, dc0: xr.DataArray | None = None, season_mask: xr.DataArray | None = None, season_method: str | None = None, overwintering: bool = False, dry_start: str | None = None, initial_start_up: bool = True, **params, ): # noqa: D103 warnings.warn( "`fire_weather_indexes` is deprecated in xclim v0.37.18-beta and has been renamed to `cffwis_indices` " "to better support international collaboration. The `fire_weather_indexes` alias will be removed " "in xclim v0.39.\n" "Please take note that xclim now offers a dedicated `fire` submodule under `xclim.indices` that houses all " "fire-based indices.", DeprecationWarning, stacklevel=2, ) return cffwis_indices( tas, pr, sfcWind, hurs, lat, snd, ffmc0, dmc0, dc0, season_mask, season_method, overwintering, dry_start, initial_start_up, **params, )