mod09A1sj.c 243 B

12345678910111213141516171819
  1. /* BRDF correction performed unsigned int bits[14]
  2. * 0 -> class 0: Yes
  3. * 1 -> class 1: No
  4. */
  5. #include <grass/raster.h>
  6. CELL mod09A1sj(CELL pixel)
  7. {
  8. CELL qctemp;
  9. pixel >>= 14;
  10. qctemp = pixel & 0x01;
  11. return qctemp;
  12. }