Datamesh
A schema-aware engine that unifies satellite, in-situ, hindcast and forecast data behind a single API.
Learn the Datamesh →The Oceanum.io environmental intelligence platform turns environmental data into real-world knowledge, insights and applications — under one easy-to-use interface and API.
A schema-aware engine that unifies satellite, in-situ, hindcast and forecast data behind a single API.
Learn the Datamesh →Build interactive dashboards and operational tools on top of Oceanum's data and compute services.
Apps and dashboards →Worked tutorials covering common workflows — from a single timeseries download to a full operational pipeline.
Tutorials and examples →The Oceanum Datamesh client connects to hundreds of datasets through a single Python interface — pull a slice, plot it, build on it. No format wrangling.
Datamesh documentationfrom oceanum.datamesh import Connector
dm = Connector(token="dm_•••")
ds = dm.query(
datasource="era5_wave",
geofilter={"type": "Point",
"coords": [173.45, -41.29]},
timefilter=["2024-01-01", "2024-12-31"],
)
ds.hs.plot()