plot_downloaded_products → plot_product_extent

This commit is contained in:
heyarne 2021-03-13 15:37:09 +01:00
commit 3d50f4a014
6 changed files with 22 additions and 22 deletions

View file

@ -137,7 +137,7 @@
],
"source": [
"from sentinelsat import SentinelAPI\n",
"from sentinel_helpers import search_osm, plot_downloaded_products\n",
"from sentinel_helpers import search_osm, plot_product_extent\n",
"import datetime\n",
"import os\n",
"\n",
@ -264,7 +264,7 @@
],
"source": [
"gdf = api.to_geodataframe(products)\n",
"plot_downloaded_products(gdf, footprint, figsize=(9,9))"
"plot_product_extent(gdf, footprint, figsize=(9,9))"
]
},
{
@ -362,7 +362,7 @@
"source": [
"import matplotlib.pyplot as plt\n",
"\n",
"plot_downloaded_products(selection, footprint, figsize=(9,9))\n",
"plot_product_extent(selection, footprint, figsize=(9,9))\n",
"plt.title('Selected products')"
]
},