"pplt" → "plt"

This commit is contained in:
heyarne 2021-03-02 14:31:16 +00:00
commit 1ff1d972d5
7 changed files with 126 additions and 136 deletions

View file

@ -516,7 +516,7 @@
"source": [
"from sentinel_helpers import scihub_cloud_mask\n",
"import rasterio as r\n",
"import matplotlib.pyplot as pplt\n",
"import matplotlib.pyplot as plt\n",
"\n",
"highres_raster_path = [band_path for band_path in highest_resolution_band_paths if resolution(band_path) == target_resolution][0]\n",
"highres_raster_path"
@ -583,7 +583,7 @@
" target_shape=target_shape,\n",
" target_transform=target_transform)\n",
"\n",
"pplt.imshow(raster_cloud_mask)"
"plt.imshow(raster_cloud_mask)"
]
},
{
@ -744,7 +744,7 @@
"outputs": [],
"source": [
"# to debug the cloud / tile mask, uncomment these lines\n",
"# pplt.imshow(tile_mask)"
"# plt.imshow(tile_mask)"
]
},
{