OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
TiepointDSR.h
Go to the documentation of this file.
1 /*
2  * EnvsatTiepoint.h
3  *
4  * Created on: Jan 4, 2013
5  * Author: dshea
6  */
7 
8 #ifndef ENVSATTIEPOINT_H_
9 #define ENVSATTIEPOINT_H_
10 
11 #include "EnvsatDSR.h"
12 
13 class TiepointDSR : public EnvsatDSR {
14 public:
15  TiepointDSR(int size);
16  virtual ~TiepointDSR();
17 
18  virtual void print();
19 
20  virtual double getStartTime();
21 
22  virtual int getNumPixels() {
23  return numPixels;
24  }
25 
26  virtual double getLat(int pixel);
27  virtual double getLon(int pixel);
28 
29 private:
30  int numPixels;
31 
32 };
33 
34 #endif /* ENVSATTIEPOINT_H_ */
virtual int getNumPixels()
Definition: TiepointDSR.h:22
virtual ~TiepointDSR()
Definition: TiepointDSR.cpp:30
virtual double getLon(int pixel)
Definition: TiepointDSR.cpp:50
virtual void print()
Definition: TiepointDSR.cpp:34
virtual double getLat(int pixel)
Definition: TiepointDSR.cpp:45
virtual double getStartTime()
Definition: TiepointDSR.cpp:41
this program makes no use of any feature of the SDP Toolkit that could generate such a then geolocation is calculated at that and then aggregated up to Resolved feature request Bug by adding three new int8 SDSs for each high resolution pixel
Definition: HISTORY.txt:192
TiepointDSR(int size)
Definition: TiepointDSR.cpp:16