185 virtual QString
Name()
const = 0;
220 virtual bool SetGround(
const double lat,
const double lon) = 0;
234 virtual bool SetWorld(
const double x,
const double y);
237 virtual double WorldX()
const;
238 virtual double WorldY()
const;
241 double ToWorldX(
const double projectionX)
const;
242 double ToWorldY(
const double projectionY)
const;
253 virtual bool XYRange(
double &minX,
double &maxX,
254 double &minY,
double &maxY) = 0;
263 static double ToHours(
double angle);
264 static QString
ToDMS(
double angle);
265 static QString
ToHMS(
double angle);
268 virtual void XYRangeCheck(
const double latitude,
const double longitude) = 0;
271 void SetXY(
double x,
double y);
343 double m_pixelResolution;
Displacement is a signed length, usually in meters.
Definition Displacement.h:31
static double ToHours(double angle)
Converts the given angle (in degrees) to hours by using the ratio 15 degrees per hour.
Definition Projection.cpp:687
double ToWorldY(const double projectionY) const
This method converts a projection y value to a world y value.
Definition Projection.cpp:588
virtual bool SetUniversalGround(const double coord1, const double coord2)
This method is used to set the lat/lon or radius/azimuth (i.e.
Definition Projection.cpp:411
virtual double LocalRadius() const =0
void SetWorldMapper(WorldMapper *mapper)
If desired the programmer can use this method to set a world mapper to be used in the SetWorld,...
Definition Projection.cpp:468
ProjectionType
This enum defines the subclasses of Projection supported in Isis.
Definition Projection.h:165
@ Triaxial
These projections are used to map triaxial and irregular-shaped bodies.
Definition Projection.h:165
@ RingPlane
These projections are used to map ring planes.
Definition Projection.h:167
WorldMapper * m_mapper
This points to a mapper passed into the SetWorldMapper method.
Definition Projection.h:291
double Resolution() const
This method returns the resolution for mapping world coordinates into projection coordinates.
Definition Projection.cpp:669
virtual bool operator==(const Projection &proj)
This method determines whether two map projection objects are equal by comparing the resolution,...
Definition Projection.cpp:156
double XCoord() const
This returns the projection X provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:381
double m_maximumX
See minimumX description.
Definition Projection.h:325
virtual bool SetWorld(const double x, const double y)
This method is used to set a world coordinate.
Definition Projection.cpp:491
virtual ~Projection()
Destroys the Projection object.
Definition Projection.cpp:142
virtual void XYRangeCheck(const double latitude, const double longitude)=0
bool IsSky() const
Returns true if projection is sky and false if it is land.
Definition Projection.cpp:202
virtual bool HasGroundRange() const
This indicates if the longitude direction type is positive west (as opposed to postive east).
Definition Projection.cpp:343
double ToWorldX(const double projectionX) const
This method converts a projection x value to a world x value.
Definition Projection.cpp:560
virtual bool SetCoordinate(const double x, const double y)=0
void SetUpperLeftCorner(const Displacement &x, const Displacement &y)
This method is used to find the XY range for oblique aspect projections (non-polar projections) by "w...
Definition Projection.cpp:1367
bool m_groundRangeGood
Indicates if the ground range (min/max lat/lons) were read from the labels.
Definition Projection.h:312
double PixelResolution() const
Returns the pixel resolution value from the PVL mapping group in meters/pixel.
Definition Projection.cpp:834
virtual bool SetUnboundUniversalGround(const double coord1, const double coord2)
This method is used to set the lat/lon or radius/azimuth (i.e.
Definition Projection.cpp:440
virtual double WorldY() const
This returns the world Y coordinate provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:538
double YCoord() const
This returns the projection Y provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:394
virtual double WorldX() const
This returns the world X coordinate provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:518
virtual bool SetGround(const double lat, const double lon)=0
double ToProjectionY(const double worldY) const
This method converts a world y value to a projection y value.
Definition Projection.cpp:644
virtual QString Name() const =0
This method returns the name of the map projection.
double GetX() const
Calculates the unrotated form of current x value.
Definition Projection.cpp:812
bool operator!=(const Projection &proj)
This method determines whether two map projection objects are not equal.
Definition Projection.cpp:172
bool m_good
Indicates if the contents of m_x, m_y, m_latitude, and m_longitude are valid.
Definition Projection.h:299
double m_minimumX
The data elements m_minimumX, m_minimumY, m_maximumX, and m_maximumY are convience data elements when...
Definition Projection.h:316
virtual double Scale() const =0
Projection(Pvl &label)
Constructs an empty Projection object.
Definition Projection.cpp:85
PvlGroup m_mappingGrp
Mapping group that created this projection.
Definition Projection.h:328
static QString ToHMS(double angle)
Converts the given angle (in degrees) to hours, minutes, seconds.
Definition Projection.cpp:735
virtual bool XYRange(double &minX, double &maxX, double &minY, double &maxY)=0
double m_minimumY
See minimumX description.
Definition Projection.h:326
bool m_sky
Indicates whether projection is sky or land.
Definition Projection.h:309
double Rotation() const
Returns the value of the Rotation keyword from the mapping group.
Definition Projection.cpp:353
double ToProjectionX(const double worldX) const
This method converts a world x value to a projection x value.
Definition Projection.cpp:616
virtual PvlGroup Mapping()=0
double GetY() const
Calculates the unrotated form of the current y value.
Definition Projection.cpp:823
virtual bool IsEquatorialCylindrical()
This method returns true if the projection is equatorial cylindrical.
Definition Projection.cpp:216
virtual QString Version() const =0
This method returns the Version of the map projection.
void SetXY(double x, double y)
This protected method is a helper for derived classes.
Definition Projection.cpp:798
bool IsGood() const
This indicates if the last invocation of SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:368
ProjectionType projectionType() const
Returns an enum value for the projection type.
Definition Projection.cpp:192
void setProjectionType(const ProjectionType ptype)
Sets the projection subclass type.
Definition Projection.cpp:182
double m_maximumY
See minimumX description.
Definition Projection.h:327
void SetComputedXY(double x, double y)
This protected method is a helper for derived classes.
Definition Projection.cpp:774
static QString ToDMS(double angle)
Converts the given angle (in degrees) to degrees, minutes, seconds.
Definition Projection.cpp:700
Create a mapping between a projection and other coordinate system.
Definition WorldMapper.h:38
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16