Skip to content

Workflows

Workflows are where streaming and grammar meet scientific questions.

CubeDynamics is not just about loading cubes or defining verbs. It is about applying a stable computation interface to environmental analysis.

Workflow Families

Shared Pattern

Scientists and AI agents should both be able to read the same workflow structure:

cube = load_data(...)

result = (
    pipe(cube)
    | v.anomaly()
    | v.aggregate()
    | v.detrend()
)