Isis 3 Developer Reference
UpturnedEllipsoidTransverseAzimuthal.h
Go to the documentation of this file.
1 #ifndef UpturnedEllipsoidTransverseAzimuthal_h
2 #define UpturnedEllipsoidTransverseAzimuthal_h
3 
25 #include "TProjection.h"
26 
27 namespace Isis {
28  class Pvl;
29  class PvlGroup;
64  public:
65  UpturnedEllipsoidTransverseAzimuthal(Pvl &label, bool allowDefaults = false);
67  bool operator== (const Projection &proj);
68 
69  virtual QString Name() const;
70  virtual QString Version() const;
71 
72  virtual bool SetGround(const double lat, const double lon);
73  virtual bool SetCoordinate(const double x, const double y);
74  virtual bool XYRange(double &minX, double &maxX, double &minY, double &maxY);
75 
76  virtual PvlGroup Mapping();
77  virtual PvlGroup MappingLatitudes();
78  virtual PvlGroup MappingLongitudes();
79 
80  private:
81  void init(double centerLongitude);
82  void checkLongitude(double longitude);
83 
84 
85  double m_a;
87  double m_b;
89  double m_e;
90  double m_lambda0;
92  double m_t;
93  double m_t1;
95  double m_k;
98  };
99 };
100 
101 #endif
virtual 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.
virtual QString Name() const
This method returns the name of the map projection.
virtual PvlGroup MappingLatitudes()
This function returns the latitude keywords that this projection uses.
virtual 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...
Base class for Map TProjections.
Definition: TProjection.h:182
UpturnedEllipsoidTransverseAzimuthal(Pvl &label, bool allowDefaults=false)
virtual QString Version() const
This method returns the Version of the map projection.
virtual PvlGroup MappingLongitudes()
This function returns the longitude keywords that this projection uses.
virtual bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
Base class for Map Projections.
Definition: Projection.h:171
Contains multiple PvlContainers.
Definition: PvlGroup.h:57
Upturned Ellipsoid Transverse Azimuthal Map Projection.
Definition: UpturnedEllipsoidTransverseAzimuthal.h:63
bool operator==(const Projection &proj)
This method determines whether two map projection objects are equal by comparing the equatorial radiu...
Container for cube-like labels.
Definition: Pvl.h:135
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
virtual PvlGroup Mapping()
This function returns the keywords that this projection uses.