Skip to content

Commit

Permalink
Dev #8: Fix ERA5 example markdown download end date
Browse files Browse the repository at this point in the history
  • Loading branch information
bnubald committed Jun 4, 2024
1 parent 15940f2 commit cd3818d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
" var_names=[\"tas\", \"zg\", \"uas\", \"vas\"], # Name of variables to download\n",
" dates=[ # Dates to download the variable data for\n",
" pd.to_datetime(date).date()\n",
" for date in pd.date_range(\"2020-01-01\", \"2020-04-31\", freq=\"D\")\n",
" for date in pd.date_range(\"2020-01-01\", \"2020-04-30\", freq=\"D\")\n",
" ],\n",
" path=\"./data\", # Location to download data to (default is `./data`)\n",
" delete_tempfiles=True, # Whether to delete temporary downloaded files\n",
Expand Down

0 comments on commit cd3818d

Please sign in to comment.