File failed to load: https://isis.astrogeology.usgs.gov/6.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
RingCylindrical.h
1 #ifndef RingCylindrical_h
2 #define RingCylindrical_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 #include "RingPlaneProjection.h"
10 
11 namespace Isis {
12  class Pvl;
13  class PvlGroup;
36  // or Rectilinear projection?? scale azimuth with 1/(2*pi) * radius maybe
38  public:
39  RingCylindrical(Pvl &label, bool allowDefaults = false);
41  bool operator==(const Projection &proj);
42 
43  QString Name() const;
44  QString Version() const;
46  double TrueScaleRingRadius() const;
47 
48  double CenterRingLongitude() const;
49  double CenterRingRadius() const;
50 
51  bool SetGround(const double ringRadius, const double ringLongitude);
52  bool SetCoordinate(const double x, const double y);
53  bool XYRange(double &minX, double &maxX, double &minY, double &maxY);
54 
55  PvlGroup Mapping();
58 
59  protected:
60 
61  private:
65  };
66 };
67 
68 #endif
Isis::RingCylindrical::TrueScaleRingRadius
double TrueScaleRingRadius() const
Returns the center radius, in meters.
Definition: RingCylindrical.cpp:148
Isis::RingCylindrical::Name
QString Name() const
Returns the name of the map projection, "RingCylindrical".
Definition: RingCylindrical.cpp:106
Isis::RingCylindrical::XYRange
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:355
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::RingCylindrical::SetGround
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:188
Isis::RingCylindrical::CenterRingRadius
double CenterRingRadius() const
Returns the center radius, in meters.
Definition: RingCylindrical.cpp:170
Isis::RingCylindrical::operator==
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
Definition: RingCylindrical.cpp:91
Isis::RingCylindrical::Version
QString Version() const
Returns the version of the map projection.
Definition: RingCylindrical.cpp:115
Isis::RingCylindrical::SetCoordinate
bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
Definition: RingCylindrical.cpp:239
Isis::RingPlaneProjection
Base class for Map Projections of plane shapes.
Definition: RingPlaneProjection.h:147
Isis::PvlGroup
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
Isis::RingCylindrical::~RingCylindrical
~RingCylindrical()
Destroys the RingCylindrical object.
Definition: RingCylindrical.cpp:80
Isis::RingCylindrical
Ring Cylindrical Map Projection.
Definition: RingCylindrical.h:37
Isis::RingCylindrical::m_centerRingRadius
double m_centerRingRadius
The center ring radius for the map projection.
Definition: RingCylindrical.h:64
Isis::RingCylindrical::RingCylindrical
RingCylindrical(Pvl &label, bool allowDefaults=false)
Constructs a RingCylindrical object.
Definition: RingCylindrical.cpp:39
Isis::RingCylindrical::MappingRingRadii
PvlGroup MappingRingRadii()
This function returns the radii keywords that this projection uses.
Definition: RingCylindrical.cpp:292
Isis::RingCylindrical::MappingRingLongitudes
PvlGroup MappingRingLongitudes()
This function returns the longitude keywords that this projection uses.
Definition: RingCylindrical.cpp:308
Isis::RingCylindrical::Mapping
PvlGroup Mapping()
This function returns the keywords that this projection uses.
Definition: RingCylindrical.cpp:274
Isis::Projection
Base class for Map Projections.
Definition: Projection.h:155
Isis::RingCylindrical::CenterRingLongitude
double CenterRingLongitude() const
Returns the center longitude, in degrees.
Definition: RingCylindrical.cpp:158
Isis::RingCylindrical::IsEquatorialCylindrical
bool IsEquatorialCylindrical()
This method returns true if the projection is equatorial cylindrical.
Definition: RingCylindrical.cpp:130
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::RingCylindrical::m_centerRingLongitude
double m_centerRingLongitude
The center ring longitude (azimuth) for the map projection, in radians.
Definition: RingCylindrical.h:62

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: 03/21/2022 06:56:13