123456789101112131415161718 |
- /* Atmospheric correction 250m Unsigned Int bit[12]
- * 0 -> class 0: Not Corrected product
- * 1 -> class 1: Corrected product
- */
- #include <grass/raster.h>
- CELL mod09Q1d(CELL pixel)
- {
- CELL qctemp;
- pixel >>= 12; /* bit no 12 becomes 0 */
- qctemp = pixel & 0x01;
-
- return qctemp;
- }
|