mod09CMGie.c 221 B

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