Isis 3 Programmer Reference
LambertConformal.h
Go to the documentation of this file.
1 #ifndef LambertConformal_h
2 #define LambertConformal_h
3 
25 #include "TProjection.h"
26 
27 namespace Isis {
28  class Pvl;
29  class PvlGroup;
76  class LambertConformal : public TProjection {
77  public:
78  LambertConformal(Pvl &label, bool allowDefaults = false);
80  bool operator== (const Projection &proj);
81 
82  QString Name() const;
83  QString Version() const;
84  double TrueScaleLatitude() const;
85 
86  bool SetGround(const double lat, const double lon);
87  bool SetCoordinate(const double x, const double y);
88  bool XYRange(double &minX, double &maxX, double &minY, double &maxY);
89 
90  PvlGroup Mapping();
93 
94  private:
97  double m_par1;
98  double m_par2;
99  double m_n;
100  double m_f;
101  double m_rho;
102 
103  };
104 };
105 
106 #endif
double m_par1
The first standard parallel.
PvlGroup MappingLatitudes()
This function returns the latitude keywords that this projection uses.
double m_centerLongitude
The center longitude for the map projection.
QString Version() const
Returns the version of the map projection.
Base class for Map TProjections.
Definition: TProjection.h:182
double m_f
Snyder's f variable.
double m_par2
The second standard parallel.
~LambertConformal()
Destroys the LambertConformal object.
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.
Base class for Map Projections.
Definition: Projection.h:171
double m_rho
Snyder's rho variable.
QString Name() const
Returns the name of the map projection, "LambertConformal".
Contains multiple PvlContainers.
Definition: PvlGroup.h:57
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
Container for cube-like labels.
Definition: Pvl.h:135
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...
PvlGroup MappingLongitudes()
This function returns the longitude keywords that this projection uses.
LambertConformal(Pvl &label, bool allowDefaults=false)
Constructs a Lambert Conformal object.
Lambert Conformal Map Projection.
PvlGroup Mapping()
This function returns the keywords that this projection uses.
double TrueScaleLatitude() const
Returns the latitude of true scale (in the case of LambertConformal it is the smaller of the two stan...
double m_n
Snyder's n variable.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
double m_centerLatitude
The center latitude for the map projection.