Reading QA_Pixel Channel in Landsat8 #1182
Unanswered
TolgaAktas
asked this question in
Q&A
Replies: 2 comments 23 replies
-
#1149 may help with this, although we'll likely need to go a step further and not cast anything ever. |
Beta Was this translation helpful? Give feedback.
15 replies
-
As it stands, the sample code I sent you couldn't find the bands so I had to make the following edition:
At the bottom, I added the following checks to see if they are identical bands:
Allclose within separate images return True, although the last allclose returns False. So all the bands within a single image is still identical.
|
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As part of my dataset instantiation, QA_PIXEL is also a band that I am reading along with other 11 channels in L8 products. QA_PIXEL is supposed to be a number of bit masks but it's currently being read as float values, which I am not sure if the Dataset object is reading correctly. How can I correctly read the QA_PIXEL band as part of band stack?
bands = ["B1","B2","B3","B4","B5","B6","B7","B8","B9","B10", "B11","QA_PIXEL"] cloudfree_dataset = Landsat8(root=cloudfree_path,bands=bands)
Beta Was this translation helpful? Give feedback.
All reactions