Skip to content

Commit

Permalink
FIX: typo in notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfidan committed Aug 29, 2024
1 parent 57b885f commit 9d541a8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions doc/source/notebooks/retrieve_meteoswiss_data_from_cscs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 11,
"metadata": {},
"outputs": [
{
Expand All @@ -56,7 +56,7 @@
"T0 = datetime.datetime(2024,5,10,10,10)\n",
"T1 = datetime.datetime(2024,5,10,10,20)\n",
"\n",
"files = retrieve_mch_prod('/scratch/wolfensb/',T0, T1, product_name='MLA')\n",
"files = retrieve_mch_prod(OUTPUT_DIRECTORY ,T0, T1, product_name='MLA')\n",
"\n",
"print(len(files))\n",
"print(files[0])\n",
Expand All @@ -79,7 +79,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 12,
"metadata": {},
"outputs": [
{
Expand All @@ -92,7 +92,7 @@
}
],
"source": [
"files = retrieve_mch_prod('/scratch/wolfensb/',T0, T1, product_name='MLA', sweeps = [1,2,3,4])\n",
"files = retrieve_mch_prod(OUTPUT_DIRECTORY ,T0, T1, product_name='MLA', sweeps = [1,2,3,4])\n",
"print(len(files))\n",
"print(files[0:4])"
]
Expand All @@ -106,7 +106,7 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": 13,
"metadata": {},
"outputs": [
{
Expand All @@ -119,7 +119,7 @@
}
],
"source": [
"files = retrieve_mch_prod('/scratch/wolfensb/',T0, T1, product_name='RZC')\n",
"files = retrieve_mch_prod(OUTPUT_DIRECTORY ,T0, T1, product_name='RZC')\n",
"print(len(files))\n",
"print(files)"
]
Expand All @@ -133,7 +133,7 @@
},
{
"cell_type": "code",
"execution_count": 9,
"execution_count": 14,
"metadata": {},
"outputs": [
{
Expand All @@ -146,7 +146,7 @@
}
],
"source": [
"files = retrieve_mch_prod('/scratch/wolfensb/',T0, T1, product_name='CPC', pattern='*00060*')\n",
"files = retrieve_mch_prod(OUTPUT_DIRECTORY ,T0, T1, product_name='CPC', pattern='*00060*')\n",
"print(len(files))\n",
"print(files)"
]
Expand All @@ -167,7 +167,7 @@
},
{
"cell_type": "code",
"execution_count": 10,
"execution_count": 15,
"metadata": {},
"outputs": [
{
Expand All @@ -191,7 +191,7 @@
"source": [
"T0 = datetime.datetime(2024,5,10,8,10)\n",
"T1 = datetime.datetime(2024,5,10,10,20)\n",
"files = retrieve_mch_prod('/scratch/wolfensb/',T0, T1, product_name='CPC', pattern='^(?!.*00005\\.801\\.gif$).*\\.gif$', pattern_type='regex')\n",
"files = retrieve_mch_prod(OUTPUT_DIRECTORY ,T0, T1, product_name='CPC', pattern='^(?!.*00005\\.801\\.gif$).*\\.gif$', pattern_type='regex')\n",
"\n",
"print(files)"
]
Expand Down

0 comments on commit 9d541a8

Please sign in to comment.