Skip to content

Commit

Permalink
fixed mistake in example notebook 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérémy LAVARENNE committed Jan 7, 2025
1 parent 388d290 commit ac769ea
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Exemple 1 : running a simple yield simulation for one year - Niger, millet, 2017"
"# Exemple 1 : running a simple yield simulation for one year - Niger millet 2017"
]
},
{
Expand Down Expand Up @@ -119,9 +119,13 @@
}
],
"source": [
"import os\n",
"import urllib.request\n",
"import zipfile\n",
"\n",
"# create a folder to store the data\n",
"os.makedirs('../data/exemple_data', exist_ok=True)\n",
"\n",
"# download preformatted data from Zenodo repository\n",
"url = 'https://zenodo.org/records/14608525/files/exemple_data_niger_2017.zip?download=1'\n",
"local_filename = '../data/exemple_data/exemple_data_niger_2017.zip' # store the downloaded file in the ../data/exemple_data/ folder\n",
Expand Down

0 comments on commit ac769ea

Please sign in to comment.