Loading [MathJax]/jax/output/NativeMML/config.js
 |
Isis Developer Reference
|
Go to the documentation of this file.
42 Planar(
Pvl &label,
bool allowDefaults =
false);
53 bool SetGround(
const double ringRadius,
const double ringLongitude);
55 bool XYRange(
double &minX,
double &maxX,
double &minY,
double &maxY);
64 double m_centerRingLongitude;
65 double m_centerRingRadius;
PvlGroupIterator findGroup(const QString &name, PvlGroupIterator beg, PvlGroupIterator end)
Find a group with the specified name, within these indexes.
Definition: PvlObject.h:129
@ Io
A type of error that occurred when performing an actual I/O operation.
Definition: IException.h:155
PvlGroup MappingRingRadii()
This function returns the radius keywords that this projection uses.
Definition: Planar.cpp:451
double m_maximumRingLongitude
Contains the maximum longitude for the entire ground range.
Definition: RingPlaneProjection.h:290
A single keyword-value pair.
Definition: PvlKeyword.h:82
virtual PvlGroup Mapping()
This method is used to find the XY range for oblique aspect projections (non-polar projections) by "w...
Definition: RingPlaneProjection.cpp:1253
static double To360Domain(const double lon)
This method converts an ring longitude into the 0 to 360 domain.
Definition: RingPlaneProjection.cpp:370
const double DEG2RAD
Multiplier for converting from degrees to radians.
Definition: Constants.h:43
double PixelResolution() const
Returns the pixel resolution value from the PVL mapping group in meters/pixel.
Definition: Projection.cpp:840
QString Version() const
Returns the version of the map projection.
Definition: Planar.cpp:155
double m_minimumY
See minimumX description.
Definition: Projection.h:327
Planar(Pvl &label, bool allowDefaults=false)
TODO: correct documentation in this file.
Definition: Planar.cpp:39
bool operator==(const Projection &proj)
Compares two Projection objects to see if they are equal.
Definition: Planar.cpp:89
bool hasKeyword(const QString &name) const
Check to see if a keyword exists.
Definition: PvlContainer.cpp:159
Container for cube-like labels.
Definition: Pvl.h:119
void SetXY(double x, double y)
This protected method is a helper for derived classes.
Definition: Projection.cpp:804
double m_maximumRingRadius
Contains the maximum ring radius for the entire ground range.
Definition: RingPlaneProjection.h:284
QString toString(bool boolToConvert)
Global function to convert a boolean to a string.
Definition: IString.cpp:211
double m_ringRadius
This contain a ring radius value in m.
Definition: RingPlaneProjection.h:261
double CenterRingLongitude() const
Returns the center longitude, in degrees.
Definition: Planar.cpp:132
Planar Map Projection.
Definition: Planar.h:40
PvlGroup m_mappingGrp
Mapping group that created this projection.
Definition: Projection.h:329
void XYRangeCheck(const double ringRadius, const double ringLongitude)
This convience function is established to assist in the development of the XYRange virtual method.
Definition: RingPlaneProjection.cpp:709
@ Traverse
Search child objects.
Definition: PvlObject.h:158
double CenterRingRadius() const
Returns the center radius, in meters.
Definition: Planar.cpp:144
Base class for Map Projections of plane shapes.
Definition: RingPlaneProjection.h:147
double m_minimumX
The data elements m_minimumX, m_minimumY, m_maximumX, and m_maximumY are convience data elements when...
Definition: Projection.h:317
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
Isis::Projection * PlanarPlugin(Isis::Pvl &lab, bool allowDefaults)
This is the function that is called in order to instantiate an Planar object.
Definition: Planar.cpp:490
bool m_good
Indicates if the contents of m_x, m_y, m_latitude, and m_longitude are valid.
Definition: Projection.h:300
QString Name() const
Returns the name of the map projection, "Planar".
Definition: Planar.cpp:104
PvlGroup MappingRingLongitudes()
This function returns the azimuth keywords that this projection uses.
Definition: Planar.cpp:466
virtual PvlGroup MappingRingRadii()
This function returns the ring radius keywords that this projection uses.
Definition: RingPlaneProjection.cpp:1296
double m_ringLongitude
This contain a ring longitude value.
Definition: RingPlaneProjection.h:263
RingLongitudeDirection m_ringLongitudeDirection
An enumerated type indicating the LongitudeDirection read from the labels.
Definition: RingPlaneProjection.h:267
static double To180Domain(const double lon)
This method converts a ring longitude into the -180 to 180 domain.
Definition: RingPlaneProjection.cpp:352
Isis exception class.
Definition: IException.h:91
void SetComputedXY(double x, double y)
This protected method is a helper for derived classes.
Definition: Projection.cpp:780
Namespace for the standard library.
~Planar()
Destroys the Planar object.
Definition: Planar.cpp:78
bool SetGround(const double ringRadius, const double ringLongitude)
This method is used to set the radius/azimuth (assumed to be of the correct RingLongitudeDirection,...
Definition: Planar.cpp:172
double m_minimumRingRadius
Contains the minimum ring radius for the entire ground range.
Definition: RingPlaneProjection.h:281
PvlGroup Mapping()
This function returns the keywords that this projection uses.
Definition: Planar.cpp:434
virtual PvlGroup MappingRingLongitudes()
This function returns the ring longitude keywords that this projection uses.
Definition: RingPlaneProjection.cpp:1313
@ Clockwise
Ring longitude values increase in the clockwise direction.
Definition: RingPlaneProjection.h:178
double TrueScaleRingRadius() const
Returns the center radius, in meters.
Definition: Planar.cpp:121
double m_maximumY
See minimumX description.
Definition: Projection.h:328
double m_minimumRingLongitude
Contains the minimum longitude for the entire ground range.
Definition: RingPlaneProjection.h:287
int m_ringLongitudeDomain
This integer is either 180 or 360 and is read from the labels.
Definition: RingPlaneProjection.h:275
Base class for Map Projections.
Definition: Projection.h:155
double m_maximumX
See minimumX description.
Definition: Projection.h:326
const double RAD2DEG
Multiplier for converting from radians to degrees.
Definition: Constants.h:44
virtual bool HasGroundRange() const
This indicates if the longitude direction type is positive west (as opposed to postive east).
Definition: Projection.cpp:349
bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
Definition: Planar.cpp:226
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
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: Planar.cpp:379