# IF YOU ARE RUNNING ON A JUPYTERHUB SERVER# Get hub base path (e.g. /2026-winter-cee-467-a/user/gbrench/)base_url=os.environ.get("JUPYTERHUB_SERVICE_PREFIX","/")# Extract dashboard port from the default linkdashboard_link=client.dashboard_linkport=dashboard_link.split(":")[-1].split("/")[0]# Construct proxied dashboard URLproxied_link=f"{base_url}proxy/{port}/status"print("Dask dashboard:")print(proxied_link)client
European Centre for Medium-Range Weather Forecasts
GRIB_subCentre :
0
Conventions :
CF-1.7
institution :
European Centre for Medium-Range Weather Forecasts
history :
2022-02-28T07:59 GRIB to CDM+CF via cfgrib-0.9.10.0/ecCodes-2.24.2 with {"source": "ecv-for-climate-change_t2m_anomaly/1month_anomaly_Global_ea_2t_197901_1981-2010_v02.grib", "filter_by_keys": {}, "encode_cf": ["parameter", "time", "geography", "vertical"]}
start=time.time()coarsen_and_polyfit(anom_chunks_ds,coarsen_factor=4).compute()end=time.time()print(f"Time taken with chunks: {end-start:.2f} seconds")