def timeseries()

in src/guclimate/process/cli.py [0:0]


def timeseries(
    input: Annotated[
        Path,
        typer.Argument(
            help="Path to source data, e.g. ./dataset.nc",
            callback=validateInputPath,
        ),
    ],
    variable: Annotated[
        str,
        typer.Argument(help="Variable name"),
    ],
    output: Annotated[
        Path,
        typer.Argument(
            help="Output path",
        ),
    ] = "./timeseries.xlsx",