The following code is used to select only good-quality data:
# Use only good quality data
# Random bit integer format, ask Martin if need to work these out again...
qc_flags <- c(0, 2, 24, 26, 32, 34, 56, 58)
df_modis <- df_modis |>
filter(
qc %in% qc_flags,
...
) |>
...
What do these numbers mean in terms of corresponding codes in MODIS product documentation?
@khufkens
The following code is used to select only good-quality data:
What do these numbers mean in terms of corresponding codes in MODIS product documentation? @khufkens