00001 #ifndef _WINC_SATTOOL
00002 #define _WINC_SATTOOL
00003
00004 #include <WXP/Image.h>
00005
00006 namespace WXP {
00007 class SatTool {
00008 public:
00009 static float toIRTemp( int ind, float a, float b );
00010 static int toIRInd( float temp, float a, float b );
00011 static float toIRTemp( int ind, float a, float b, float c );
00012 static int toIRInd( float temp, float a, float b, float c );
00013 static float toIRG7Temp( int ind );
00014 static int toIRG7Ind( float temp );
00015 static float toIRGITemp( int ind );
00016 static int toIRGIInd( float temp );
00017 static float toIRMTTemp( int ind );
00018 static int toIRMTInd( float temp );
00019 static int addCalibration( Image &image, const char *calib );
00020 };
00021 }
00022 #endif