File failed to load: https://isis.astrogeology.usgs.gov/3.9.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Developer 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:
78  double m_centerRingLongitude;
80  double m_centerRingRadius;
81  };
82 };
83 
84 #endif
double TrueScaleRingRadius() const
Returns the center radius, in meters.
Definition: RingCylindrical.cpp:164
QString Name() const
Returns the name of the map projection, "RingCylindrical".
Definition: RingCylindrical.cpp:122
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: RingCylindrical.cpp:371
Ring Cylindrical Map Projection.
Definition: RingCylindrical.h:53
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
Definition: RingCylindrical.cpp:107
double CenterRingRadius() const
Returns the center radius, in meters.
Definition: RingCylindrical.cpp:186
bool SetGround(const double ringRadius, const double ringLongitude)
This method is used to set the radius/longitude (assumed to be of the correct RingLongitudeDirection...
Definition: RingCylindrical.cpp:204
QString Version() const
Returns the version of the map projection.
Definition: RingCylindrical.cpp:131
Base class for Map Projections.
Definition: Projection.h:171
~RingCylindrical()
Destroys the RingCylindrical object.
Definition: RingCylindrical.cpp:96
bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
Definition: RingCylindrical.cpp:255
Contains multiple PvlContainers.
Definition: PvlGroup.h:57
RingCylindrical(Pvl &label, bool allowDefaults=false)
Constructs a RingCylindrical object.
Definition: RingCylindrical.cpp:55
Container for cube-like labels.
Definition: Pvl.h:135
PvlGroup Mapping()
This function returns the keywords that this projection uses.
Definition: RingCylindrical.cpp:290
Base class for Map Projections of plane shapes.
Definition: RingPlaneProjection.h:163
bool IsEquatorialCylindrical()
This method returns true if the projection is equatorial cylindrical.
Definition: RingCylindrical.cpp:146
PvlGroup MappingRingLongitudes()
This function returns the longitude keywords that this projection uses.
Definition: RingCylindrical.cpp:324
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
double CenterRingLongitude() const
Returns the center longitude, in degrees.
Definition: RingCylindrical.cpp:174
PvlGroup MappingRingRadii()
This function returns the radii keywords that this projection uses.
Definition: RingCylindrical.cpp:308

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 07/12/2023 23:28:55