Skip to article frontmatterSkip to article content

UXarray for Advanced HEALPix Analysis & Visualization

HEALPix logo

UXarray for Advanced HEALPix Analysis & Visualization

In this section, you’ll learn:

  • Using the uxarray package to perform advanced analysis operators over HEALPix data such as non-conservative zonal means, etc.

Prerequisites

ConceptsImportanceNotes
UXarrayNecessary
HEALPix overviewNecessary

Time to learn: 30 minutes


import cartopy.crs as ccrs
import intake
import uxarray as ux
Loading...

Open data catalog

Let us open the online catalog from the WCRP’s Digital Earths Global Hackathon 2025 catalog repository using intake and read the output of the ICON run d3hp003, which is stored in the HEALPix format:

cat_url = "https://digital-earths-global-hackathon.github.io/catalog/catalog.yaml"
cat = intake.open_catalog(cat_url)
model_run = cat.online.icon_d3hp003

We can look into the highest possible resolution level allowed in this dataset at zoom level = 9 as Xarray.Dataset:

ds = model_run(zoom=9, time="P1D").to_dask()
/home/runner/micromamba/envs/healpix-cookbook-dev/lib/python3.13/site-packages/intake_xarray/base.py:21: FutureWarning: The return type of `Dataset.dims` will be changed to return a set of dimension names in future, in order to be more consistent with `DataArray.dims`. To access a mapping from dimension names to lengths, please use `Dataset.sizes`.
  'dims': dict(self._ds.dims),

Create UXarray Datasets from HEALPix

We can use UXarray’s from_healpix API as follows to open a HEALPix grid from xarray.Dataset:

uxds = ux.UxDataset.from_healpix(ds)
uxds
---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
Cell In[4], line 1
----> 1 uxds = ux.UxDataset.from_healpix(ds)
      2 uxds

File ~/micromamba/envs/healpix-cookbook-dev/lib/python3.13/site-packages/uxarray/core/dataset.py:328, in UxDataset.from_healpix(cls, ds, pixels_only, face_dim, **kwargs)
    321 # Attach a HEALPix Grid
    322 uxgrid = Grid.from_healpix(
    323     zoom=get_zoom_from_cells(ds.sizes[face_dim]),
    324     pixels_only=pixels_only,
    325     **kwargs,
    326 )
--> 328 return cls.from_xarray(ds, uxgrid, {face_dim: "n_face"})

File ~/micromamba/envs/healpix-cookbook-dev/lib/python3.13/site-packages/uxarray/core/dataset.py:281, in UxDataset.from_xarray(cls, ds, uxgrid, ugrid_dims)
    278     ugrid_dims = uxgrid._source_dims_dict
    280 # map each dimension to its UGRID equivalent
--> 281 ds = _map_dims_to_ugrid(ds, ugrid_dims, uxgrid)
    283 return cls(ds, uxgrid=uxgrid)

File ~/micromamba/envs/healpix-cookbook-dev/lib/python3.13/site-packages/uxarray/core/utils.py:57, in _map_dims_to_ugrid(ds, _source_dims_dict, grid)
     55 if ds.sizes[dim] == grid.n_face:
     56     _source_dims_dict[dim] = "n_face"
---> 57 elif ds.sizes[dim] == grid.n_node:
     58     _source_dims_dict[dim] = "n_node"
     59 elif n_edge is not None:

File ~/micromamba/envs/healpix-cookbook-dev/lib/python3.13/site-packages/uxarray/grid/grid.py:820, in Grid.n_node(self)
    817 @property
    818 def n_node(self) -> int:
    819     """Total number of nodes."""
--> 820     return self._ds.sizes["n_node"]

File ~/micromamba/envs/healpix-cookbook-dev/lib/python3.13/site-packages/xarray/core/utils.py:452, in Frozen.__getitem__(self, key)
    451 def __getitem__(self, key: K) -> V:
--> 452     return self.mapping[key]

KeyError: 'n_node'

Data variable of interest

Then let us pick a variable, the surface temperature, from the dataset, which will give us an uxarray.UxDataArray:

uxda = uxds["ts"]
uxda

Global mean and plot

Computing the global surface temperature mean (at the first timestep) and also having a quick plot of it would be a good idea to have as references to compare the upcoming analyses & visualizations to them:

print(
    "Global surface temperature average on ", uxda.time[0].values, ": ", uxda.isel(time=0).mean().values, " K"
)
%%time

projection = ccrs.Robinson()

uxda.isel(time=0).plot(
    projection=projection,
    cmap="inferno",
    features=["borders", "coastline"],
    title="Global surface temperature (Polygon raster)",
    width=700,
)

Rasterized point plots

When working with a higher-resolution dataset at a global scale, it’s not always practical to render each cell as a polygon. Instead, we can rasterize the center of each pixel.

%%time
projection = ccrs.Robinson()

# Controls the size of each pixel (smaller value leads to larger pixels)
pixel_ratio = 0.5

uxda.isel(time=0).plot.points(
    projection=projection,
    rasterize=True,
    dynamic=False,
    width=1000,
    height=500,
    pixel_ratio=pixel_ratio,
    cmap="inferno",
    title=f"Global surface temperature (Point raster), pixel_ratio={pixel_ratio}",
)

If we decrease the size of each pixel (by setting the pixel ratio to a higher value), we can start to see missing values, which is due to a lower density of points near the poles, leading to some pixels not containing any of our original points.

Because of this, it’s useful to try a few pixel_ratio values and see which one works best for your given resolution.

projection = ccrs.Robinson()

# Controls the size of each pixel (smaller value leads to larger pixels)
pixel_ratio = 2.0

uxda.isel(time=0).plot.points(
    projection=projection,
    rasterize=True,
    dynamic=False,
    width=1000,
    height=500,
    pixel_ratio=pixel_ratio,
    cmap="inferno",
    title=f"Global surface temperature (Point raster) with a bad pixel size selection, pixel_ratio={pixel_ratio}",
)

Cross-sections

We can look at constant latitude/longitude cross-sections of an uxarray.UxDataArray:

boulder_lat = 40.0190


# With fine resolutions like zoom level of 9, it is visually hard to observe the cross-sections,
# so we will use a zoom level of 4 for a better visualization
uxda_coarse = ux.UxDataset.from_healpix(model_run(zoom=4, time="P1D").to_dask())["ts"]
uxda_coarse.uxgrid.face_node_connectivity

uxda_lat = uxda_coarse.cross_section.constant_latitude(boulder_lat)
uxda_lat
import geoviews.feature as gf

uxda_lat.isel(time=0).plot(
    rasterize=False,
    projection=projection,
    global_extent=True,
    cmap="inferno",
    clim=(220, 310),
    features=["coastline"],
    title=f"Global surface temperature cross-section at {boulder_lat} degrees latitude",
    width=700,
) * gf.grid(projection=projection)

Let’s also look at the mean of the cross-section:

print(
    f"Mean at {boulder_lat} degrees lat (Boulder, CO, USA): {uxda_lat.mean().values} K"
)

Latitude interval

uxda_lat_interval = uxda_coarse.cross_section.constant_latitude_interval(
    [boulder_lat - 15, boulder_lat + 15]
)
uxda_lat_interval.isel(time=0).plot(
    rasterize=False,
    projection=projection,
    global_extent=True,
    cmap="inferno",
    clim=(220, 310),
    features=["coastline"],
    title=f"Global surface temperature cross-section at the latitude interval [{boulder_lat-5},{boulder_lat+5}] degrees",
    width=700,
) * gf.grid(projection=projection)
print(
    f"Mean at the latitude interval of [{boulder_lat-5},{boulder_lat+5}] degrees (-/+15 degrees Boulder, CO, USA): {uxda_lat_interval.mean().values} K"
)

Non-conservative zonal mean

Calculating the zonal mean is easy by providing the latitude range between -90 and 90 degrees with a step size in degrees:

%%time
zonal_mean_ts = uxda.isel(time=0).zonal_mean(lat=(-90, 90, 5))
(
    uxda.isel(time=0).plot(
        cmap="inferno",
        # periodic_elements="split",
        height=300,
        width=600,
        colorbar=False,
        ylim=(-90, 90),
    )
    + zonal_mean_ts.plot.line(
        x="ts_zonal_mean",
        y="latitudes",
        height=300,
        width=180,
        ylabel="",
        ylim=(-90, 90),
        xlim=(220, 310),
        # xticks=[220, 250, 280, 310],
        yticks=[-90, -45, 0, 45, 90],
        grid=True,
    )
).opts(title="Temperature and its Zonal means at every 5 degree latitude")

Remapping

Now, we will be looking into one of many possible use cases where remapping would be helpful.

The data set we have been using in this section so far belongs to the newer ICON simulation, icon_d3hp003, while there is an older simulation as well, icon_ngc4008, in the same catalog. They are both stored in the HEALPix format in this case, but for most of the model intercomparison workflows in general, they might not be even so. UXarray would still be helpful to remap of those model outputs to other and then make comparisons since it can support several most commonly used unstructrued grid formats.

In this particular case, we still have some use for UXarray’s remapping such that the newer simulation has the zoom = 9 as the maximum available resolution, while the older one has zoom = 10 available. Unfortunately at zoom = 10 though, there is no actual data simulated for ts, the surface temperature. If there was, we could remap the newer simulation’s output to that one, so we could have both of them at zoom = 10, and then we could look into the difference between them for instance. Let’s pretend the highest zoom-level in the newer data is zoom = 8 then, and remap that one into the older simulation’s grid.

Let’s start with opening the older simulation run first:

model_run_older = cat.online.icon_ngc4008

ds_older = model_run_older(zoom=8, time="P1D").to_dask()

uxds_older = ux.UxDataset.from_healpix(ds_older)
uxds_older

Plot the older simulation for reference

Let’s have a quick look at how the global surface temperature looks like in the older simulation’s output:

uxds_older["ts"].isel(time=0).plot(
    projection=projection,
    cmap="inferno",
    features=["borders", "coastline"],
    title="Global surface temperature (zoom = 8) - Older Simulation",
    width=700,
)

Visually there does not seem to be a huge difference between this and the newer simulation’s output we had plotted in the very beginning.

Remap the old simulation output to the newer one

Let’s start remapping! For that, we will use the uxgrid of the newer simulation output as the destination grid and use an inverse distance weighted implementation:

%%time
uxda_older_remapped = uxds_older["ts"].isel(time=0).remap.inverse_distance_weighted(
    uxds.uxgrid, k=3, remap_to="face centers", coord_type="cartesian"
)

Plot the difference between the old and newer simulations

Now that we have the older and newer model outputs on the same grid, let’s look at the surface temperature differences between the two:

(uxda.isel(time=0) - uxda_older_remapped).plot(
    projection=projection,
    cmap="RdBu_r",
    features=["borders", "coastline"],
    title="Global surface temperature difference between older and newer simulations (zoom = 9)",
    clim=(-25,25),
    width=700,
)