|
200 | 200 | } |
201 | 201 | }, |
202 | 202 | "source": [ |
203 | | - "Search for low-cloud items using `eo:cloud_cover` in each of the collections of interest. Specify the landsat-8 and landsat-9 platforms to avoid degraded data from landsat-7. " |
| 203 | + "Search for low-cloud items using `eo:cloud_cover` in each of the collections of interest. \n", |
| 204 | + "This query searches for items with <= 10% cloud cover.\n", |
| 205 | + "Specify the landsat-8 and landsat-9 platforms to avoid degraded data from landsat-7. " |
204 | 206 | ] |
205 | 207 | }, |
206 | 208 | { |
|
291 | 293 | } |
292 | 294 | }, |
293 | 295 | "source": [ |
294 | | - "We can construct a table summarizing the available assets for each collection. The indicates which four assets are relevant for RGB and NDVI (Normalized Difference Vegetation Index) visualizations, with common names of red, green, blue, and nir/nir08. Importantly, the datasets do **not** have identical mapping of band names to spectral region." |
| 296 | + "We can construct a table summarizing the available assets for each collection. The table indicates the four assets relevant for RGB and NDVI (Normalized Difference Vegetation Index) visualizations, with common names of red, green, blue, and nir/nir08. Importantly, the datasets do **not** have identical mapping of band names to spectral region." |
295 | 297 | ] |
296 | 298 | }, |
297 | 299 | { |
|
509 | 511 | } |
510 | 512 | }, |
511 | 513 | "source": [ |
512 | | - "And iterate across all items to get the mean NDVI within `nvdi_bbox_of_interest` for each time point within each collection" |
| 514 | + "And iterate across all items to get the mean NDVI within `ndvi_bbox_of_interest` for each time point within each collection" |
513 | 515 | ] |
514 | 516 | }, |
515 | 517 | { |
|
730 | 732 | " }\n", |
731 | 733 | " )\n", |
732 | 734 | "\n", |
733 | | - " # Print every 20th item, and also the last item\n", |
| 735 | + " # Print progress upon calculating every 40th item,\n", |
| 736 | + " # and also the last item\n", |
734 | 737 | " if ii % 40 == 0 or ii == len(items):\n", |
735 | 738 | " print(f\" ... {ii}/{len(items)} items processed\")\n", |
736 | 739 | "\n", |
|
1021 | 1024 | } |
1022 | 1025 | }, |
1023 | 1026 | "source": [ |
1024 | | - "We can also construct a gif over all a collection's items `timelapse_bbox_of_interest`. Notice the seasonal changes in vegetation align with time series plotted earlier." |
| 1027 | + "We can also construct a gif over all a collection's items `timelapse_bbox_of_interest`.\n", |
| 1028 | + "Notice the seasonal changes in vegetation align with the time series plotted earlier." |
1025 | 1029 | ] |
1026 | 1030 | }, |
1027 | 1031 | { |
|
0 commit comments