12345678910111213141516171819 |
- /* mod13A2 Atmosphere BRDF correction performed 1Km bit[9]
- * 00 -> class 0: No
- * 01 -> class 1: Yes
- */
- #include <grass/raster.h>
- CELL mod13A2e (CELL pixel)
- {
- CELL qctemp;
- pixel >>= 9; /*bit [9] becomes [0] */
- qctemp = pixel & 0x01;
-
- return qctemp;
- }
|