Antartica InSync Data Cubes

Antarctica InSync

Antarctica InSync is a global effort to synchronise research across Antarctica and the Southern Ocean, connecting ice, ocean, climate, and life to protect this vital region. Website

As part of the initiative, and to facilitate easier analysis of and access to scientific Antarctica data, the the below datasets are combined into zarr stores, reprojected to a common 100x100m grid in the EPSG:3031 Polar projection.

The Data

The datasets we have processed are:

Visualization

You can see a visualisation of the data in eodash:

datacube-overview

Access

These datasets are grouped based on their dimensions into several cubes:

You can read the data from an individual cube using any zarr reader, e.g Python:

import xarray as xr
ds = xr.open_zarr(url)
ds

or combine the cubes with:

import xarray as xr

cube_paths = [
    "https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/antarctica_cube/icetemp.zarr",
    "https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/antarctica_cube/sec.zarr",
    "https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/antarctica_cube/antarctica-combined.zarr",
    "https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/antarctica_cube/icemask_composite.zarr/",
    "https://s3.waw4-1.cloudferro.com/EarthCODE/OSCAssets/antarctica_cube/ice_velocity.zarr"
]

ds = xr.open_mfdataset(cube_paths, engine="zarr",chunks={},compat='no_conflicts')
ds
1 Like