Isis 3 Developer 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:
95  double m_centerLongitude;
96  double m_centerLatitude;
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
PvlGroup MappingLatitudes()
This function returns the latitude keywords that this projection uses.
Definition: LambertConformal.cpp:520
QString Version() const
Returns the version of the map projection.
Definition: LambertConformal.cpp:225
Base class for Map TProjections.
Definition: TProjection.h:182
~LambertConformal()
Destroys the LambertConformal object.
Definition: LambertConformal.cpp:189
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: LambertConformal.cpp:252
Base class for Map Projections.
Definition: Projection.h:171
QString Name() const
Returns the name of the map projection, "LambertConformal".
Definition: LambertConformal.cpp:215
Contains multiple PvlContainers.
Definition: PvlGroup.h:57
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
Definition: LambertConformal.cpp:200
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...
Definition: LambertConformal.cpp:377
PvlGroup MappingLongitudes()
This function returns the longitude keywords that this projection uses.
Definition: LambertConformal.cpp:535
LambertConformal(Pvl &label, bool allowDefaults=false)
Constructs a Lambert Conformal object.
Definition: LambertConformal.cpp:57
Lambert Conformal Map Projection.
Definition: LambertConformal.h:76
PvlGroup Mapping()
This function returns the keywords that this projection uses.
Definition: LambertConformal.cpp:504
double TrueScaleLatitude() const
Returns the latitude of true scale (in the case of LambertConformal it is the smaller of the two stan...
Definition: LambertConformal.cpp:235
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.
Definition: LambertConformal.cpp:304