mod11A1b.c 365 B

123456789101112131415161718192021
  1. /* mod11A1 Data Quality Flag bits[2-3]
  2. * 00 -> class 0: Good data quality of L1B in bands 31 and 32
  3. * 01 -> class 1: Other quality data
  4. * 10 -> class 2: TBD
  5. * 11 -> class 3: TBD
  6. */
  7. #include <grass/raster.h>
  8. CELL mod11A1b(CELL pixel)
  9. {
  10. CELL qctemp;
  11. pixel >>= 2; /*bits [2-3] become [0-1] */
  12. qctemp = pixel & 0x03;
  13. return qctemp;
  14. }