{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import xarray as xr\n", "import holoviews as hv\n", "import geoviews as gv\n", "import geoviews.feature as gf\n", "\n", "from geoviews import opts\n", "from cartopy import crs as ccrs\n", "\n", "gv.extension('matplotlib', 'bokeh')\n", "\n", "gv.output(size=200)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " Alert: Some widgets in this notebook are set to render dynamically and require a live notebook server. If you're viewing this notebook on a static website, the widgets won't respond.\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The main strength of [HoloViews](http://holoviews.org) and its extensions (like GeoViews) is the ability to quickly explore complex datasets by declaring lower-dimensional views into a higher-dimensional space. In HoloViews we refer to the interface that allows you to do this as the conversion API. To begin with we will load a multi-dimensional dataset of surface temperatures for different \"realizations\" (modelling parameters) using [XArray](https://github.com/pydata/xarray/):" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xr_ensembles = xr.open_dataset('../data/ensembles.nc')\n", "xr_ensembles" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As we saw in the [Gridded Datasets I Tutorial](Gridded_Datasets_I.ipynb) we can easily wrap this xarray data structure as a HoloViews Dataset:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dataset = gv.Dataset(xr_ensembles, vdims='surface_temperature')\n", "dataset" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "From the repr we can immediately see the list of key dimensions (time, realization, longitude and latitude) and the value dimension of the cube (surface_temperature). However, unlike most other HoloViews Elements, the ``Dataset`` Element does not display itself visually. This is because it can be n-dimensional and therefore does not have any specific straightforward visual representation on a 2D display. To view the cube, we first have to transform it into individually visualizable chunks. Before doing so, we will want to supply a custom value formatter for the time dimension so that it is readable by humans:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.Dimension.type_formatters[np.datetime64] = '%Y-%m-%d'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Conversions\n", "\n", "A HoloViews Dataset is a wrapper around a complex multi-dimensional datastructure which allows the user to convert their data into individually visualizable views, each usually of lower dimensionality. This is done by grouping the data by some dimension and then casting it to a specific Element type, which visualizes itself.\n", "\n", "The ``dataset.to`` interface makes this especially easy. To use it, you supply the Element type that you want to view the data as and the key dimensions of that view and it will figure out the rest. Depending on the type of Element, you can specify one or more dimensions to be displayed. GeoViews provides a set of GeoElements that allow you to display geographic data on a cartographic projection, but you can use any Elements from HoloViews for non-geographic plots.\n", "\n", "Recall that the cube we are working with has 4 coordinate dimensions (or key dimensions as they are known in HoloViews) -- time, realization, longitude, and latitude. For our purposes, a geographic plot is defined as a plot that has longitude along the x axis and latitude along the y axis. To declare a two-dimensional geographic plot, we therefore simply request a `gv.Image` plot with ``longitude`` and ``latitude`` as key dimensions. There is one value dimension (vdim) available, ``surface_temperature``, and any remaining key dimensions (``time`` and ``realization`` in this case) are assigned to a ``HoloMap`` data structure by default. The resulting ``HoloMap`` gives you widgets automatically to allow you to explore the data across the two \"remaining\" key dimensions (those not mapped onto axes of the image):" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "geo_dims = ['longitude', 'latitude']\n", "(dataset.to(gv.Image, geo_dims) * gf.coastline)[::5, ::5]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this way we can visualize the geographic data in a number of ways, currently either as an ``Image`` (as above) or as ``LineContours``, ``FilledContours``, or ``Points``:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "layout = hv.Layout([dataset.to(el, geo_dims)[::10, ::5] * gf.coastline\n", " for el in [gv.FilledContours, gv.LineContours, gv.Points]]).cols(1)\n", "\n", "layout.opts(opts.Points(color='surface_temperature', cmap='jet'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that by default the conversion interface will automatically expand all the individual Elements, which can take some time if the data is very large. Instead we can also request the objects to be expanded dynamically using the ``dynamic`` keyword:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dataset.to(gv.Image, geo_dims, dynamic=True) * gf.coastline" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Using ``dynamic`` mode means that the data for each frame is only extracted when you're actually viewing that part of the data, which can have huge benefits in terms of speed and memory consumption. However, it relies on having a running Python process to render and serve each image, and so it cannot be used when generating static HTML output such as for the GeoViews web site.\n", "\n", "## Irregularly sampled data\n", "\n", "Often gridded datasets are not regularly sampled, instead providing irregularly sampled multi-dimensional coordinates. Such datasets can be easily visualized using the QuadMesh element." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xrds = xr.tutorial.open_dataset('rasm').load()\n", "qmesh = gv.Dataset(xrds.Tair).to(gv.QuadMesh, ['xc', 'yc'], dynamic=True).redim.range(Tair=(-30, 30))\n", "qmesh.opts(colorbar=True, cmap='RdBu_r', projection=ccrs.Robinson()) * gf.coastline" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Non-geographic views\n", "\n", "So far we have focused entirely on geographic views of the data, plotting the data on a projection. However the conversion interface is completely general, allowing us to slice and dice the data in any way we like. For these views we will switch to the bokeh plotting extension:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.output(backend='bokeh')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The simplest example of this capability is simply a view showing the temperature over time for each realization, longitude, and latitude coordinate:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "curves = dataset.to(hv.Curve, 'time', dynamic=True).overlay('realization')\n", "\n", "curves.opts(\n", " opts.Curve(xrotation=25, width=600, height=400, framewise=True),\n", " opts.NdOverlay(legend_position='right', toolbar='right'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that the longitude slider will have no effect, if latitude is -90 or +90, since there is only one data point for the North or South poles (regardless of the declared longitude). Here the `.overlay` gives a different curve for each `realization`; without it all `realization` values would be pooled together.\n", "\n", "We can also make non-geographic 2D plots, for instance as a ``HeatMap`` over time and realization, at a specified longitude and latitude:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dataset.to(hv.HeatMap, ['realization', 'time'], dynamic=True).opts(width=600, colorbar=True, tools=['hover'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Lower-dimensional views\n", "\n", "So far all the conversions shown have incorporated each of the available coordinate dimensions explicitly. However, often times we want to see the spread of values along one or more dimensions, pooling all the other dimensions together. A simple example of this is a box plot where we might want to see the spread of surface_temperature on each day, pooled across all latitude and longitude coordinates. To pool across particular dimensions, we can explicitly declare the \"map\" dimensions, which are the key dimensions of the HoloMap container rather than those of the Elements contained in the HoloMap. By explicitly declaring no dimensions to ``groupby``, we can tell the conversion interface to pool across all dimensions *except* the particular key dimension(s) supplied, in this case the `'time'` (plot **A**) and `'realization'` (plot **B**):" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.output(backend='matplotlib')\n", "\n", "hv.Layout([dataset.to(hv.Violin, d, groupby=[], datatype=['dataframe']).opts(xrotation=25)\n", " for d in ['time', 'realization']])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Reducing the data\n", "\n", "So far all the examples we have seen have displayed all the data in some way or another. Another way to explore a dataset is to explicitly reduce the dimensionality or select subregions of a dataset. There are two main ways to do this---either we explicitly select a subset of the data, or we collapse a dimension using an aggregation function, e.g. by computing a mean along a particular dimension.\n", "\n", "### Selecting slices\n", "\n", "Using the ``select`` method we can easily select ranges of coordinates in the dataset. Unfortunately, the select method does not currently know that latitude and longitude are cyclic, so instead we have to select regions at both ends of the prime meridian (0$^\\circ$ longitude) and overlay them. In this way we can stitch together multiple cubes or xarrays or simply view specific subregions:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "northern = dataset.select(latitude=slice(25, 75))\n", "(northern.select(longitude=slice(260, 305)).to(gv.Image, geo_dims) *\n", " northern.select(longitude=slice(330, 362)).to(gv.Image, geo_dims) *\n", " gf.coastline)[::5, ::5]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Selecting a particular coordinate\n", "\n", "To examine one particular coordinate, we can ``select`` it, cast the data to Curves, reindex the data to drop the now-constant latitude and longitude dimensions, and overlay the remaining 'realization' dimension:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "hv.output(backend='bokeh')\n", "\n", "curves = dataset.select(latitude=0, longitude=0).to(hv.Curve, ['time']).reindex().overlay()\n", "\n", "curves.opts(width=600, height=400, legend_position='right', toolbar='above')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As you can see, with GeoViews and HoloViews it is very simple to select precisely which aspects of complex, multidimensional datasets that you want to focus on." ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 2 }