Skip to content

Commit

Permalink
Merge pull request #16 from orianif/dev
Browse files Browse the repository at this point in the history
comment text edited
  • Loading branch information
lukasValentin authored Aug 24, 2023
2 parents a277eb7 + 7a1d55d commit f3bdac1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions notebooks/Sentinel-2/sentinel2_data_download_to_array.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"## Learning Objectives\n",
"\n",
"This script allows you to:\n",
"* query the sentinel-2 image collection using EODAL given;\n",
"* downloading long timeseries of images spanning multiple years for a given bounding box geometry;\n",
"* stocking the data as form of numpy array, with all images on the same grid, conveninet for vector operations and pixel analysis.\n",
"* query the sentinel-2 image collection using EOdal;\n",
"* download long timeseries of images spanning multiple years for a given bounding box geometry;\n",
"* stock the data in form of numpy array, with all images on the same grid, conveninet for vector operations and pixel analysis.\n",
"\n",
"To adapt the script to your application, only the section marked with (EDIT) need\n",
"to be edited.\n",
Expand Down Expand Up @@ -649,7 +649,7 @@
}
],
"source": [
"#%% compute NDVI for alla scenes as a matrix operation\n",
"#%% compute NDVI for all scenes as a unique matrix operation\n",
"RED = im[:,:,2,:]\n",
"NIR = im[:,:,3,:]\n",
"NDVI = (NIR-RED)/(NIR+RED)\n",
Expand Down

0 comments on commit f3bdac1

Please sign in to comment.