Add headlines to all notebooks

This commit is contained in:
heyarne 2021-03-01 16:09:44 +00:00
commit b0d9d1336d
14 changed files with 843 additions and 401 deletions

View file

@ -4,6 +4,8 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Naive Approach to Downloading\n",
"\n",
"- How much data would we need to download when covering Brandenburg in its entirety?"
]
},
@ -17,8 +19,11 @@
"import os\n",
"from sentinel_helpers import search_osm\n",
"from sentinelsat import SentinelAPI\n",
"from tqdm.notebook import tqdm\n",
"\n",
"api = SentinelAPI(os.getenv('SCIHUB_USERNAME'), os.getenv('SCIHUB_PASSWORD'))\n",
"api._tqdm = tqdm\n",
"\n",
"start_date = date(2018, 1, 1)\n",
"end_date = date(2018, 12, 31)\n",
"cloud_coverage = (0, 30)"