Isis Developer Reference
UpturnedEllipsoidTransverseAzimuthal.h
Go to the documentation of this file.
1#ifndef UpturnedEllipsoidTransverseAzimuthal_h
2#define UpturnedEllipsoidTransverseAzimuthal_h
8/* SPDX-License-Identifier: CC0-1.0 */
9#include "TProjection.h"
10
11namespace Isis {
12 class Pvl;
13 class PvlGroup;
48 public:
49 UpturnedEllipsoidTransverseAzimuthal(Pvl &label, bool allowDefaults = false);
51 bool operator== (const Projection &proj);
52
53 virtual QString Name() const;
54 virtual QString Version() const;
55
56 virtual bool SetGround(const double lat, const double lon);
57 virtual bool SetCoordinate(const double x, const double y);
58 virtual bool XYRange(double &minX, double &maxX, double &minY, double &maxY);
59
60 virtual PvlGroup Mapping();
63
64 private:
65 void init(double centerLongitude);
66 void checkLongitude(double longitude);
67
68
69 double m_a;
71 double m_b;
73 double m_e;
74 double m_lambda0;
76 double m_t;
77 double m_t1;
79 double m_k;
82 };
83};
84
85#endif
Base class for Map Projections.
Definition Projection.h:155
Contains multiple PvlContainers.
Definition PvlGroup.h:41
Container for cube-like labels.
Definition Pvl.h:119
Base class for Map TProjections.
Definition TProjection.h:166
Upturned Ellipsoid Transverse Azimuthal Map Projection.
Definition UpturnedEllipsoidTransverseAzimuthal.h:47
virtual 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...
virtual PvlGroup Mapping()
This function returns the keywords that this projection uses.
virtual QString Version() const
This method returns the Version of the map projection.
virtual bool SetCoordinate(const double x, const double y)
This method is used to set the projection x/y.
virtual bool SetGround(const double lat, const double lon)
This method is used to set the latitude/longitude (assumed to be of the correct LatitudeType,...
bool operator==(const Projection &proj)
This method determines whether two map projection objects are equal by comparing the equatorial radiu...
virtual PvlGroup MappingLatitudes()
This function returns the latitude keywords that this projection uses.
virtual QString Name() const
This method returns the name of the map projection.
virtual PvlGroup MappingLongitudes()
This function returns the longitude keywords that this projection uses.
UpturnedEllipsoidTransverseAzimuthal(Pvl &label, bool allowDefaults=false)
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16