-
Hi @nquarder , I was finally able to download the data from APPEEARS today by 1:00am GMT. However on proceeding with the notebook, I ran into a problem whilst trying to clip my DataArray to the boundaries for both inside and outside the reservation. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Hi @oye-bobs what is your |
Beta Was this translation helpful? Give feedback.
-
okay @oye-bobs try replacing Try that and see what happens! |
Beta Was this translation helpful? Give feedback.
-
Hi @nquarder , I did that, but it still didn't work. |
Beta Was this translation helpful? Give feedback.
-
Hi @oye-bobs - I was able to look at your notebook (https://github.com/cu-esiil-edu/shortcourse-02-vegetation-oye-bobs/blob/main/vegetation.ipynb) and it appears you have some variable names that are causing the issue. Notice in the cell where we write the loop to extract the date from the file names and add it as a dimension. At the top of that cell we create an empty list called Then, notice in the next cell down, we create a new variable called
to:
Then you will have the correct value assigned to the |
Beta Was this translation helpful? Give feedback.
Hi @oye-bobs - I was able to look at your notebook (https://github.com/cu-esiil-edu/shortcourse-02-vegetation-oye-bobs/blob/main/vegetation.ipynb) and it appears you have some variable names that are causing the issue.
Notice in the cell where we write the loop to extract the date from the file names and add it as a dimension. At the top of that cell we create an empty list called
ndvi_das = []
. We fill this empty list with the output from the loop. In your code you call thisndvi_da
. You should change this tondvi_das
like we have in the solutions (https://cu-esiil-edu.github.io/esiil-learning-portal/shortcourse/notebooks/05-vegetation/vegetation.html).Then, notice in the next cell down…