Skip to content

Commit

Permalink
fix cordex request
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Apr 8, 2024
1 parent a7a76e6 commit 9946700
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
10 changes: 2 additions & 8 deletions notebooks/wp4/extreme_indices.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,6 @@
"collection_id = \"CMIP6\"\n",
"assert collection_id in (\"CORDEX\", \"CMIP6\")\n",
"\n",
"# Define region for analysis\n",
"area = [72, -22, 27, 45]\n",
"\n",
"# Define region for request\n",
"cordex_domain = \"europe\"\n",
"\n",
"# Interpolation method\n",
"interpolation_method = \"bilinear\"\n",
"\n",
Expand Down Expand Up @@ -193,6 +187,7 @@
},
"outputs": [],
"source": [
"area = [72, -22, 27, 45]\n",
"request_era = (\n",
" \"reanalysis-era5-single-levels\",\n",
" {\n",
Expand Down Expand Up @@ -245,14 +240,13 @@
"source": [
"request_cordex = {\n",
" \"format\": \"zip\",\n",
" \"domain\": cordex_domain,\n",
" \"domain\": \"europe\",\n",
" \"experiment\": \"historical\",\n",
" \"horizontal_resolution\": \"0_11_degree_x_0_11_degree\",\n",
" \"temporal_resolution\": \"daily_mean\",\n",
" \"variable\": cordex_variable,\n",
" \"gcm_model\": \"mpi_m_mpi_esm_lr\",\n",
" \"ensemble_member\": \"r1i1p1\",\n",
" \"area\": area,\n",
"}\n",
"\n",
"request_cmip6 = {\n",
Expand Down
10 changes: 2 additions & 8 deletions notebooks/wp4/extreme_indices_future.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,6 @@
"collection_id = \"CMIP6\"\n",
"assert collection_id in (\"CORDEX\", \"CMIP6\")\n",
"\n",
"# Define region for analysis\n",
"area = [72, -22, 27, 45]\n",
"\n",
"# Define region for request\n",
"cordex_domain = \"europe\"\n",
"\n",
"# Interpolation method\n",
"interpolation_method = \"bilinear\"\n",
"\n",
Expand Down Expand Up @@ -188,6 +182,7 @@
"metadata": {},
"outputs": [],
"source": [
"area = [72, -22, 27, 45]\n",
"request_lsm = (\n",
" \"reanalysis-era5-single-levels\",\n",
" {\n",
Expand Down Expand Up @@ -225,13 +220,12 @@
"source": [
"request_cordex = {\n",
" \"format\": \"zip\",\n",
" \"domain\": cordex_domain,\n",
" \"domain\": \"europe\",\n",
" \"horizontal_resolution\": \"0_11_degree_x_0_11_degree\",\n",
" \"temporal_resolution\": \"daily_mean\",\n",
" \"variable\": cordex_variable,\n",
" \"gcm_model\": \"mpi_m_mpi_esm_lr\",\n",
" \"ensemble_member\": \"r1i1p1\",\n",
" \"area\": area,\n",
"}\n",
"\n",
"request_cmip6 = {\n",
Expand Down

0 comments on commit 9946700

Please sign in to comment.