Isis 3 Programmer Reference
Sinusoidal.h
Go to the documentation of this file.
1 #ifndef Sinusoidal_h
2 #define Sinusoidal_h
3 
25 #include "TProjection.h"
26 
27 namespace Isis {
28  class Pvl;
29  class PvlGroup;
89  class Sinusoidal : public TProjection {
90  public:
91  Sinusoidal(Pvl &label, bool allowDefaults = false);
92  ~Sinusoidal();
93  bool operator== (const Projection &proj);
94 
95  QString Name() const;
96  QString Version() const;
97 
98  bool SetGround(const double lat, const double lon);
99  bool SetCoordinate(const double x, const double y);
100  bool XYRange(double &minX, double &maxX, double &minY, double &maxY);
101 
102  PvlGroup Mapping();
105 
106  private:
108  };
109 };
110 
111 #endif
112 
bool SetGround(const double lat, const double lon)
This method is used to set the latitude/longitude (assumed to be of the correct LatitudeType, LongitudeDirection, and LongitudeDomain.
Definition: Sinusoidal.cpp:132
PvlGroup Mapping()
This function returns the keywords that this projection uses.
Definition: Sinusoidal.cpp:262
Sinusoidal(Pvl &label, bool allowDefaults=false)
Constructs a Sinusoidal object.
Definition: Sinusoidal.cpp:54
Sinusoidal Map Projection.
Definition: Sinusoidal.h:89
Base class for Map TProjections.
Definition: TProjection.h:182
double m_centerLongitude
The center longitude for the map projection.
Definition: Sinusoidal.h:107
QString Version() const
Returns the version of the map projection.
Definition: Sinusoidal.cpp:116
bool XYRange(double &minX, double &maxX, double &minY, double &maxY)
This method is used to determine the x/y range which completely covers the area of interest specified...
Definition: Sinusoidal.cpp:230
Base class for Map Projections.
Definition: Projection.h:171
Contains multiple PvlContainers.
Definition: PvlGroup.h:57
~Sinusoidal()
Destroys the Sinusoidal object.
Definition: Sinusoidal.cpp:81
QString Name() const
Returns the name of the map projection, "Sinusoidal".
Definition: Sinusoidal.cpp:106
PvlGroup MappingLongitudes()
This function returns the longitude keywords that this projection uses.
Definition: Sinusoidal.cpp:286
Container for cube-like labels.
Definition: Pvl.h:135
bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
Definition: Sinusoidal.cpp:162
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
Definition: Sinusoidal.cpp:92
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
PvlGroup MappingLatitudes()
This function returns the latitude keywords that this projection uses.
Definition: Sinusoidal.cpp:275