From 4472032eac8a10afe87257d05abc9446c5b60aca Mon Sep 17 00:00:00 2001 From: Carsten Hinz <c.hinz@fz-juelich.de> Date: Mon, 22 Jul 2024 09:20:50 +0200 Subject: [PATCH] reduced data range for the sake of this example --- examples/produce_data_manyStations.ipynb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/produce_data_manyStations.ipynb b/examples/produce_data_manyStations.ipynb index f712a3a..b3c25fb 100644 --- a/examples/produce_data_manyStations.ipynb +++ b/examples/produce_data_manyStations.ipynb @@ -54,7 +54,9 @@ "grid = RegularGrid( lat_resolution=1.9, lon_resolution=2.5, )\n", "\n", "configs = dict()\n", - "for year in range (0,19):\n", + "##for educational reasons the extraction of only two years is fine:-)\n", + "#for year in range (0,19):\n", + "for year in range (0,2):\n", " valid_data = Config(\n", " grid,\n", " TimeSample( start=dt(2000+year,1,1), end=dt(2000+year,12,31), sampling=\"daily\"),#possibly adopt range:-)\n", -- GitLab