Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

comment text edited #16

Merged
merged 1 commit into from
Aug 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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