WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
SatTool.h
1#ifndef _WINC_SATTOOL
2#define _WINC_SATTOOL
3
4#include <WXP/Image.h>
5
6namespace WXP {
7 class SatTool {
8 public:
9 static float toIRTemp( int ind, float a, float b );
10 static int toIRInd( float temp, float a, float b );
11 static float toIRTemp( int ind, float a, float b, float c );
12 static int toIRInd( float temp, float a, float b, float c );
13 static float toIRG7Temp( int ind );
14 static int toIRG7Ind( float temp );
15 static float toIRGITemp( int ind );
16 static int toIRGIInd( float temp );
17 static float toIRMTTemp( int ind );
18 static int toIRMTInd( float temp );
19 static int addCalibration( Image &image, const char *calib );
20 };
21}
22#endif
This class defines an image.
Definition: Image.h:19
This class has tools used in processing satellite data.
Definition: SatTool.h:7
static int toIRMTInd(float temp)
Definition: SatTool.cc:98
static int toIRG7Ind(float temp)
Definition: SatTool.cc:57
static float toIRMTTemp(int ind)
Definition: SatTool.cc:88
static float toIRG7Temp(int ind)
Definition: SatTool.cc:45
static float toIRGITemp(int ind)
Definition: SatTool.cc:68
static int toIRGIInd(float temp)
Definition: SatTool.cc:78
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4