{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Basic Usage\n", "\n", "## Climate indicator computations\n", "\n", "`xclim` is a library of climate indicators that operate on [xarray](https://docs.xarray.dev/en/stable/) `DataArray` objects. Indicators perform health checks on input data, converts units as needed, assign nans when input data is missing, and format outputs according to the Climate and Forecast (CF) convention. As the list of indicators has grown quite large, indicators are accessed through their *realm* (`xclim.atmos`, `xclim.land` and `xclim.seaIce`, plus the special `xclim.convert`) to help browsing indicators by the domain they apply to. \n", "\n", "**Indicators should not be confused with *indices***, which define the algorithmic layer of each indicator. Those indices perform no checks beyond units compliance, and should be considered as low-level functions. See the respective documentation on [indicators](../indicators.rst) and [indices](../indices.rst) for more information. \n", "\n", "To use xclim in a project, import both `xclim` and `xarray`." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from __future__ import annotations\n", "\n", "import xarray as xr\n", "\n", "import xclim.indices\n", "from xclim.testing import open_dataset" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Index calculations are performed by opening a NetCDF-like file, accessing the variable of interest, and calling the index function, which returns a new `xarray.DataArray`.\n", "\n", "For this example, we'll first open a demonstration dataset storing surface air temperature and compute the number of growing degree days (the sum of degrees above a certain threshold) at the yearly frequency. The time frequency parameter, here `YS`, is specified using [pandas offset aliases](https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases). Note that some offsets might not be supported for non-standard calendars (e.g. 360_day), see the [xarray.cftime_range documentation](https://docs.xarray.dev/en/stable/generated/xarray.cftime_range.html) for details." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Normally, we would use xarray to open a dataset, e.g.:\n", "# ds = xr.open_dataset(\"your_file.nc\")\n", "\n", "# For this example, let's use a test dataset from xclim:\n", "ds = open_dataset(\"ERA5/daily_surface_cancities_1990-1993.nc\")\n", "ds.tas" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "gdd = xclim.atmos.growing_degree_days(tas=ds.tas, thresh=\"10.0 degC\", freq=\"YS\")\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This computation was made using the `growing_degree_days` **indicator**. The same computation could be made through the **index**. You can see how the metadata is a lot poorer here." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "gdd = xclim.indices.growing_degree_days(tas=ds.tas, thresh=\"10.0 degC\", freq=\"YS\")\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The call to `xclim.indices.growing_degree_days` first checked that the input variable units were units of temperature, ran the computation, then set the output's units to the appropriate unit (here ``\"K d\"`` or Kelvin days). As you can see, the **Indicator** returned the same output, but with more metadata, it also performed more checks as explained below.\n", "\n", "`growing_degree_days` makes most sense with **daily input**, but could theoretically accept other source frequencies. The computational layer (*`Index`*) assumes that users have checked that the input data has the expected temporal frequency and has no missing values. However, no checks are performed, so the output data could be wrong (which is why it's always safer to use **`Indicator`** objects from the CF layer, as demonstrated in the following section).\n", "\n", "Finally, as almost all indices, the function takes a `freq` argument to specify over what time period it is computed. These are called \"Offset Aliases\" and are the same as the resampling string arguments. Valid arguments are detailed in [pandas docs](https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases) (note that aliases involving \"business\" notions are not supported by `xarray` and thus could raise issues in xclim).\n", "\n", "### Units handling paradigm\n", "\n", "Indices are written in order to be flexible as to the sampling frequency and units of the data. You _can_ use `growing_degree_days` on, for example, the 6-hourly data, but the output will then be in degree-hour units (``\"K h\"``). Moreover, all units, even when untouched by the calculation, will be reformatted into a CF-compliant symbol format. This behaviour was chosen to ensure consistency between all indices.\n", "\n", "Very few indices will convert their output to specific units; Rather, it is the dimensionality that will be consistent on output. The [Units Handling](units.ipynb) page goes more into detail on how unit conversion can easily be done.\n", "\n", "This doesn't apply to **`Indicators`**. Those will always output data in a specific unit, the one listed in the `Indicators.cf_attrs` metadata dictionary.\n", "\n", "### Conventions\n", "\n", "As you may have noticed, the `growing_degree_days` function above was not told along which dimension to operate. In xclim, the temporal dimension is _always_ assumed to be named `\"time\"`. All functions which reduce or compute over that dimension will expect that name. If you ever have another name in your data, you can simply rename it like:\n", "\n", "```\n", "ds = ds.rename(T=\"time\")\n", "```\n", "\n", "For other names and attributes, xclim tries to follow different sets of conventions. In particular, input data should follow the [CF conventions](https://cfconventions.org/) whenever possible for variable attributes. Variable names are usually the ones used in [CMIP6](https://clipc-services.ceda.ac.uk/dreq/mipVars.html), when they exist." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Indicators\n", "\n", "**Indices with Health Checks and Metadata Attributes**\n", "\n", "Indicator instances from the CF layer are found in modules bearing the name of the computational realm in which its input variables are typically found: `xclim.atmos`, `xclim.land` and `xclim.seaIce`. These objects run sanity checks on the input variables and set output's metadata according to CF-conventions when applicable. Some checks involve:\n", "\n", "* Identifying periods where missing data significantly impacts the calculation and omits calculations for those periods. Those are called \"missing methods\" and are detailed in section [Health checks](../checks.rst).\n", "* Appending process history and maintaining the historical provenance of file metadata.\n", "* Writing [Climate and Forecast Convention](https://cfconventions.org/) compliant metadata based on the variables and indices calculated.\n", "\n", "Those modules are best used for producing NetCDF files that will be shared with users. See [Climate Indicators](../indicators.rst) for a list of available indicators.\n", "\n", "If we run the `growing_degree_days` indicator over a non-daily dataset, we'll be warned that the input data is not daily. That is, running ```xclim.atmos.growing_degree_days(ds.air, thresh='10.0 degC', freq='MS')``` will fail with a `ValidationError`:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [ "raises-exception" ] }, "outputs": [], "source": [ "# Show that data is not at a daily time frequency\n", "\n", "ds6h = xr.tutorial.load_dataset(\"air_temperature\")\n", "xr.infer_freq(ds6h.time)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "tags": [ "raises-exception" ] }, "outputs": [], "source": [ "gdd = xclim.atmos.growing_degree_days(tas=ds6h.air, thresh=\"10.0 degC\", freq=\"MS\")\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Resampling to a daily frequency and running the same indicator succeeds, but we will still get warnings from the CF metadata checks." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "daily_ds = ds6h.resample(time=\"D\").mean(keep_attrs=True)\n", "gdd = xclim.atmos.growing_degree_days(daily_ds.air, thresh=\"10.0 degC\", freq=\"YS\")\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To suppress the CF validation warnings, we can set xclim to send these warnings to the log instead of raising a warning or an error. We also could set `data_validation='warn'` to be able to run the indicator on non-daily data. These options can be set globally or within a context manager with [set_options](../api.rst#options-submodule).\n", "\n", "The missing method which determines if a period should be considered missing or not can be controlled through the `check_missing` option, globally or contextually. The main missing methods also have options that can be modified." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "with xclim.set_options(\n", " check_missing=\"pct\",\n", " missing_options={\"pct\": dict(tolerance=0.1)},\n", " cf_compliance=\"log\",\n", "):\n", " # Change the missing method to \"percent\", instead of the default \"any\"\n", " # Set the tolerance to 10%, periods with more than 10% of missing data\n", " # in the input will be masked in the output.\n", " gdd = xclim.atmos.growing_degree_days(daily_ds.air, thresh=\"10.0 degC\", freq=\"MS\")\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Some indicators also expose time-selection arguments as `**indexer` keywords. This allows to run the index on a subset of the time coordinates, for example only on a specific season, month, or between two dates in every year. It relies on the [select_time](../apidoc/xclim.core.rst#xclim.core.calendar.select_time) function. Some indicators will simply select the time period and run the calculations, while others will smartly perform the selection at the right time, when the order of operation makes a difference. All will pass the `indexer` kwargs to the missing value handling, ensuring that the missing values _outside_ the valid time period are **not** considered.\n", "\n", "The next example computes the annual sum of growing degree days over 10 °C, but only considering days from the 1st of April to the 30th of September." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "with xclim.set_options(cf_compliance=\"log\"):\n", " gdd = xclim.atmos.growing_degree_days(tas=daily_ds.air, thresh=\"10 degC\", freq=\"YS\", date_bounds=(\"04-01\", \"09-30\"))\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`xclim` also allows us to call indicators using datasets and variable names." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "with xclim.set_options(cf_compliance=\"log\"):\n", " gdd = xclim.atmos.growing_degree_days(tas=\"air\", thresh=\"10.0 degC\", freq=\"MS\", ds=daily_ds)\n", "\n", " # variable names default to xclim names, so we can even do this:\n", " renamed_daily_ds = daily_ds.rename(air=\"tas\")\n", " gdd = xclim.atmos.growing_degree_days(thresh=\"10.0 degC\", freq=\"MS\", ds=renamed_daily_ds)\n", "gdd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can also get datasets as an output with the `as_dataset` option." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "with xclim.set_options(as_dataset=True, cf_compliance=\"log\"):\n", " gdd_ds = xclim.atmos.growing_degree_days(\n", " tas=daily_ds.air, thresh=\"10 degC\", freq=\"YS\", date_bounds=(\"04-01\", \"09-30\")\n", " )\n", "gdd_ds" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, when passed a DataTree, xclim will map the computation over all nodes. It will skip empty nodes, but it requires that all non-empty nodes have all needed variables. With DataTree, the `as_dataset` option is implicitly activated.\n", "\n", "When `as_dataset` is True (or implicit), xclim uses xarray's `keep_attrs` option to decide if dataset (or node) attributes should be preserved and passed to the output." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "DT = xr.DataTree.from_dict({\"/daily\": daily_ds, \"/daily_too\": daily_ds, \"/daily/again\": daily_ds})\n", "with xclim.set_options(cf_compliance=\"log\"):\n", " gdd_dt = xclim.atmos.growing_degree_days(tas=\"air\", thresh=\"10 degC\", freq=\"YS\", ds=DT)\n", "gdd_dt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Graphics\n", "\n", "Xclim does not have specific functions to create graphics. However, it is built to ensure that Indices and Indicators always have appropriate axis-related metadata that libraries like [Matplotlib](https://matplotlib.org) depend on to generate detailed and informative graphics.\n", "\n", "This graphical functionality is entirely thanks to `xarray`, so the following examples are applicable to generic `xarray.DataArray` objects. For more examples, see the directions suggested by [xarray's plotting documentation](https://docs.xarray.dev/en/stable/user-guide/plotting.html)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `xarray` plot functions creates a histogram when the `DataArray` has 3 or more dimensions. In previous steps, `xclim` automatically filled the `long_name` and `units` attributes, which `xarray` uses to label the x-axis." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import matplotlib.pyplot as plt\n", "\n", "print(\"long_name:\", gdd.attrs[\"long_name\"])\n", "print(\"units:\", gdd.attrs[\"units\"])\n", "\n", "gdd.plot()\n", "plt.suptitle(\"Summary Statistics Histogram\")\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When the DataArray only has a `time` dimension, xarray plots a timeseries. In this case, xarray uses the `long_name` and `units` attributes provided by xclim to label the y-axis." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "gdd.isel(lon=20, lat=10).plot()\n", "plt.suptitle(\"Time Series at a Given Geographical Coordinate\")\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When the DataArray only has 2 dimensions, xarray plots a heatmap. In this case, xarray uses the `long_name` and `units` attributes provided by xclim to label the colorbar." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "gdd.sel(time=\"2013-07-01\").plot()\n", "plt.suptitle(\"Spatial Pattern at a Specific Time Period\")\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "### Writing DataArrays and Datasets to disk\n", "\n", "To save the data as a new NetCDF, use `to_netcdf`:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "gdd.to_netcdf(\"monthly_growing_degree_days_data.nc\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "