Revisit brandenburg coverage research notebook

This commit is contained in:
heyarne 2020-12-09 17:44:06 +00:00
commit 4187ffa848
4 changed files with 370 additions and 5363 deletions

View file

@ -806,6 +806,23 @@
"target_crs = 'EPSG:25833'"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# **TODO** Plot bands separately\n",
"\n",
"``` python\n",
"with r.open(band_paths(downloaded[0]['path'], ['TCI'], '20m')[0]) as true_color:\n",
" # we do not need\n",
" fig, (axr, axg, axb) = plt.subplots(1,3, figsize=(21,7))\n",
" plot.show((true_color, 1), ax=axr, cmap='Reds', title='red channel')\n",
" plot.show((true_color, 2), ax=axg, cmap='Greens', title='green channel')\n",
" plot.show((true_color, 3), ax=axb, cmap='Blues', title='blue channel')\n",
" plt.show()\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": null,