186      virtual QString 
Name() 
const = 0;
 
  221      virtual bool SetGround(
const double lat, 
const double lon) = 0;
 
  235      virtual bool SetWorld(
const double x, 
const double y);
 
  238      virtual double WorldX() 
const;
 
  239      virtual double WorldY() 
const;
 
  242      double ToWorldX(
const double projectionX) 
const;
 
  243      double ToWorldY(
const double projectionY) 
const;
 
  254      virtual bool XYRange(
double &minX, 
double &maxX,
 
  255                           double &minY, 
double &maxY) = 0;
 
  264      static double ToHours(
double angle);
 
  265      static QString 
ToDMS(
double angle);
 
  266      static QString 
ToHMS(
double angle);
 
  269      virtual void XYRangeCheck(
const double latitude, 
const double longitude) = 0;
 
  272      void SetXY(
double x, 
double y);
 
  344      double m_pixelResolution; 
 
 
Displacement is a signed length, usually in meters.
Definition Displacement.h:31
 
Base class for Map Projections.
Definition Projection.h:155
 
static double ToHours(double angle)
Converts the given angle (in degrees) to hours by using the ratio 15 degrees per hour.
Definition Projection.cpp:693
 
double ToWorldY(const double projectionY) const
This method converts a projection y value to a world y value.
Definition Projection.cpp:594
 
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:417
 
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:474
 
ProjectionType
This enum defines the subclasses of Projection supported in Isis.
Definition Projection.h:166
 
@ Triaxial
These projections are used to map triaxial and irregular-shaped bodies.
Definition Projection.h:166
 
@ RingPlane
These projections are used to map ring planes.
Definition Projection.h:168
 
WorldMapper * m_mapper
This points to a mapper passed into the SetWorldMapper method.
Definition Projection.h:292
 
double Resolution() const
This method returns the resolution for mapping world coordinates into projection coordinates.
Definition Projection.cpp:675
 
virtual bool operator==(const Projection &proj)
This method determines whether two map projection objects are equal by comparing the resolution,...
Definition Projection.cpp:162
 
double XCoord() const
This returns the projection X provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:387
 
double m_maximumX
See minimumX description.
Definition Projection.h:326
 
virtual bool SetWorld(const double x, const double y)
This method is used to set a world coordinate.
Definition Projection.cpp:497
 
virtual ~Projection()
Destroys the Projection object.
Definition Projection.cpp:148
 
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:208
 
virtual bool HasGroundRange() const
This indicates if the longitude direction type is positive west (as opposed to postive east).
Definition Projection.cpp:349
 
double ToWorldX(const double projectionX) const
This method converts a projection x value to a world x value.
Definition Projection.cpp:566
 
virtual bool SetCoordinate(const double x, const double y)=0
 
void SetUpperLeftCorner(const Displacement &x, const Displacement &y)
This method searches for extreme (min/max/discontinuity) coordinate values along the constBorder line...
Definition Projection.cpp:1373
 
bool m_groundRangeGood
Indicates if the ground range (min/max lat/lons) were read from the labels.
Definition Projection.h:313
 
double PixelResolution() const
Returns the pixel resolution value from the PVL mapping group in meters/pixel.
Definition Projection.cpp:840
 
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:446
 
virtual double WorldY() const
This returns the world Y coordinate provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:544
 
double YCoord() const
This returns the projection Y provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:400
 
virtual double WorldX() const
This returns the world X coordinate provided SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:524
 
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:650
 
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:818
 
bool operator!=(const Projection &proj)
This method determines whether two map projection objects are not equal.
Definition Projection.cpp:178
 
bool m_good
Indicates if the contents of m_x, m_y, m_latitude, and m_longitude are valid.
Definition Projection.h:300
 
double m_minimumX
The data elements m_minimumX, m_minimumY, m_maximumX, and m_maximumY are convience data elements when...
Definition Projection.h:317
 
virtual double Scale() const =0
 
Projection(Pvl &label)
Constructs an empty Projection object.
Definition Projection.cpp:91
 
PvlGroup m_mappingGrp
Mapping group that created this projection.
Definition Projection.h:329
 
static QString ToHMS(double angle)
Converts the given angle (in degrees) to hours, minutes, seconds.
Definition Projection.cpp:741
 
virtual bool XYRange(double &minX, double &maxX, double &minY, double &maxY)=0
 
double m_minimumY
See minimumX description.
Definition Projection.h:327
 
bool m_sky
Indicates whether projection is sky or land.
Definition Projection.h:310
 
double Rotation() const
Returns the value of the Rotation keyword from the mapping group.
Definition Projection.cpp:359
 
double ToProjectionX(const double worldX) const
This method converts a world x value to a projection x value.
Definition Projection.cpp:622
 
virtual PvlGroup Mapping()=0
 
double GetY() const
Calculates the unrotated form of the current y value.
Definition Projection.cpp:829
 
virtual bool IsEquatorialCylindrical()
This method returns true if the projection is equatorial cylindrical.
Definition Projection.cpp:222
 
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:804
 
bool IsGood() const
This indicates if the last invocation of SetGround, SetCoordinate, SetUniversalGround,...
Definition Projection.cpp:374
 
ProjectionType projectionType() const
Returns an enum value for the projection type.
Definition Projection.cpp:198
 
void setProjectionType(const ProjectionType ptype)
Sets the projection subclass type.
Definition Projection.cpp:188
 
double m_maximumY
See minimumX description.
Definition Projection.h:328
 
void SetComputedXY(double x, double y)
This protected method is a helper for derived classes.
Definition Projection.cpp:780
 
static QString ToDMS(double angle)
Converts the given angle (in degrees) to degrees, minutes, seconds.
Definition Projection.cpp:706
 
Contains multiple PvlContainers.
Definition PvlGroup.h:41
 
Container for cube-like labels.
Definition Pvl.h:119
 
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