Skip to content

carbonplan/xpublish-tiles

 
 

xpublish-tiles

PyPI - Version GitHub Actions Codecov Xarray

Web mapping plugins for Xpublish

Project Overview

This project contains a set of web mapping plugins for Xpublish - a framework for serving xarray datasets via HTTP APIs.

The goal of this project is to transform xarray datasets to raster, vector and other types of tiles, which can then be served via HTTP APIs. To do this, the package implements a set of xpublish plugins:

  • xpublish_tiles.xpublish.tiles.TilesPlugin: An OGC Tiles conformant plugin for serving raster, vector and other types of tiles.
  • xpublish_tiles.xpublish.wms.WMSPlugin: An OGC Web Map Service conformant plugin for serving raster, vector and other types of tiles.

Note

The TilesPlugin is feature complete, but the WMSPlugin is still in active development.

Features

Extensive grid support

xpublish-tiles supports handling a wide variety of grids including:

  1. Raster grids specified using an Affine transform specified in the GeoTransform attribute of the grid mapping variable (spatial_ref)
  2. Rectilinear grids specified using two 1D orthogonal coordinates lat[lat], lon[lon].
  3. Curvilinear grids specified using two 2D coordinates lat[nlat, nlon], lon[nlat, nlon].
  4. Unstructured grids specified using two 1D coordinates, interpreted as vertices and triangulated using scipy.spatial.Delaunay : lat[point], lon[point].

Here lat[lat] means a coordinate variable named lat with one dimension named lat.

Note

The library is built to be extensible, and could easily accommodate more grid definitions. Contributions welcome!

We attempt to require as little metadata as possible, and attempts to infer as much as possible. However, it is always better for you to annotate your dataset using the CF & ACDD conventions as well as possible.

Integration Examples

Development

Sync the environment with uv

uv sync

Run the type checker

uv run ty check

Run the tests

uv run pytest tests

Run setup tests (create local datasets, these can be deployed using the CLI)

uv run pytest --setup

CLI Usage

The package includes a command-line interface for quickly serving datasets with tiles and WMS endpoints:

uv run xpublish-tiles [OPTIONS]

Options

  • --port PORT: Port to serve on (default: 8080)
  • --dataset DATASET: Dataset to serve (default: global)
    • global: Generated global dataset with synthetic data
    • air: Tutorial air temperature dataset from xarray tutorial
    • hrrr: High-Resolution Rapid Refresh dataset
    • para: Parameterized dataset
    • eu3035: European dataset in ETRS89 / LAEA Europe projection
    • eu3035_hires: High-resolution European dataset
    • ifs: Integrated Forecasting System dataset
    • curvilinear: Curvilinear coordinate dataset
    • sentinel: Sentinel-2 dataset (without coordinates)
    • global-6km: Global dataset at 6km resolution
    • xarray://<tutorial_name>: Load any xarray tutorial dataset (e.g., xarray://rasm)
    • zarr:///path/to/zarr/store: Load standard Zarr store (use --group for nested groups)
    • icechunk:///path/to/repo: Load Icechunk repository (use --group for groups, --branch for branches)
    • local://<dataset_name>: Convenience alias for icechunk:///tmp/tiles-icechunk --group <dataset_name> (datasets created with uv run pytest --setup)
    • For Arraylake datasets: specify the dataset name in {arraylake_org}/{arraylake_dataset} format (requires Arraylake credentials)
  • --branch BRANCH: Branch to use for Arraylake, Icechunk, or local datasets (default: main)
  • --group GROUP: Group to use for Arraylake, Zarr, or Icechunk datasets (default: '')
  • --cache: Enable icechunk cache for Arraylake and local icechunk datasets (default: enabled)
  • --spy: Run benchmark requests with the specified dataset for performance testing
  • --bench-suite: Run benchmarks for all local datasets and tabulate results (requires uv run pytest --setup to create local datasets first)
  • --concurrency INT: Number of concurrent requests for benchmarking (default: 12)
  • --where CHOICE: Where to run benchmark requests (choices: local, local-booth, arraylake-prod, arraylake-dev; default: local)
    • local: Start server on localhost and run benchmarks against it
    • local-booth: Run benchmarks against existing localhost server (no server startup)
    • arraylake-prod: Run benchmarks against Arraylake production server (earthmover.io)
    • arraylake-dev: Run benchmarks against Arraylake development server (earthmover.dev)
  • --log-level LEVEL: Set the logging level for xpublish_tiles (choices: debug, info, warning, error; default: warning)

Tip

To use local datasets (e.g., local://ifs, local://para_hires), first create them with uv run pytest --setup. This creates icechunk repositories at /tmp/tiles-icechunk/.

Examples

# Serve synthetic global dataset on default port 8080
xpublish-tiles

# Serve air temperature tutorial dataset on port 9000
xpublish-tiles --port 9000 --dataset air

# Serve built-in test datasets
xpublish-tiles --dataset hrrr
xpublish-tiles --dataset para
xpublish-tiles --dataset eu3035_hires

# Load xarray tutorial datasets
xpublish-tiles --dataset xarray://rasm
xpublish-tiles --dataset xarray://ersstv5

# Serve locally stored datasets (first create them with `uv run pytest --setup`)
xpublish-tiles --dataset local://ifs
xpublish-tiles --dataset local://para_hires

# Serve icechunk data from custom path
xpublish-tiles --dataset icechunk:///path/to/my/repo --group my_dataset

# Serve standard Zarr store
xpublish-tiles --dataset zarr:///path/to/data.zarr

# Serve Zarr store with a specific group
xpublish-tiles --dataset zarr:///path/to/data.zarr --group subgroup

# Serve Icechunk repository
xpublish-tiles --dataset icechunk:///path/to/icechunk/repo --group my_dataset

# Serve Arraylake dataset with specific branch and group
xpublish-tiles --dataset earthmover-public/aifs-outputs --branch main --group 2025-04-01/12z

# Run benchmark with a specific dataset
xpublish-tiles --dataset local://para_hires --spy

# Run benchmark with custom concurrency and against Arraylake production
xpublish-tiles --dataset para --spy --concurrency 20 --where arraylake-prod

# Run benchmark suite for all local datasets (creates tabulated results)
xpublish-tiles --bench-suite

# Run benchmark suite for all local datasets and compare with titiler
xpublish-tiles --bench-suite --titiler

# Enable debug logging
xpublish-tiles --dataset hrrr --log-level debug

Benchmarking

The CLI includes a benchmarking feature that can be used to test tile server performance:

# Run benchmark with a specific dataset (starts server automatically)
xpublish-tiles --dataset local://para_hires --spy

# Run benchmark against existing localhost server
xpublish-tiles --dataset para --spy --where local-booth

# Run benchmark against Arraylake production server with custom concurrency
xpublish-tiles --dataset para --spy --where arraylake-prod --concurrency 8

# Run benchmark suite for all local datasets
xpublish-tiles --bench-suite

Benchmark Suite

The --bench-suite option runs performance tests on all available local datasets and creates a tabulated summary of results. This is useful for comparing performance across different dataset types and configurations.

Prerequisites: You must first create the local test datasets:

uv run pytest --setup

The benchmark suite will test the following local datasets:

  • ifs: Integrated Forecasting System dataset
  • hrrr: High-Resolution Rapid Refresh dataset
  • para_hires: High-resolution parameterized dataset
  • eu3035_hires: High-resolution European dataset
  • utm50s_hires: High-resolution UTM Zone 50S dataset
  • sentinel: Sentinel-2 dataset
  • global-6km: Global dataset at 6km resolution

The output includes a performance table showing tiles processed, success/failure rates, wall time, average request time, and requests per second for each dataset.

Individual Benchmarking

The --spy flag enables benchmarking mode. The benchmarking behavior depends on the --where option:

  • --where local (default): Starts the tile server and automatically runs benchmark requests against it
  • --where local-booth: Runs benchmarks against an existing localhost server (doesn't start a new server)
  • --where arraylake-prod: Runs benchmarks against Arraylake production server (earthmover.io)
  • --where arraylake-dev: Runs benchmarks against Arraylake development server (earthmover.dev)

The benchmarking process:

  • Warms up the server with initial tile requests
  • Makes concurrent tile requests (configurable with --concurrency, default: 12) to test performance
  • Uses dataset-specific benchmark tiles or falls back to global tiles
  • Automatically exits after completing the benchmark run
  • Uses appropriate colorscale ranges based on dataset attributes

Once running, the server provides:

  • Tiles API at http://localhost:8080/tiles/
  • WMS API at http://localhost:8080/wms/
  • Interactive API documentation at http://localhost:8080/docs

An example tile url:

http://localhost:8080/tiles/WebMercatorQuad/4/4/14?variables=2t&style=raster/viridis&colorscalerange=280,300&width=256&height=256&valid_time=2025-04-03T06:00:00

Where 4/4/14 represents the tile coordinates in {z}/{y}/{x}

Deployment notes

  1. Make sure to limit NUMBA_NUM_THREADS; this is used for rendering categorical data with datashader.
  2. The first invocation of a render will block while datashader functions are JIT-compiled. Our attempts to add a precompilation step to remove this have been unsuccessful.

Configuration

Settings can be configured via environment variables or config files. The async loading setting has been moved to the config system (use async_load in config files or XPUBLISH_TILES_ASYNC_LOAD environment variable).

  1. XPUBLISH_TILES_NUM_THREADS: int - controls the size of the threadpool
  2. XPUBLISH_TILES_ASYNC_LOAD: bool - whether to use Xarray's async loading
  3. XPUBLISH_TILES_TRANSFORM_CHUNK_SIZE: int - when transforming coordinates, do so by submitting (NxN) chunks to the threadpool.
  4. XPUBLISH_TILES_DETECT_APPROX_RECTILINEAR: bool - detect whether a curvilinear grid is approximately rectilinear
  5. XPUBLISH_TILES_RECTILINEAR_CHECK_MIN_SIZE: int - check for rectilinearity if array.shape > (N, N)
  6. XPUBLISH_TILES_MAX_RENDERABLE_SIZE: int - do not attempt to load or render arrays with size greater than this value
  7. XPUBLISH_TILES_DEFAULT_PAD: int - how much to pad a selection on either side

Performance Notes

For context, the rendering pipeline is:

  1. Receive dataset ds and QueryParams from the plugin.
  2. Grab GridSystem for ds and requested DataArray. The inference here is complex and is cached internally using the ds.attrs['_xpublish_id'] and the requested DataArray.name. Be sure to set this attribute to a unique string.
  3. Based on the grid system, the data are subset to the bounding box using slices. For datasets with a geographic CRS, padding is applied to the slicers if needed to account for the meridian or anti-meridian and depending on the dataset's longitude convention (0→360 or -180→180).
  4. This plugin supports parsing multiple "grid mappings" for a single DataArray. If present, we pick coordinates corresponding to the output CRS. If not, we look to see if there are coordinates corresponding to epsg:4326, if not, we use the native coordinates.
  5. Coordinates are transformed to the output CRS, if needed. This is usually a very slow step. For performance, a. We reimplement the epsg:4326 -> epsg:3857 transformation because it is separable (x is fully determined by longitude, and y is fully determined by latitude). This allows us to preserve the regular or rectilinear nature of the grid if possible. b. If (a) is not possible, we broadcast the input coordinates against each other, then cut up the coordinates in to chunks and process them in a threadpool using pyproj.
  6. Xarray's new load_async is used to load the data in to memory.
  7. Next we check whether the grid, if curvilinear, may be approximated by a rectilinear grid. a. The Rectilinear mesh codepath is datashader can be 3-10X faster than the Curvilinear codepath, so this approximation is worth it. b. We replicate the logic in datashader that constructs an array that contains output pixel id for each each input pixel -- this is done for each axis. c. If the difference between these arrays, constructed from the curvilinear and rectilinear meshes, differs by one pixel, then we approximate the grid as rectilinear. This threshold is pretty tight, and requires some experimentation to loosen further. If loosening, we will need to pad appropriately. d. Realistically this optimization is triggered on high resolution data at zoom levels where the grid distortion isn't very high.

Performance recommendations:

  1. Make sure _xpublish_id is set in Dataset.attrs.
  2. If CRS transformations are a bottleneck,
    1. Assign reprojected coordinates for the desired output CRS using multiple grid mapping variables. This will take reprojection time down to 0.
    2. See if you can approximate the coordinate system with rectilinear coordinates as much as possible. This triggers a much faster rendering pathway in datashader.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details

About

Tile router for Xpublish

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Packages

No packages published

Languages

  • Python 100.0%