Isis 3 Programmer Reference
RingCylindrical.h
Go to the documentation of this file.
1 #ifndef RingCylindrical_h
2 #define RingCylindrical_h
3 
25 #include "RingPlaneProjection.h"
26 
27 namespace Isis {
28  class Pvl;
29  class PvlGroup;
52  // or Rectilinear projection?? scale azimuth with 1/(2*pi) * radius maybe
54  public:
55  RingCylindrical(Pvl &label, bool allowDefaults = false);
57  bool operator==(const Projection &proj);
58 
59  QString Name() const;
60  QString Version() const;
62  double TrueScaleRingRadius() const;
63 
64  double CenterRingLongitude() const;
65  double CenterRingRadius() const;
66 
67  bool SetGround(const double ringRadius, const double ringLongitude);
68  bool SetCoordinate(const double x, const double y);
69  bool XYRange(double &minX, double &maxX, double &minY, double &maxY);
70 
71  PvlGroup Mapping();
74 
75  protected:
76 
77  private:
81  };
82 };
83 
84 #endif
double TrueScaleRingRadius() const
Returns the center radius, in meters.
QString Name() const
Returns the name of the map projection, "RingCylindrical".
double m_centerRingLongitude
The center ring longitude (azimuth) for the map projection, in radians.
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...
Ring Cylindrical Map Projection.
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
double CenterRingRadius() const
Returns the center radius, in meters.
bool SetGround(const double ringRadius, const double ringLongitude)
This method is used to set the radius/longitude (assumed to be of the correct RingLongitudeDirection...
QString Version() const
Returns the version of the map projection.
Base class for Map Projections.
Definition: Projection.h:171
~RingCylindrical()
Destroys the RingCylindrical object.
bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
Contains multiple PvlContainers.
Definition: PvlGroup.h:57
RingCylindrical(Pvl &label, bool allowDefaults=false)
Constructs a RingCylindrical object.
Container for cube-like labels.
Definition: Pvl.h:135
PvlGroup Mapping()
This function returns the keywords that this projection uses.
Base class for Map Projections of plane shapes.
bool IsEquatorialCylindrical()
This method returns true if the projection is equatorial cylindrical.
double m_centerRingRadius
The center ring radius for the map projection.
PvlGroup MappingRingLongitudes()
This function returns the longitude keywords that this projection uses.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
double CenterRingLongitude() const
Returns the center longitude, in degrees.
PvlGroup MappingRingRadii()
This function returns the radii keywords that this projection uses.