Isis 3 Programmer Reference
|
Equirectangular Map Projection. More...
#include <Equirectangular.h>
Public Types | |
enum | LatitudeType { Planetocentric, Planetographic } |
This enum defines the types of Latitude supported in this class. More... | |
enum | LongitudeDirection { PositiveEast, PositiveWest } |
This enum defines the types of Longitude directions supported in this class. More... | |
enum | ProjectionType { Triaxial, RingPlane } |
This enum defines the subclasses of Projection supported in Isis. More... | |
Public Member Functions | |
Equirectangular (Pvl &label, bool allowDefaults=false) | |
Constructs a Equirectangular object. More... | |
~Equirectangular () | |
Destroys the Equirectangular object. More... | |
bool | operator== (const Projection &proj) |
Compares two Projection objects to see if they are equal. More... | |
QString | Name () const |
Returns the name of the map projection, "Equirectangular". More... | |
QString | Version () const |
Returns the version of the map projection. More... | |
double | TrueScaleLatitude () const |
Returns the latitude of true scale, in degrees. More... | |
bool | IsEquatorialCylindrical () |
Indicates whether the projection is Equitorial Cylindrical. More... | |
bool | SetGround (const double lat, const double lon) |
This method is used to set the latitude/longitude (assumed to be of the correct LatitudeType, LongitudeDirection, and LongitudeDomain. More... | |
bool | SetCoordinate (const double x, const double y) |
This method is used to set the projection x/y. More... | |
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 by the lat/lon range. More... | |
virtual PvlGroup | Mapping () |
This function returns a PvlGroup containing the keywords that this projection uses, namely CenterLatitude and CenterLongitude. More... | |
virtual PvlGroup | MappingLatitudes () |
This function returns a PvlGroup containing the latitude keywords that this projection uses, namely CenterLatitude. More... | |
virtual PvlGroup | MappingLongitudes () |
This function returns a PvlGroup containing the longitude keywords that this projection uses, namely CenterLongitude. More... | |
double | EquatorialRadius () const |
This returns the equatorial radius of the target. More... | |
double | PolarRadius () const |
This returns the polar radius of the target. More... | |
double | Eccentricity () const |
This returns the eccentricity of the target,. More... | |
double | LocalRadius (double lat) const |
This method returns the local radius in meters at the specified latitude position. More... | |
double | LocalRadius () const |
This method returns the local radius in meters at the current latitude position. More... | |
bool | IsPlanetocentric () const |
This indicates if the latitude type is planetocentric (as opposed to planetographic). More... | |
bool | IsPlanetographic () const |
This indicates if the latitude type is planetographic (as opposed to planetocentric). More... | |
QString | LatitudeTypeString () const |
This method returns the latitude type as a string. More... | |
double | ToPlanetocentric (const double lat) const |
This method converts a planetographic latitude to a planetocentric latitude. More... | |
double | ToPlanetographic (const double lat) const |
This method converts a planetocentric latitude to a planetographic latitude. More... | |
bool | IsPositiveEast () const |
This indicates if the longitude direction type is positive west (as opposed to postive east). More... | |
bool | IsPositiveWest () const |
This indicates if the longitude direction type is positive east (as opposed to postive west). More... | |
QString | LongitudeDirectionString () const |
This method returns the longitude direction as a string. More... | |
bool | Has180Domain () const |
This indicates if the longitude domain is -180 to 180 (as opposed to 0 to 360). More... | |
bool | Has360Domain () const |
This indicates if the longitude domain is 0 to 360 (as opposed to -180 to 180). More... | |
QString | LongitudeDomainString () const |
This method returns the longitude domain as a string. More... | |
double | MinimumLatitude () const |
This returns the minimum latitude of the area of interest. More... | |
double | MaximumLatitude () const |
This returns the maximum latitude of the area of interest. More... | |
double | MinimumLongitude () const |
This returns the minimum longitude of the area of interest. More... | |
double | MaximumLongitude () const |
This returns the maximum longitude of the area of interest. More... | |
double | Latitude () const |
This returns a latitude with correct latitude type as specified in the label object. More... | |
double | Longitude () const |
This returns a longitude with correct longitude direction and domain as specified in the label object. More... | |
bool | SetUniversalGround (const double lat, const double lon) |
This method is used to set the latitude/longitude which must be Planetocentric (latitude) and PositiveEast/Domain360 (longitude). More... | |
bool | SetUnboundUniversalGround (const double coord1, const double coord2) |
This method is used to set the latitude/longitude. More... | |
double | UniversalLatitude () |
This returns a universal latitude (planetocentric). More... | |
double | UniversalLongitude () |
This returns a universal longitude (positive east in 0 to 360 domain). More... | |
double | Scale () const |
This method returns the scale for mapping world coordinates into projection coordinates. More... | |
bool | operator!= (const Projection &proj) |
This method determines whether two map projection objects are not equal. More... | |
void | setProjectionType (const ProjectionType ptype) |
Sets the projection subclass type. More... | |
ProjectionType | projectionType () const |
Returns an enum value for the projection type. More... | |
bool | IsSky () const |
Returns true if projection is sky and false if it is land. More... | |
bool | HasGroundRange () const |
This indicates if the longitude direction type is positive west (as opposed to postive east). More... | |
double | Rotation () const |
Returns the value of the Rotation keyword from the mapping group. More... | |
void | SetWorldMapper (WorldMapper *mapper) |
If desired the programmer can use this method to set a world mapper to be used in the SetWorld, WorldX, and WorldY methods. More... | |
bool | IsGood () const |
This indicates if the last invocation of SetGround, SetCoordinate, SetUniversalGround, or SetWorld was with successful or not. More... | |
double | XCoord () const |
This returns the projection X provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success. More... | |
double | YCoord () const |
This returns the projection Y provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success. More... | |
bool | SetWorld (const double x, const double y) |
This method is used to set a world coordinate. More... | |
double | WorldX () const |
This returns the world X coordinate provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success. More... | |
double | WorldY () const |
This returns the world Y coordinate provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success. More... | |
double | ToWorldX (const double projectionX) const |
This method converts a projection x value to a world x value. More... | |
double | ToWorldY (const double projectionY) const |
This method converts a projection y value to a world y value. More... | |
double | ToProjectionX (const double worldX) const |
This method converts a world x value to a projection x value. More... | |
double | ToProjectionY (const double worldY) const |
This method converts a world y value to a projection y value. More... | |
double | Resolution () const |
This method returns the resolution for mapping world coordinates into projection coordinates. More... | |
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 "walking" around each of the min/max lat/lon. More... | |
Static Public Member Functions | |
static double | ToPlanetocentric (double lat, double eRadius, double pRadius) |
This method converts a planetographic latitude to a planetocentric latitude. More... | |
static double | ToPlanetographic (double lat, double eRadius, double pRadius) |
This method converts a planetocentric latitude to a planetographic latitude. More... | |
static double | ToPositiveEast (const double lon, const int domain) |
This method converts a longitude into the positive east direction. More... | |
static double | ToPositiveWest (const double lon, const int domain) |
This method converts a longitude into the positive west direction. More... | |
static double | To180Domain (const double lon) |
This method converts a longitude into the -180 to 180 domain. More... | |
static double | To360Domain (const double lon) |
This method converts a longitude into the 0 to 360 domain. More... | |
static double | ToHours (double angle) |
Converts the given angle (in degrees) to hours by using the ratio 15 degrees per hour. More... | |
static QString | ToDMS (double angle) |
Converts the given angle (in degrees) to degrees, minutes, seconds. More... | |
static QString | ToHMS (double angle) |
Converts the given angle (in degrees) to hours, minutes, seconds. More... | |
Protected Member Functions | |
void | XYRangeCheck (const double latitude, const double longitude) |
This convience function is established to assist in the development of the XYRange virtual method. More... | |
bool | inLongitudeRange (double longitude) |
Determine whether the given longitude is within the range of the MinimumLongitude and MaximumLongitude range of this projection. More... | |
bool | inLongitudeRange (double minLon, double maxLon, double longitude) |
Determine whether the given longitude is within the range of the given min and max longitudes. More... | |
bool | inLatitudeRange (double latitude) |
Determine whether the given latitude is within the range of the MinimumLatitude and MaximumLatitude range of this projection. More... | |
bool | xyRangeOblique (double &minX, double &maxX, double &minY, double &maxY) |
This method is used to find the XY range for oblique aspect projections (non-polar projections) by "walking" around each of the min/max lat/lon. More... | |
double | qCompute (const double sinPhi) const |
A convience method to compute Snyder's q equation (3-12) for a given latitude, \(\phi\). More... | |
double | phi2Compute (const double t) const |
A convience method to compute latitude angle phi2 given small t, from Syder's recursive equation (7-9) More... | |
double | mCompute (const double sinphi, const double cosphi) const |
A convience method to compute Snyder's m equation (14-15) for a given latitude, \(\phi\). More... | |
double | tCompute (const double phi, const double sinphi) const |
A convience method to compute Snyder's t equation (15-9) for a given latitude, \(\phi\). More... | |
double | e4Compute () const |
A convience method to compute. More... | |
void | SetXY (double x, double y) |
This protected method is a helper for derived classes. More... | |
void | SetComputedXY (double x, double y) |
This protected method is a helper for derived classes. More... | |
double | GetX () const |
Calculates the unrotated form of current x value. More... | |
double | GetY () const |
Calculates the unrotated form of the current y value. More... | |
double | PixelResolution () const |
Returns the pixel resolution value from the PVL mapping group in meters/pixel. More... | |
Protected Attributes | |
double | m_latitude |
This contains the currently set latitude value. More... | |
double | m_longitude |
This contains the currently set longitude value. More... | |
LatitudeType | m_latitudeType |
An enumerated type indicating the LatitudeType read from the labels. More... | |
LongitudeDirection | m_longitudeDirection |
An enumerated type indicating the LongitudeDirection read from the labels. More... | |
int | m_longitudeDomain |
This integer is either 180 or 360 and is read from the labels. More... | |
double | m_equatorialRadius |
Polar radius of the target. More... | |
double | m_polarRadius |
Polar radius of the target. More... | |
double | m_eccentricity |
The eccentricity of the target body. More... | |
double | m_minimumLatitude |
Contains the minimum latitude for the entire ground range. More... | |
double | m_maximumLatitude |
Contains the maximum latitude for the entire ground range. More... | |
double | m_minimumLongitude |
Contains the minimum longitude for the entire ground range. More... | |
double | m_maximumLongitude |
Contains the maximum longitude for the entire ground range. More... | |
WorldMapper * | m_mapper |
This points to a mapper passed into the SetWorldMapper method. More... | |
bool | m_good |
Indicates if the contents of m_x, m_y, m_latitude, and m_longitude are valid. More... | |
bool | m_sky |
Indicates whether projection is sky or land. More... | |
bool | m_groundRangeGood |
Indicates if the ground range (min/max lat/lons) were read from the labels. More... | |
double | m_minimumX |
The data elements m_minimumX, m_minimumY, m_maximumX, and m_maximumY are convience data elements when you write the XYRange virtual function. More... | |
double | m_maximumX |
See minimumX description. More... | |
double | m_minimumY |
See minimumX description. More... | |
double | m_maximumY |
See minimumX description. More... | |
PvlGroup | m_mappingGrp |
Mapping group that created this projection. More... | |
Private Attributes | |
double | m_centerLongitude |
The center longitude for the map projection. More... | |
double | m_centerLatitude |
The center latitude for the map projection. More... | |
double | m_cosCenterLatitude |
Cosine of the center latitude. More... | |
double | m_clatRadius |
The radius of the target planet at the center latitude. More... | |
Equirectangular Map Projection.
This class provides methods for the forward and inverse equations of a Equirectangular map projection (for a sphere).
The Equirectangluar projection is a cylindrical projection in which the poles, latitudes, and longitudes are represented as straight, equidistant, lines. The poles and latitudes are horizontal lines and the longitudes are vertical lines. These lines intersect at right angles.
The code was converted to C++ from the Fortran version of the USGS General Cartographic Transformation Package (GCTP). In particular it was modified from the Equidistant Cylindrical code. This class inherits IsisProjection and provides the two virtual methods SetGround (forward) and SetCoordinate (inverse) and a third virtual method, XYRange, for obtaining projection coordinate coverage for a latitude/longitude window.
Please see the Projection class for a full accounting of all the methods available.
2004-02-07 Jeff Anderson - added plug-in capability.
2004-02-24 Jeff Anderson - Modified forward and inverse methods to use the local radius at the center latitude instead of the equitorial radius.
2005-03-11 Elizabeth Ribelin - added TrueScaleLatitude method test to the unitTest
2007-06-29 Steven Lambright - Added Mapping, MappingLatitudes and MappingLongitudes methods.
2008-05-09 Steven Lambright - Added Name, Version, IsEquatorialCylindrical methods
2008-05-09 Steven Lambright - Fixed test for being too close to a pole
2008-11-12 Steven Lambright - Commented some unclear code (CenterLatitudeRadius keyword)
2012-06-15 Jeannie Backer - Added documentation. Added forward declaration of Pvl to header file. Ordered includes in implementation file. Moved Name, Version, IsEquatorialCylindrical to the implementation file. Minor modifications to comply with some coding standards. References #928.
2012-01-20 Debbie A. Cook - Changed to use TProjection instead of Projection.
References #775.
2013-04-26 Jeannie Backer - Modified constructor so that default center lat/lon values are at the center of the lat/lon ranges, respectively. This was done to be consistent with other projection defaults. Improved test coverage. Fixes #1597.
2013-05-14 Jeannie Backer - Fixed unitTest merge error. References #775.
Definition at line 86 of file Equirectangular.h.
|
inherited |
This enum defines the types of Latitude supported in this class.
Definition at line 219 of file TProjection.h.
|
inherited |
This enum defines the types of Longitude directions supported in this class.
Enumerator | |
---|---|
PositiveEast | Longitude values increase in the easterly direction. |
PositiveWest | Longitude values increase in the westerly direction. |
Definition at line 239 of file TProjection.h.
|
inherited |
This enum defines the subclasses of Projection supported in Isis.
Enumerator | |
---|---|
Triaxial | These projections are used to map triaxial and irregular-shaped bodies. |
RingPlane | These projections are used to map ring planes. |
Definition at line 182 of file Projection.h.
Isis::Equirectangular::Equirectangular | ( | Pvl & | label, |
bool | allowDefaults = false |
||
) |
Constructs a Equirectangular object.
label | This argument must be a Label containing the proper mapping information as indicated in the IsisProjection class. Additionally, the equirectangular projection requires the center longitude to be defined in the keyword CenterLongitude as well as the center latitude in CenterLatitude. |
allowDefaults | (Default value is false) If set to false the constructor requires that the keywords CenterLongitude and CenterLatitude exist in the label. Otherwise, if they do not exist they will be computed and written to the label using the middle of the latitude/longitude range. |
IException | - "Cannot project without [CenterLongitude] value. Keyword does not exist in the labels and defaults are not allowed." |
IException | - "Cannot project without [CenterLatitude] value. Keyword does not exist in the labels and defaults are not allowed." |
IException | - "Keyword value for CenterLatitude is too close to the pole" |
IException | - "Invalid label group [Mapping]." |
Definition at line 65 of file Equirectangular.cpp.
References _FILEINFO_, Isis::PvlObject::findGroup(), Isis::PvlContainer::hasKeyword(), Isis::IException::Io, Isis::TProjection::LocalRadius(), m_centerLatitude, m_centerLongitude, m_clatRadius, m_cosCenterLatitude, Isis::TProjection::m_longitudeDirection, Isis::TProjection::m_maximumLatitude, Isis::TProjection::m_maximumLongitude, Isis::TProjection::m_minimumLatitude, Isis::TProjection::m_minimumLongitude, Isis::PI, Isis::TProjection::PositiveWest, Isis::toString(), Isis::PvlObject::Traverse, and Isis::IException::Unknown.
Isis::Equirectangular::~Equirectangular | ( | ) |
Destroys the Equirectangular object.
Definition at line 132 of file Equirectangular.cpp.
|
protectedinherited |
A convience method to compute.
\[ e4 = \sqrt{(1+e )^{1+e}(1-e)^{1-e}} \]
where e is the eccentricity of the body.
Definition at line 1906 of file TProjection.cpp.
References Isis::TProjection::Eccentricity().
Referenced by Isis::PolarStereographic::PolarStereographic().
|
inherited |
This returns the eccentricity of the target,.
\[ e = \sqrt{1 - \frac{PR^2}{ER^2}} \]
where PR is the polar radius and ER is the equatorial radius. Since polar and equatorial radii are required to be greater than zero, it follows that \( 0 \le e < 1 \) . Note that if the body is spherical, then PR = ER and so e = 0.
Definition at line 319 of file TProjection.cpp.
References Isis::TProjection::m_eccentricity.
Referenced by Isis::TProjection::e4Compute(), Isis::TProjection::mCompute(), Isis::Mercator::Mercator(), Isis::TProjection::phi2Compute(), Isis::TProjection::tCompute(), and Isis::TransverseMercator::TransverseMercator().
|
inherited |
This returns the equatorial radius of the target.
The radius was obtained from the label during object construction.
Definition at line 292 of file TProjection.cpp.
References Isis::TProjection::m_equatorialRadius.
Referenced by Isis::MosaicGridTool::fromPvl(), Isis::TProjection::operator==(), and Isis::MosaicGridTool::setLatExtents().
|
protectedinherited |
Calculates the unrotated form of current x value.
Definition at line 833 of file Projection.cpp.
References Isis::Projection::m_rotation, Isis::Projection::m_x, Isis::Projection::m_y, and Isis::PI.
Referenced by Isis::RingCylindrical::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), and Isis::Orthographic::SetCoordinate().
|
protectedinherited |
Calculates the unrotated form of the current y value.
Definition at line 844 of file Projection.cpp.
References Isis::Projection::m_rotation, Isis::Projection::m_x, Isis::Projection::m_y, and Isis::PI.
Referenced by Isis::RingCylindrical::SetCoordinate(), Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), and Isis::Orthographic::SetCoordinate().
|
inherited |
This indicates if the longitude domain is -180 to 180 (as opposed to 0 to 360).
The longitude domain was obtained from the label during object construction.
Definition at line 647 of file TProjection.cpp.
References Isis::TProjection::m_longitudeDomain.
Referenced by Isis::MosaicSceneItem::reproject(), and Isis::SubArea::UpdateLabel().
|
inherited |
This indicates if the longitude domain is 0 to 360 (as opposed to -180 to 180).
The longitude domain was obtained from the label during object construction.
Definition at line 658 of file TProjection.cpp.
References Isis::TProjection::m_longitudeDomain.
|
inherited |
This indicates if the longitude direction type is positive west (as opposed to postive east).
The longitude type was obtained from the label during object construction.
lon | Longitude to convert into the -180 to 180 domain. |
IException::Unknown | - "The given longitude is invalid." |
lon | Longitude to convert into the 0 to 360 domain. |
Definition at line 364 of file Projection.cpp.
References Isis::Projection::m_groundRangeGood.
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::RingPlaneProjection::Mapping(), Isis::TProjection::MappingLatitudes(), Isis::TProjection::MappingLongitudes(), Isis::RingCylindrical::MappingRingLongitudes(), Isis::Planar::MappingRingLongitudes(), Isis::RingPlaneProjection::MappingRingLongitudes(), Isis::RingCylindrical::MappingRingRadii(), Isis::Planar::MappingRingRadii(), Isis::RingPlaneProjection::MappingRingRadii(), Isis::ProjectionFactory::RingsCreateForCube(), and Isis::TProjection::xyRangeOblique().
|
protectedinherited |
Determine whether the given latitude is within the range of the MinimumLatitude and MaximumLatitude range of this projection.
Note: It is a good habit to call this function to verify that a value is in range before passing it to XYRangeCheck.
latitude | The latitude to check. |
Definition at line 1175 of file TProjection.cpp.
References Isis::TProjection::MaximumLatitude(), and Isis::TProjection::MinimumLatitude().
|
protectedinherited |
Determine whether the given longitude is within the range of the MinimumLongitude and MaximumLongitude range of this projection.
Note: It is a good habit to call this function to verify that a value is in range before passing it to XYRangeCheck.
longitude | The longitude to check. |
Definition at line 1155 of file TProjection.cpp.
References Isis::TProjection::MaximumLongitude(), and Isis::TProjection::MinimumLongitude().
|
protectedinherited |
Determine whether the given longitude is within the range of the given min and max longitudes.
Note: It is a good habit to call this function to verify that a value is in range before passing it to XYRangeCheck.
minLon | The lower end of longitude range. |
maxLon | The upper end of longitude range. |
longitude | The longitude to check. |
Definition at line 1112 of file TProjection.cpp.
References Isis::TProjection::To360Domain().
|
virtual |
Indicates whether the projection is Equitorial Cylindrical.
Reimplemented from Isis::TProjection.
Definition at line 186 of file Equirectangular.cpp.
|
inherited |
This indicates if the last invocation of SetGround, SetCoordinate, SetUniversalGround, or SetWorld was with successful or not.
If there was success then the Latitude, Longitude, XCoord, YCoord, UniversalLatitude, UniversalLongitude, WorldX, and WorldY methods can be utilized.
Definition at line 389 of file Projection.cpp.
References Isis::Projection::m_good.
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::Chip::Load(), Isis::ProjectionFactory::RingsCreateForCube(), Isis::SubArea::UpdateLabel(), Isis::RingPlaneProjection::XYRangeCheck(), and Isis::TProjection::XYRangeCheck().
|
inherited |
This indicates if the latitude type is planetocentric (as opposed to planetographic).
The latitude type was obtained from the label during object construction.
Definition at line 407 of file TProjection.cpp.
References Isis::TProjection::m_latitudeType, and Isis::TProjection::Planetocentric.
Referenced by Isis::LambertConformal::LambertConformal(), Isis::Mercator::Mercator(), Isis::ObliqueCylindrical::ObliqueCylindrical(), Isis::TProjection::operator==(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::PointPerspective::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::Orthographic::SetGround(), and Isis::TransverseMercator::TransverseMercator().
|
inherited |
This indicates if the latitude type is planetographic (as opposed to planetocentric).
The latitude type was obtained from the label during object construction.
Definition at line 418 of file TProjection.cpp.
References Isis::TProjection::m_latitudeType, and Isis::TProjection::Planetographic.
Referenced by Isis::SubArea::UpdateLabel().
|
inherited |
This indicates if the longitude direction type is positive west (as opposed to postive east).
The longitude type was obtained from the label during object construction.
Definition at line 535 of file TProjection.cpp.
References Isis::TProjection::m_longitudeDirection, and Isis::TProjection::PositiveEast.
Referenced by Isis::SubArea::UpdateLabel().
|
inherited |
This indicates if the longitude direction type is positive east (as opposed to postive west).
The longitude type was obtained from the label during object construction.
Definition at line 546 of file TProjection.cpp.
References Isis::TProjection::m_longitudeDirection, and Isis::TProjection::PositiveWest.
Referenced by Isis::TProjection::operator==().
|
inherited |
Returns true if projection is sky and false if it is land.
Definition at line 223 of file Projection.cpp.
References Isis::Projection::m_sky.
Referenced by Isis::Camera::RawFocalPlanetoImage(), Isis::Camera::SetImage(), Isis::Camera::SetRightAscensionDeclination(), and Isis::AdvancedTrackTool::updateRow().
|
inherited |
This returns a latitude with correct latitude type as specified in the label object.
The method can only be used if SetGround, SetCoordinate, SetUniversalGround, or SetWorld return with success. Success can also be checked using the IsGood method.
Definition at line 826 of file TProjection.cpp.
References Isis::TProjection::m_latitude.
Referenced by Isis::MosaicGridTool::setLatExtents(), Isis::MosaicTrackTool::updateLabels(), and Isis::TrackTool::updateLabels().
|
inherited |
This method returns the latitude type as a string.
It will return either Planetocentric or Planetographic.
Definition at line 523 of file TProjection.cpp.
References Isis::TProjection::m_latitudeType, and Isis::TProjection::Planetographic.
Referenced by Isis::MosaicGridTool::latType().
|
inherited |
This method returns the local radius in meters at the specified latitude position.
For this method, the local radius is defined as the distance from the center of the planet to the surface of the planet at the given latitude.
\[ LR = \frac{ER*PR}{\sqrt{PR^2 \cos^2(LAT)+ER^2 \sin^2(LAT)}} \]
latitude | A latitude in degrees (assumed to be of the correct LatitudeType). |
IException::Unknown | - "The given latitude is invalid." |
Definition at line 341 of file TProjection.cpp.
References _FILEINFO_, Isis::TProjection::m_equatorialRadius, Isis::TProjection::m_polarRadius, Isis::Null, Isis::PI, Isis::toString(), and Isis::IException::Unknown.
Referenced by Isis::TiffImporter::convertProjection(), Isis::ProjectionFactory::CreateForCube(), and Isis::AdvancedTrackTool::updateRow().
|
virtualinherited |
This method returns the local radius in meters at the current latitude position.
This is only usable if the use of SetGround or SetCoordinate was successful.
Implements Isis::Projection.
Definition at line 368 of file TProjection.cpp.
References Isis::TProjection::m_latitude.
Referenced by Equirectangular().
|
inherited |
This returns a longitude with correct longitude direction and domain as specified in the label object.
The method can only be used if SetGround, SetCoordinate, SetUniversalGround, or SetWorld return with success. Success can also be checked using the IsGood method.
Definition at line 838 of file TProjection.cpp.
References Isis::TProjection::m_longitude.
Referenced by Isis::Camera::SetImageSkyMapProjection(), Isis::MosaicGridTool::setLonExtents(), Isis::MosaicTrackTool::updateLabels(), Isis::TrackTool::updateLabels(), and Isis::AdvancedTrackTool::updateRow().
|
inherited |
This method returns the longitude direction as a string.
It will return either PositiveEast or PositiveWest.
Definition at line 635 of file TProjection.cpp.
References Isis::TProjection::m_longitudeDirection, and Isis::TProjection::PositiveEast.
|
inherited |
This method returns the longitude domain as a string.
It will return either 180 or 360.
Definition at line 713 of file TProjection.cpp.
References Isis::TProjection::m_longitudeDomain.
Referenced by Isis::MosaicGridTool::lonDomain().
|
virtual |
This function returns a PvlGroup containing the keywords that this projection uses, namely CenterLatitude and CenterLongitude.
Reimplemented from Isis::TProjection.
Definition at line 309 of file Equirectangular.cpp.
References Isis::Projection::m_mappingGrp, and Isis::TProjection::Mapping().
|
virtual |
This function returns a PvlGroup containing the latitude keywords that this projection uses, namely CenterLatitude.
Reimplemented from Isis::TProjection.
Definition at line 324 of file Equirectangular.cpp.
References Isis::Projection::m_mappingGrp, and Isis::TProjection::MappingLatitudes().
|
virtual |
This function returns a PvlGroup containing the longitude keywords that this projection uses, namely CenterLongitude.
Reimplemented from Isis::TProjection.
Definition at line 338 of file Equirectangular.cpp.
References Isis::Projection::m_mappingGrp, and Isis::TProjection::MappingLongitudes().
|
inherited |
This returns the maximum latitude of the area of interest.
The value was obtained from the labels during object construction. This method can only be used if HasGroundRange returns a true.
Definition at line 736 of file TProjection.cpp.
References Isis::TProjection::m_maximumLatitude.
Referenced by Isis::TProjection::inLatitudeRange(), Isis::MosaicGridTool::setLatExtents(), and Isis::TProjection::xyRangeOblique().
|
inherited |
This returns the maximum longitude of the area of interest.
The value was obtained from the labels during object construction. This method can only be used if HasGroundRange returns a true.
Definition at line 758 of file TProjection.cpp.
References Isis::TProjection::m_maximumLongitude.
Referenced by Isis::TProjection::inLongitudeRange(), Isis::MosaicGridTool::setLonExtents(), Isis::Orthographic::XYRange(), and Isis::TProjection::xyRangeOblique().
|
protectedinherited |
A convience method to compute Snyder's m equation (14-15) for a given latitude, \(\phi\).
\[ m = \frac{\cos(\phi)}{\sqrt{1-e^2 \sin^2(\phi)}} \]
where \(e\) is the eccentricity for the body.
sinphi | sine of phi |
cosphi | cosine of phi |
Definition at line 1862 of file TProjection.cpp.
References Isis::TProjection::Eccentricity().
Referenced by Isis::LambertConformal::LambertConformal(), and Isis::PolarStereographic::PolarStereographic().
|
inherited |
This returns the minimum latitude of the area of interest.
The value was obtained from the labels during object construction. This method can only be used if HasGroundRange returns a true.
Definition at line 725 of file TProjection.cpp.
References Isis::TProjection::m_minimumLatitude.
Referenced by Isis::TProjection::inLatitudeRange(), Isis::MosaicGridTool::setLatExtents(), and Isis::TProjection::xyRangeOblique().
|
inherited |
This returns the minimum longitude of the area of interest.
The value was obtained from the labels during object construction. This method can only be used if HasGroundRange returns a true.
Definition at line 747 of file TProjection.cpp.
References Isis::TProjection::m_minimumLongitude.
Referenced by Isis::TProjection::inLongitudeRange(), Isis::MosaicGridTool::setLonExtents(), Isis::Orthographic::XYRange(), and Isis::TProjection::xyRangeOblique().
|
virtual |
Returns the name of the map projection, "Equirectangular".
Implements Isis::TProjection.
Definition at line 158 of file Equirectangular.cpp.
|
inherited |
This method determines whether two map projection objects are not equal.
True is returned if they have at least some differences in the radii, latitude type, longitude direction, resolution, or projection name.
proj | A reference to a Projection object to which this Projection will be compared. |
Definition at line 193 of file Projection.cpp.
|
virtual |
Compares two Projection objects to see if they are equal.
proj | Projection object to do comparison on |
Reimplemented from Isis::TProjection.
Definition at line 143 of file Equirectangular.cpp.
References m_centerLatitude, and m_centerLongitude.
|
protectedinherited |
A convience method to compute latitude angle phi2 given small t, from Syder's recursive equation (7-9)
\[ \phi_{i+1} = \frac{\pi}{2} - 2\arctan\left(t \left[\frac{1-e\sin(\phi_i)}{1+e\sin(\phi_i)}\right]^{e/2}\right) \]
where \(e\) is the eccentricity for the body and \( \phi_0 = \frac{\pi}{2} - 2\arctan(t) \) .
t | small t |
IException::Unknown | - "Failed to converge in Projection::phi2Compute()" |
Definition at line 1818 of file TProjection.cpp.
References _FILEINFO_, Isis::TProjection::Eccentricity(), Isis::HALFPI, and Isis::IException::Unknown.
Referenced by Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), and Isis::PolarStereographic::SetCoordinate().
|
protectedinherited |
Returns the pixel resolution value from the PVL mapping group in meters/pixel.
Definition at line 855 of file Projection.cpp.
References Isis::Projection::m_pixelResolution.
Referenced by Isis::TProjection::doSearch(), Isis::RingCylindrical::XYRange(), and Isis::Planar::XYRange().
|
inherited |
This returns the polar radius of the target.
The radius was obtained from the label during object construction.
Definition at line 302 of file TProjection.cpp.
References Isis::TProjection::m_polarRadius.
Referenced by Isis::MosaicGridTool::fromPvl(), Isis::TProjection::operator==(), and Isis::MosaicGridTool::setLatExtents().
|
inherited |
Returns an enum value for the projection type.
Definition at line 213 of file Projection.cpp.
Referenced by Isis::MosaicGridTool::autoGrid(), Isis::MosaicGridTool::fromPvl(), Isis::UniversalGroundMap::GroundRange(), Isis::Camera::RawFocalPlanetoImage(), Isis::MosaicGridTool::setLatExtents(), Isis::MosaicGridTool::setLonExtents(), Isis::Projection::SetUnboundUniversalGround(), Isis::Projection::SetUniversalGround(), Isis::UniversalGroundMap::UniversalLatitude(), Isis::UniversalGroundMap::UniversalLongitude(), Isis::MosaicTrackTool::updateLabels(), Isis::TrackTool::updateLabels(), and Isis::AdvancedTrackTool::updateRow().
|
protectedinherited |
A convience method to compute Snyder's q equation (3-12) for a given latitude, \(\phi\).
\[ q = (1 - e^2) \left[ \frac{\sin(\phi)}{1 - e^2 \sin^2(\phi)} - \frac{1}{2e} \ln\left(\frac{1 - e \sin(\phi)}{1 + e \sin(\phi)}\right) \right] \]
where \(e\) is the eccentricity for the body.
sinPhi | The sine value for a latitude, phi. |
IException::Unknown | - "Snyder's q variable should only be computed for ellipsoidal projections." |
Definition at line 1785 of file TProjection.cpp.
References _FILEINFO_, Isis::TProjection::m_eccentricity, and Isis::IException::Unknown.
|
inherited |
This method returns the resolution for mapping world coordinates into projection coordinates.
For example, if the world coordinate system is an image then this routine returns the number of meters per pixel. Likewise, if the world coordinate system is a piece of paper, it might return the number of meters per inch of paper. If the SetWorldMapper method is not invoked then this method returns 1.0
Definition at line 690 of file Projection.cpp.
References Isis::Projection::m_mapper, and Isis::WorldMapper::Resolution().
Referenced by Isis::ProcessExport::CreateWorldFile(), Isis::Projection::operator==(), Isis::UniversalGroundMap::Resolution(), and Isis::MeasureTool::updateDist().
|
inherited |
Returns the value of the Rotation keyword from the mapping group.
Definition at line 374 of file Projection.cpp.
References Isis::Projection::m_rotation.
|
virtualinherited |
This method returns the scale for mapping world coordinates into projection coordinates.
For example, if the world coordinate system is an image then this routine returns the number of pixels per degree. Likewise, if the world coordinate system is a piece of paper, it might return the number of inches of paper per degree. If the SetWorldMapper method is not invoked then this method returns 1.0
Implements Isis::Projection.
Definition at line 955 of file TProjection.cpp.
References Isis::TProjection::m_equatorialRadius, Isis::Projection::m_mapper, Isis::TProjection::m_polarRadius, Isis::PI, Isis::WorldMapper::Resolution(), and Isis::TProjection::TrueScaleLatitude().
|
protectedinherited |
This protected method is a helper for derived classes.
It takes unrotated x and y values, rotates them using the rotation angle data member, and stores the results in the current x and y data members.
x | The unrotated x coordinate. |
y | The unrotated y coordinate. |
Definition at line 795 of file Projection.cpp.
References Isis::Projection::m_good, Isis::Projection::m_rotation, Isis::Projection::m_x, Isis::Projection::m_y, Isis::Null, and Isis::PI.
Referenced by Isis::RingCylindrical::SetGround(), Isis::Planar::SetGround(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::Mollweide::SetGround(), Isis::PointPerspective::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::ObliqueCylindrical::SetGround(), Isis::SimpleCylindrical::SetGround(), SetGround(), Isis::Sinusoidal::SetGround(), Isis::Orthographic::SetGround(), Isis::RingPlaneProjection::SetGround(), and Isis::TProjection::SetGround().
|
virtual |
This method is used to set the projection x/y.
The Set forces an attempted calculation of the corresponding latitude/longitude position. This may or may not be successful and a status is returned as such.
x | X coordinate of the projection in units that are the same as the radii in the label |
y | Y coordinate of the projection in units that are the same as the radii in the label |
Reimplemented from Isis::TProjection.
Definition at line 231 of file Equirectangular.cpp.
References Isis::Projection::GetX(), Isis::Projection::GetY(), Isis::HALFPI, m_centerLongitude, m_clatRadius, m_cosCenterLatitude, Isis::Projection::m_good, Isis::TProjection::m_latitude, Isis::TProjection::m_longitude, Isis::TProjection::m_longitudeDirection, Isis::PI, Isis::TProjection::PositiveWest, and Isis::Projection::SetXY().
|
virtual |
This method is used to set the latitude/longitude (assumed to be of the correct LatitudeType, LongitudeDirection, and LongitudeDomain.
The Set forces an attempted calculation of the projection X/Y values. This may or may not be successful and a status is returned as such.
Reimplemented from Isis::TProjection.
Definition at line 201 of file Equirectangular.cpp.
References m_centerLongitude, m_clatRadius, m_cosCenterLatitude, Isis::Projection::m_good, Isis::TProjection::m_latitude, Isis::TProjection::m_longitude, Isis::TProjection::m_longitudeDirection, Isis::PI, Isis::TProjection::PositiveWest, and Isis::Projection::SetComputedXY().
|
inherited |
Sets the projection subclass type.
ptype | The projection subclass type |
Definition at line 203 of file Projection.cpp.
Referenced by Isis::RingPlaneProjection::RingPlaneProjection(), and Isis::TProjection::TProjection().
|
virtualinherited |
This method is used to set the latitude/longitude.
The Set forces an attempted calculation of the projection X/Y values. This may or may not be successful and a status is returned as such. This version does not adjust the longitude based on the longitude domain.
lat | Planetocentric Latitude value to project |
lon | PositiveEast, Domain360 Longitude value to project |
Reimplemented from Isis::Projection.
Definition at line 894 of file TProjection.cpp.
References Isis::Projection::m_good, Isis::TProjection::m_latitude, Isis::TProjection::m_latitudeType, Isis::TProjection::m_longitude, Isis::TProjection::m_longitudeDirection, Isis::Null, Isis::TProjection::Planetographic, Isis::TProjection::PositiveWest, Isis::TProjection::SetGround(), and Isis::TProjection::ToPlanetographic().
Referenced by Isis::Projection::SetUnboundUniversalGround().
|
virtualinherited |
This method is used to set the latitude/longitude which must be Planetocentric (latitude) and PositiveEast/Domain360 (longitude).
The Set forces an attempted calculation of the projection X/Y values. This may or may not be successful and a status is returned as such.
lat | Planetocentric Latitude value to project |
lon | PositiveEast, Domain360 Longitude value to project |
Reimplemented from Isis::Projection.
Definition at line 854 of file TProjection.cpp.
References Isis::Projection::m_good, Isis::TProjection::m_latitude, Isis::TProjection::m_latitudeType, Isis::TProjection::m_longitude, Isis::TProjection::m_longitudeDirection, Isis::TProjection::m_longitudeDomain, Isis::Null, Isis::TProjection::Planetographic, Isis::TProjection::PositiveWest, Isis::TProjection::SetGround(), Isis::TProjection::To180Domain(), Isis::TProjection::To360Domain(), and Isis::TProjection::ToPlanetographic().
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::MosaicGridTool::setLatExtents(), and Isis::Projection::SetUniversalGround().
|
inherited |
This method is used to find the XY range for oblique aspect projections (non-polar projections) by "walking" around each of the min/max lat/lon.
minX | Minimum x projection coordinate which covers the latitude longitude range specified in the labels. |
maxX | Maximum x projection coordinate which covers the latitude longitude range specified in the labels. |
minY | Minimum y projection coordinate which covers the latitude longitude range specified in the labels. |
maxY | Maximum y projection coordinate which covers the latitude longitude range specified in the labels. |
This method searches for extreme (min/max/discontinuity) coordinate values along the constBorder line between minBorder and maxBorder (that is, across latitudes/longitudes). This method locates the extrema by utilizing the findExtreme() method until the coordinate values converge. Then, extremeVal parameter is updated with this value before returning.
Discontinuities are stored in m_specialLatCases and m_specialLonCases so they may be checked again later, which creates significantly more accuracy in some cases.
minBorder | Minimum latitude or longitude to search between. |
maxBorder | Maximum latitude or longitude to search between. |
extremeVal | The resulting global coordinate value (min or max value for x or y, depending on findMin and searchX) on the constBorder. |
constBorder | The latitude or longitude that remains constant. The method will step along this border. |
searchX | Indicates whether the method is searching for a min or max x-coordinate. If false the method searches for min or max y-coordinate. |
searchLongitude | Indicates whether the method will search along a longitude. If true, constBorder is longitude and all other borders are latitudes. If false, the method searches a latitude (constBorder is a lat, other borders lons). |
findMin | Indicates whether the method is looking for a minimum coordinate value. If false, the method is looking for a maximum value. |
Searches for extreme (min/max/discontinuity) coordinate values across latitudes/longitudes.
This method looks for these extrema along the constBorder between minBorder and maxBorder by stepping along constBorder (10 times) from the minBorder and maxBorder. Then, the range of this extreme value is recorded in minBorder and maxBorder and the coordinate values corresponding to these new borders are stored in minBorderX, minBorderY, maxBorderX and maxBorderY.
This function should be used by calling it repeatedly until minBorderX and minBorderY do not equal maxBorderX and maxBorderY, respectively. Discontinuities will cause the minBorderX, minBorderY, maxBorderX and maxBorderY to never converge. If minBorderX never comes close to maxBorderX or minBorderY never comes close to maxBorderY, then between minBorder and maxBorder is the value of the most extreme value. In this case, either the smaller or larger of the x or y values found will be correct, depending on the values of findMin and searchX.
minBorder | Minimum latitude or longitude to search between. This value gets updated to a more precise range. |
maxBorder | Maximum latitude or longitude to search between. This value gets updated to a more precise range. |
minBorderX | The x-value corresponding to the lower resultant minBorder and the constBorder, which is more accurate when nearly equal to maxBorderX. |
minBorderY | The y-value corresponding to the lower resultant minBorder and the constBorder, which is more accurate when nearly equal to maxBorderY. |
maxBorderX | The x-value corresponding to the higher resultant maxBorder and the constBorder, which is more accurate when nearly equal to minBorderX. |
maxBorderY | The y-value corresponding to the higher resultant maxBorder and the constBorder, which is more accurate when nearly equal to minBorderY. |
constBorder | The latitude or longitude that remains constant. The method will step along this border. |
searchX | Indicates whether the method is searching for a min or max x-coordinate. If false the method searches for min or max y-coordinate. |
searchLongitude | Indicates whether the method will search along a longitude. If true, constBorder is longitude and all other borders are latitudes. If false, the method searches a latitude (constBorder is a lat, other borders lons). |
findMin | Indicates whether the method is looking for a minimum coordinate value. If false, the method is looking for a maximum value. |
This function sets the ground for the given border values. It calls the SetGround(lat, lon) method with the appropriate lat/lon values, depending on whether variableIsLat is true.
This method is used by doSearch and findExtreme in order to set the ground correctly each time.
variableBorder | The latitude or longitude that is variable in the search methods. |
constBorder | The latitude or longitude that is constant in the search methods. |
variableIsLat | Indicates whether variableBorder is the latittude value and constBorder is the longitude value. If false, variableBorder is the longitude value and constBorder is the latitude value. |
This method sets the UpperLeftCornerX and UpperLeftCornerY keywords in the projection mapping group, in meters.
x | the upper left corner x value |
y | the upper left corner y value |
Definition at line 1388 of file Projection.cpp.
References Isis::PvlContainer::addKeyword(), Isis::Projection::m_mappingGrp, Isis::Displacement::meters(), and Isis::toString().
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::ProjectionFactory::CreateFromCube(), Isis::ProjectionFactory::RingsCreateForCube(), and Isis::ProjectionFactory::RingsCreateFromCube().
|
inherited |
This method is used to set a world coordinate.
A world coordinate is a different coordinate type that has a one-to-one mapping to the projection coordinate system. For example, mapping pixel samples and lines to projection x's and y's. The Set forces an attempted calculation of the corresponding latitude/longitude position. This may or may not be successful and a status is returned as such. Note that is only applies if the Projection object was given an WorldMapper object during construction. If an WorldMapper was not supplied then SetWorld operates exactly the same as SetCoordinate (impling that world coordinate and projection coordinate are identical).
worldX | World X coordinate in units that are specified by the WorldMapper object (e.g., pixels, millimeters, etc) |
worldY | World Y coordinate in units that are specified by the WorldMapper object (e.g., pixels, millimeters, etc) |
Definition at line 512 of file Projection.cpp.
References Isis::Projection::m_mapper, Isis::WorldMapper::ProjectionX(), and Isis::WorldMapper::ProjectionY().
Referenced by Isis::ProcessExport::CreateWorldFile(), Isis::UniversalGroundMap::GroundRange(), Isis::Cube::latLonRange(), Isis::Chip::Load(), Isis::UniversalGroundMap::SetImage(), Isis::Camera::SetImageMapProjection(), Isis::Camera::SetImageSkyMapProjection(), Isis::MeasureTool::updateDist(), Isis::SubArea::UpdateLabel(), Isis::TrackTool::updateLabels(), and Isis::AdvancedTrackTool::updateRow().
|
inherited |
If desired the programmer can use this method to set a world mapper to be used in the SetWorld, WorldX, and WorldY methods.
Mappers typically transform a projection coordinate (x/y) into the desired working coordinate system, for example, cube pixels or inches on a piece of paper. They transform in both directions (world to projection and projection to world). This allows for conversions from line/sample to latitude/longitude and vice versa. This projection will take ownership of the WorldMapper pointer.
mapper | Pointer to the mapper |
Definition at line 489 of file Projection.cpp.
References Isis::Projection::m_mapper.
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::ProjectionFactory::CreateFromCube(), Isis::ProjectionFactory::RingsCreateForCube(), and Isis::ProjectionFactory::RingsCreateFromCube().
|
protectedinherited |
This protected method is a helper for derived classes.
It takes a rotated x,y and stores them in the current x and y data members.
x | The rotated x coordinate. |
y | The rotated y coordinate. |
Definition at line 819 of file Projection.cpp.
References Isis::Projection::m_good, Isis::Projection::m_x, Isis::Projection::m_y, and Isis::Null.
Referenced by Isis::RingCylindrical::SetCoordinate(), Isis::Planar::SetCoordinate(), Isis::LunarAzimuthalEqualArea::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::PointPerspective::SetCoordinate(), Isis::Robinson::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::RingPlaneProjection::SetCoordinate(), and Isis::TProjection::SetCoordinate().
|
protectedinherited |
A convience method to compute Snyder's t equation (15-9) for a given latitude, \(\phi\).
\[ t = \frac{\tan\left(\frac{\pi}{4} - \frac{\phi}{2}\right)} {\left[\frac{1-e\sin(\phi)} {1+e\sin(\phi)}\right]^{e/2}} \]
where \(e\) is the eccentricity for the body.
phi | phi |
sinphi | sin of phi |
Definition at line 1885 of file TProjection.cpp.
References Isis::TProjection::Eccentricity(), and Isis::HALFPI.
Referenced by Isis::LambertConformal::LambertConformal(), Isis::PolarStereographic::PolarStereographic(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), and Isis::PolarStereographic::SetGround().
|
staticinherited |
This method converts a longitude into the -180 to 180 domain.
It will leave the longitude unchanged if it is already in the domain.
lon | Longitude to convert into the -180 to 180 domain. |
IException::Unknown | - "The given longitude is invalid." |
Definition at line 672 of file TProjection.cpp.
References _FILEINFO_, Isis::Angle::Degrees, Isis::Angle::degrees(), Isis::Longitude::force180Domain(), Isis::Null, Isis::toString(), and Isis::IException::Unknown.
Referenced by Isis::ProcessImportPds::ExtractPdsProjection(), Isis::CameraPointInfo::GetPointInfo(), Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::TProjection::SetUniversalGround(), Isis::TProjection::ToPositiveEast(), Isis::TProjection::ToPositiveWest(), Isis::SubArea::UpdateLabel(), and Isis::AdvancedTrackTool::updateRow().
|
staticinherited |
This method converts a longitude into the 0 to 360 domain.
It will leave the longitude unchanged if it is already in the domain.
lon | Longitude to convert into the 0 to 360 domain. |
Definition at line 690 of file TProjection.cpp.
References _FILEINFO_, Isis::Angle::Degrees, Isis::Angle::degrees(), Isis::Longitude::force360Domain(), Isis::Null, Isis::toString(), and Isis::IException::Unknown.
Referenced by Isis::TProjection::inLongitudeRange(), Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::TProjection::SetUniversalGround(), Isis::TProjection::ToPositiveEast(), Isis::TProjection::ToPositiveWest(), Isis::TProjection::UniversalLongitude(), and Isis::Orthographic::XYRange().
|
staticinherited |
Converts the given angle (in degrees) to degrees, minutes, seconds.
Outputs in the form xxx yym zz.zzzs, for example, 206.291 degrees is 206 17m 27.6s
angle | Angle in degrees to be converted to degrees, minutes, seconds |
Definition at line 721 of file Projection.cpp.
|
staticinherited |
Converts the given angle (in degrees) to hours, minutes, seconds.
Outputs in the form xxh yym zz.zzzs For example, 206.291 will be 13h 45m 09.84s
angle | Angle in degrees to be converted to hours, minutes, seconds |
Definition at line 756 of file Projection.cpp.
References Isis::Projection::ToHours().
|
staticinherited |
Converts the given angle (in degrees) to hours by using the ratio 15 degrees per hour.
angle | Angle in degrees to be converted to hours |
Definition at line 708 of file Projection.cpp.
Referenced by Isis::Projection::ToHMS().
|
inherited |
This method converts a planetographic latitude to a planetocentric latitude.
It utilizes the equatorial and polar radii found in the labels to perform the computation.
lat | Planetographic latitude to convert. |
Definition at line 433 of file TProjection.cpp.
References Isis::TProjection::m_equatorialRadius, and Isis::TProjection::m_polarRadius.
Referenced by Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::Orthographic::SetCoordinate(), and Isis::TProjection::UniversalLatitude().
|
staticinherited |
This method converts a planetographic latitude to a planetocentric latitude.
lat | Planetographic latitude to convert. |
eRadius | Equatorial radius. |
pRadius | Polar radius |
IException::Unknown | - "The given latitude is invalid." |
Definition at line 449 of file TProjection.cpp.
References _FILEINFO_, Isis::Null, Isis::PI, Isis::toString(), and Isis::IException::Unknown.
|
inherited |
This method converts a planetocentric latitude to a planetographic latitude.
It utilizes the equatorial and polar radii found in the labels to perform the computation.
lat | Planetocentric latitude to convert. |
Definition at line 478 of file TProjection.cpp.
References Isis::TProjection::m_equatorialRadius, and Isis::TProjection::m_polarRadius.
Referenced by Isis::CameraPointInfo::GetPointInfo(), Isis::LambertConformal::LambertConformal(), Isis::Mercator::Mercator(), Isis::ObliqueCylindrical::ObliqueCylindrical(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::PointPerspective::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::Orthographic::SetGround(), Isis::TProjection::SetUnboundUniversalGround(), Isis::TProjection::SetUniversalGround(), Isis::TransverseMercator::TransverseMercator(), Isis::SubArea::UpdateLabel(), and Isis::AdvancedTrackTool::updateRow().
|
staticinherited |
This method converts a planetocentric latitude to a planetographic latitude.
It is static so that a projection object does not need to exist.
lat | Planetocentric latitude to convert. |
eRadius | Equatorial radius. |
pRadius | Polar radius |
IException::Unknown | - "The given latitude is invalid." |
Definition at line 495 of file TProjection.cpp.
References _FILEINFO_, Isis::Null, Isis::PI, Isis::toString(), and Isis::IException::Unknown.
|
staticinherited |
This method converts a longitude into the positive east direction.
lon | Longitude to convert into the positive east direction. |
domain | Must be an integer value of 180 (for -180 to 180) or 360 (for 0 to 360). |
IException::Unknown | - "The given longitude is invalid." |
IException::Unknown | - "Unable to convert longitude. Domain is not 180 or 360." |
Definition at line 563 of file TProjection.cpp.
References _FILEINFO_, Isis::Null, Isis::TProjection::To180Domain(), Isis::TProjection::To360Domain(), Isis::toString(), and Isis::IException::Unknown.
|
staticinherited |
This method converts a longitude into the positive west direction.
lon | Longitude to convert into the positive west direction. |
domain | Must be an integer value of 180 (for -180 to 180) or 360 (for 0 to 360). |
IException::Unknown | - "The given longitude is invalid." |
IException::Unknown | - "Unable to convert longitude. Domain is not 180 or 360." |
Definition at line 602 of file TProjection.cpp.
References _FILEINFO_, Isis::Null, Isis::TProjection::To180Domain(), Isis::TProjection::To360Domain(), Isis::toString(), and Isis::IException::Unknown.
Referenced by Isis::CameraPointInfo::GetPointInfo(), and Isis::SubArea::UpdateLabel().
|
inherited |
This method converts a world x value to a projection x value.
For example, if the world coordinate system is an image then this method converts a sample position to a projection x value. Note that if SetWorldMapper is not used then this routine simply returns the value of the argument. That is, no mapping occurs.
worldX | World x coordinate |
IException::Unknown | - "The given x-value is invalid." |
Definition at line 637 of file Projection.cpp.
References _FILEINFO_, Isis::Projection::m_mapper, Isis::Null, Isis::WorldMapper::ProjectionX(), and Isis::IException::Unknown.
Referenced by Isis::OverlapStatistics::OverlapStatistics(), and Isis::ProcessMapMosaic::StartProcess().
|
inherited |
This method converts a world y value to a projection y value.
For example, if the world coordinate system is an image then this method converts a line position to a projection y value. Note that if SetWorldMapper is not used then this routine simply returns the value of the argument. That is, no mapping occurs.
worldY | World y coordinate |
IException::Unknown | - "The given y-value is invalid." |
Definition at line 665 of file Projection.cpp.
References _FILEINFO_, Isis::Projection::m_mapper, Isis::Null, Isis::WorldMapper::ProjectionY(), and Isis::IException::Unknown.
Referenced by Isis::OverlapStatistics::OverlapStatistics(), and Isis::ProcessMapMosaic::StartProcess().
|
inherited |
This method converts a projection x value to a world x value.
For example, if the world coordinate system is an image then this method converts a projection x to a sample position. Note that if SetWorldMapper is not used then this routine simply returns the value of the argument. That is, no mapping occurs.
projectionX | Projection x value in meters |
IException::Unknown | - "The given x-value is invalid." |
Definition at line 581 of file Projection.cpp.
References _FILEINFO_, Isis::Projection::m_mapper, Isis::Null, Isis::IException::Unknown, and Isis::WorldMapper::WorldX().
Referenced by Isis::OverlapStatistics::OverlapStatistics(), Isis::ProcessMapMosaic::RingsSetOutputCube(), Isis::ProcessMapMosaic::SetOutputCube(), and Isis::ProcessMapMosaic::StartProcess().
|
inherited |
This method converts a projection y value to a world y value.
For example, if the world coordinate system is an image then this method converts a projection y to a line position. Note that if SetWorldMapper is not used then this routine simply returns the value of the argument. That is, no mapping occurs.
projectionY | Projection y value in meters |
IException::Unknown | - "The given y-value is invalid." |
Definition at line 609 of file Projection.cpp.
References _FILEINFO_, Isis::Projection::m_mapper, Isis::Null, Isis::IException::Unknown, and Isis::WorldMapper::WorldY().
Referenced by Isis::OverlapStatistics::OverlapStatistics(), Isis::ProcessMapMosaic::RingsSetOutputCube(), Isis::ProcessMapMosaic::SetOutputCube(), and Isis::ProcessMapMosaic::StartProcess().
|
virtual |
Returns the latitude of true scale, in degrees.
In the case of Equirectangular it is the center latitude.
Reimplemented from Isis::TProjection.
Definition at line 177 of file Equirectangular.cpp.
References m_centerLatitude, and Isis::PI.
|
inherited |
This returns a universal latitude (planetocentric).
The method can only be used if SetGround, SetCoordinate, SetUniversalGround, or SetWorld return with success. Success can also be checked using the IsGood method.
Definition at line 923 of file TProjection.cpp.
References Isis::TProjection::m_latitude, Isis::TProjection::m_latitudeType, Isis::TProjection::Planetographic, and Isis::TProjection::ToPlanetocentric().
Referenced by Isis::UniversalGroundMap::GroundRange(), Isis::Cube::latLonRange(), Isis::Chip::Load(), Isis::Camera::SetImageMapProjection(), Isis::Camera::SetImageSkyMapProjection(), Isis::UniversalGroundMap::UniversalLatitude(), Isis::SubArea::UpdateLabel(), and Isis::AdvancedTrackTool::updateRow().
|
inherited |
This returns a universal longitude (positive east in 0 to 360 domain).
The method can only be used if SetGround, SetCoordinate, SetUniversalGround, or SetWorld return with success. Success can also be checked using the IsGood method.
Definition at line 937 of file TProjection.cpp.
References Isis::TProjection::m_longitude, Isis::TProjection::m_longitudeDirection, Isis::TProjection::PositiveWest, and Isis::TProjection::To360Domain().
Referenced by Isis::UniversalGroundMap::GroundRange(), Isis::Cube::latLonRange(), Isis::Chip::Load(), Isis::Camera::SetImageMapProjection(), Isis::UniversalGroundMap::UniversalLongitude(), Isis::SubArea::UpdateLabel(), and Isis::AdvancedTrackTool::updateRow().
|
virtual |
Returns the version of the map projection.
Implements Isis::TProjection.
Definition at line 167 of file Equirectangular.cpp.
|
inherited |
This returns the world X coordinate provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success.
Success can also be checked using the IsGood method. The units of X will be in the units as specified by the WorldMapper object which was given to the SetWorldMapper method. If a mapper object was not given then world coordinates are the same as the projection coordinates (i.e., WorldX and XCoord will return the same value).
Definition at line 539 of file Projection.cpp.
References Isis::Projection::m_mapper, Isis::Projection::m_x, and Isis::WorldMapper::WorldX().
Referenced by Isis::MosaicSceneItem::drawImage(), Isis::ImagePolygon::FixPolePoly(), Isis::Chip::Load(), Isis::DemShape::localRadius(), Isis::Camera::RawFocalPlanetoImage(), Isis::UniversalGroundMap::Sample(), Isis::Camera::SetRightAscensionDeclination(), and Isis::ProcessMapMosaic::StartProcess().
|
inherited |
This returns the world Y coordinate provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success.
Success can also be checked using the IsGood method. The units of Y will be in the units as specified by the WorldMapper object which was given to the SetWorldMapper. If a mapper object was not given then world coordinates are the same as the projection coordinates (i.e., WorldY and YCoord will return the same value).
Definition at line 559 of file Projection.cpp.
References Isis::Projection::m_mapper, Isis::Projection::m_y, and Isis::WorldMapper::WorldY().
Referenced by Isis::MosaicSceneItem::drawImage(), Isis::ImagePolygon::FixPolePoly(), Isis::UniversalGroundMap::Line(), Isis::Chip::Load(), Isis::DemShape::localRadius(), Isis::Camera::RawFocalPlanetoImage(), and Isis::Camera::SetRightAscensionDeclination().
|
inherited |
This returns the projection X provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success.
Success can also be checked using the IsGood method. The units of X will be in the same . units as the radii obtained from the label.
Definition at line 402 of file Projection.cpp.
References Isis::Projection::m_x.
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::ProcessExport::CreateWorldFile(), Isis::TProjection::findExtreme(), Isis::MosaicSceneItem::reproject(), Isis::ProjectionFactory::RingsCreateForCube(), Isis::RingPlaneProjection::SetCoordinate(), Isis::TProjection::SetCoordinate(), Isis::MosaicGridTool::setLatExtents(), Isis::SubArea::UpdateLabel(), Isis::AdvancedTrackTool::updateRow(), Isis::PointPerspective::XYRange(), Isis::LambertConformal::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), and Isis::TProjection::XYRangeCheck().
|
virtual |
This method is used to determine the x/y range which completely covers the area of interest specified by the lat/lon range.
The latitude/longitude range may be obtained from the labels. The purpose of this method is to return the x/y range so it can be used to compute how large a map may need to be. For example, how big a piece of paper is needed or how large of an image needs to be created. The method may fail as indicated by its return value.
minX | Minimum x projection coordinate which covers the latitude longitude range specified in the labels. |
maxX | Maximum x projection coordinate which covers the latitude longitude range specified in the labels. |
minY | Minimum y projection coordinate which covers the latitude longitude range specified in the labels. |
maxY | Maximum y projection coordinate which covers the latitude longitude range specified in the labels. |
Reimplemented from Isis::TProjection.
Definition at line 283 of file Equirectangular.cpp.
References Isis::TProjection::m_maximumLatitude, Isis::TProjection::m_maximumLongitude, Isis::Projection::m_maximumX, Isis::Projection::m_maximumY, Isis::TProjection::m_minimumLatitude, Isis::TProjection::m_minimumLongitude, Isis::Projection::m_minimumX, Isis::Projection::m_minimumY, and Isis::TProjection::XYRangeCheck().
|
protectedvirtualinherited |
This convience function is established to assist in the development of the XYRange virtual method.
It allows the developer to test ground points (lat/lon) to see if they produce a minimum/maximum projection coordinate.
This method will first verify that the given latitude and longitude values are not Null. If so, the method will change the status of the object to good=false before returning (i.e IsGood() returns false).
If both of those test pass, it attempts to set the ground to the given latitude and longitude and, if successful, compares the new x and y with the saved min/max x and y values.
For example in Sinusoidal this method is called in the following way:
Note: It is a good habit to call the inLatitudeRange and inLongitudeRange functions to verify that the values are in range before passing it to XYRangeCheck.
latitude | Test for min/max projection coordinates at this latitude |
longitude | Test for min/max projection coordinates at this longitude |
Implements Isis::Projection.
Definition at line 1077 of file TProjection.cpp.
References Isis::Projection::IsGood(), Isis::Projection::m_good, Isis::Projection::m_maximumX, Isis::Projection::m_maximumY, Isis::Projection::m_minimumX, Isis::Projection::m_minimumY, Isis::Null, Isis::TProjection::SetGround(), Isis::Projection::XCoord(), and Isis::Projection::YCoord().
Referenced by Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), and Isis::Orthographic::XYRange().
|
protectedinherited |
This method is used to find the XY range for oblique aspect projections (non-polar projections) by "walking" around each of the min/max lat/lon.
minX | Minimum x projection coordinate which covers the latitude longitude range specified in the labels. |
maxX | Maximum x projection coordinate which covers the latitude longitude range specified in the labels. |
minY | Minimum y projection coordinate which covers the latitude longitude range specified in the labels. |
maxY | Maximum y projection coordinate which covers the latitude longitude range specified in the labels. |
2011-07-02 Jeannie Backer - Moved this code from ObliqueCylindrical class to its own method here.
2012-11-30 Debbie A. Cook - Changed to use TProjection instead of Projection. References #775.
Definition at line 1210 of file TProjection.cpp.
References Isis::TProjection::doSearch(), Isis::Projection::HasGroundRange(), Isis::Projection::m_maximumX, Isis::Projection::m_maximumY, Isis::Projection::m_minimumX, Isis::Projection::m_minimumY, Isis::TProjection::m_specialLatCases, Isis::TProjection::m_specialLonCases, Isis::TProjection::MaximumLatitude(), Isis::TProjection::MaximumLongitude(), Isis::TProjection::MinimumLatitude(), Isis::TProjection::MinimumLongitude(), and Isis::Null.
Referenced by Isis::ObliqueCylindrical::XYRange().
|
inherited |
This returns the projection Y provided SetGround, SetCoordinate, SetUniversalGround, or SetWorld returned with success.
Success can also be checked using the IsGood method. The units of Y will be in the same units as the radii obtained from the label.
Definition at line 415 of file Projection.cpp.
References Isis::Projection::m_y.
Referenced by Isis::ProjectionFactory::CreateForCube(), Isis::ProcessExport::CreateWorldFile(), Isis::TProjection::findExtreme(), Isis::MosaicSceneItem::reproject(), Isis::ProjectionFactory::RingsCreateForCube(), Isis::RingPlaneProjection::SetCoordinate(), Isis::TProjection::SetCoordinate(), Isis::MosaicGridTool::setLatExtents(), Isis::SubArea::UpdateLabel(), Isis::AdvancedTrackTool::updateRow(), Isis::PointPerspective::XYRange(), Isis::LambertConformal::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), and Isis::TProjection::XYRangeCheck().
|
private |
The center latitude for the map projection.
Definition at line 107 of file Equirectangular.h.
Referenced by Equirectangular(), operator==(), and TrueScaleLatitude().
|
private |
The center longitude for the map projection.
Definition at line 106 of file Equirectangular.h.
Referenced by Equirectangular(), operator==(), SetCoordinate(), and SetGround().
|
private |
The radius of the target planet at the center latitude.
Definition at line 109 of file Equirectangular.h.
Referenced by Equirectangular(), SetCoordinate(), and SetGround().
|
private |
Cosine of the center latitude.
Definition at line 108 of file Equirectangular.h.
Referenced by Equirectangular(), SetCoordinate(), and SetGround().
|
protectedinherited |
The eccentricity of the target body.
Definition at line 368 of file TProjection.h.
Referenced by Isis::TProjection::Eccentricity(), Isis::TProjection::qCompute(), and Isis::TProjection::TProjection().
|
protectedinherited |
Polar radius of the target.
This is a unitless value so that if the radii are in inches then the m_x and m_y will be in inches. This value is set on construction. It is either read directly from the mapping group of the given PVL label or it is found in NAIF kernels by using the Target value in the given label. When pulled from NAIF kernels, the equatorial radius is the first value of NAIF's radii array.
Definition at line 351 of file TProjection.h.
Referenced by Isis::TProjection::EquatorialRadius(), Isis::LambertConformal::LambertConformal(), Isis::TProjection::LocalRadius(), Isis::PointPerspective::PointPerspective(), Isis::TProjection::Scale(), Isis::LunarAzimuthalEqualArea::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::PointPerspective::SetCoordinate(), Isis::Robinson::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::Mollweide::SetGround(), Isis::PointPerspective::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::ObliqueCylindrical::SetGround(), Isis::SimpleCylindrical::SetGround(), Isis::Sinusoidal::SetGround(), Isis::Orthographic::SetGround(), Isis::TProjection::ToPlanetocentric(), Isis::TProjection::ToPlanetographic(), Isis::TProjection::TProjection(), Isis::TransverseMercator::TransverseMercator(), Isis::PointPerspective::XYRange(), and Isis::Orthographic::XYRange().
|
protectedinherited |
Indicates if the contents of m_x, m_y, m_latitude, and m_longitude are valid.
Definition at line 316 of file Projection.h.
Referenced by Isis::TProjection::findExtreme(), Isis::Projection::IsGood(), Isis::Projection::Projection(), Isis::Projection::SetComputedXY(), Isis::RingCylindrical::SetCoordinate(), Isis::Planar::SetCoordinate(), Isis::PointPerspective::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::RingPlaneProjection::SetCoordinate(), Isis::TProjection::SetCoordinate(), Isis::RingCylindrical::SetGround(), Isis::Planar::SetGround(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::PointPerspective::SetGround(), Isis::Mollweide::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::ObliqueCylindrical::SetGround(), Isis::SimpleCylindrical::SetGround(), SetGround(), Isis::Sinusoidal::SetGround(), Isis::Orthographic::SetGround(), Isis::RingPlaneProjection::SetGround(), Isis::TProjection::SetGround(), Isis::Projection::SetUnboundUniversalGround(), Isis::TProjection::SetUnboundUniversalGround(), Isis::RingPlaneProjection::SetUniversalGround(), Isis::Projection::SetUniversalGround(), Isis::TProjection::SetUniversalGround(), Isis::Projection::SetXY(), Isis::LambertConformal::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), and Isis::TProjection::XYRangeCheck().
|
protectedinherited |
Indicates if the ground range (min/max lat/lons) were read from the labels.
Definition at line 329 of file Projection.h.
Referenced by Isis::Projection::HasGroundRange(), Isis::RingPlaneProjection::RingPlaneProjection(), Isis::TProjection::TProjection(), Isis::RingPlaneProjection::XYRange(), and Isis::TProjection::XYRange().
|
protectedinherited |
This contains the currently set latitude value.
The value is only usable if m_good is true.
Definition at line 332 of file TProjection.h.
Referenced by Isis::TProjection::Latitude(), Isis::TProjection::LocalRadius(), Isis::PointPerspective::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::Robinson::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::TProjection::SetCoordinate(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::Mollweide::SetGround(), Isis::PointPerspective::SetGround(), Isis::Robinson::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::ObliqueCylindrical::SetGround(), Isis::SimpleCylindrical::SetGround(), SetGround(), Isis::Sinusoidal::SetGround(), Isis::Orthographic::SetGround(), Isis::TProjection::SetGround(), Isis::TProjection::SetUnboundUniversalGround(), Isis::TProjection::SetUniversalGround(), Isis::TProjection::TProjection(), Isis::TProjection::UniversalLatitude(), Isis::LambertConformal::XYRange(), and Isis::Orthographic::XYRange().
|
protectedinherited |
An enumerated type indicating the LatitudeType read from the labels.
It can be either Planetographic or Planetocentric.
Definition at line 337 of file TProjection.h.
Referenced by Isis::TProjection::IsPlanetocentric(), Isis::TProjection::IsPlanetographic(), Isis::TProjection::LatitudeTypeString(), Isis::TProjection::SetUnboundUniversalGround(), Isis::TProjection::SetUniversalGround(), Isis::TProjection::TProjection(), and Isis::TProjection::UniversalLatitude().
|
protectedinherited |
This contains the currently set longitude value.
The value is only usable if m_good is true.
Definition at line 334 of file TProjection.h.
Referenced by Isis::TProjection::Longitude(), Isis::PointPerspective::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::Robinson::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::TProjection::SetCoordinate(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::Mollweide::SetGround(), Isis::PointPerspective::SetGround(), Isis::Robinson::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::ObliqueCylindrical::SetGround(), Isis::SimpleCylindrical::SetGround(), SetGround(), Isis::Sinusoidal::SetGround(), Isis::Orthographic::SetGround(), Isis::TProjection::SetGround(), Isis::TProjection::SetUnboundUniversalGround(), Isis::TProjection::SetUniversalGround(), Isis::TProjection::TProjection(), Isis::TProjection::UniversalLongitude(), Isis::LambertConformal::XYRange(), and Isis::Orthographic::XYRange().
|
protectedinherited |
An enumerated type indicating the LongitudeDirection read from the labels.
It can be either PositiveEast or PositiveWest. Indicating which direction the positive axis for longitude is.
Definition at line 340 of file TProjection.h.
Referenced by Equirectangular(), Isis::TProjection::IsPositiveEast(), Isis::TProjection::IsPositiveWest(), Isis::LambertConformal::LambertConformal(), Isis::TProjection::LongitudeDirectionString(), Isis::Mercator::Mercator(), Isis::Mollweide::Mollweide(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::Robinson::Robinson(), Isis::PointPerspective::SetCoordinate(), Isis::Mollweide::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::Mercator::SetCoordinate(), Isis::LambertConformal::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::ObliqueCylindrical::SetCoordinate(), Isis::SimpleCylindrical::SetCoordinate(), SetCoordinate(), Isis::Sinusoidal::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::LunarAzimuthalEqualArea::SetGround(), Isis::PointPerspective::SetGround(), Isis::Mollweide::SetGround(), Isis::Robinson::SetGround(), Isis::TransverseMercator::SetGround(), Isis::Mercator::SetGround(), Isis::LambertConformal::SetGround(), Isis::PolarStereographic::SetGround(), Isis::ObliqueCylindrical::SetGround(), Isis::SimpleCylindrical::SetGround(), SetGround(), Isis::Sinusoidal::SetGround(), Isis::Orthographic::SetGround(), Isis::TProjection::SetUnboundUniversalGround(), Isis::TProjection::SetUniversalGround(), Isis::SimpleCylindrical::SimpleCylindrical(), Isis::Sinusoidal::Sinusoidal(), Isis::TProjection::TProjection(), Isis::TransverseMercator::TransverseMercator(), Isis::TProjection::UniversalLongitude(), Isis::LambertConformal::XYRange(), and Isis::PolarStereographic::XYRange().
|
protectedinherited |
This integer is either 180 or 360 and is read from the labels.
It represents the longitude domain when returning values through Longitude method. The domain is either -180 to 180 or 0 to 360.
Definition at line 347 of file TProjection.h.
Referenced by Isis::TProjection::Has180Domain(), Isis::TProjection::Has360Domain(), Isis::TProjection::LongitudeDomainString(), Isis::PointPerspective::SetCoordinate(), Isis::TransverseMercator::SetCoordinate(), Isis::PolarStereographic::SetCoordinate(), Isis::Orthographic::SetCoordinate(), Isis::TProjection::SetUniversalGround(), and Isis::TProjection::TProjection().
|
protectedinherited |
This points to a mapper passed into the SetWorldMapper method.
This mapper allows the programmer to specify a different world coordinate system. Thus the programmer could pass in line/sample positions in order to obtain a latitude/longitude or set a lat/lon and get a line/sample.
Definition at line 308 of file Projection.h.
Referenced by Isis::Projection::Projection(), Isis::Projection::Resolution(), Isis::RingPlaneProjection::Scale(), Isis::TProjection::Scale(), Isis::Projection::SetWorld(), Isis::Projection::SetWorldMapper(), Isis::Projection::ToProjectionX(), Isis::Projection::ToProjectionY(), Isis::Projection::ToWorldX(), Isis::Projection::ToWorldY(), Isis::Projection::WorldX(), Isis::Projection::WorldY(), and Isis::Projection::~Projection().
|
protectedinherited |
Mapping group that created this projection.
Definition at line 345 of file Projection.h.
Referenced by Isis::LunarAzimuthalEqualArea::Mapping(), Isis::Mollweide::Mapping(), Isis::PointPerspective::Mapping(), Isis::Robinson::Mapping(), Isis::TransverseMercator::Mapping(), Isis::Mercator::Mapping(), Isis::LambertConformal::Mapping(), Isis::PolarStereographic::Mapping(), Isis::ObliqueCylindrical::Mapping(), Isis::SimpleCylindrical::Mapping(), Mapping(), Isis::Sinusoidal::Mapping(), Isis::Orthographic::Mapping(), Isis::RingPlaneProjection::Mapping(), Isis::TProjection::Mapping(), Isis::PointPerspective::MappingLatitudes(), Isis::TransverseMercator::MappingLatitudes(), Isis::Mercator::MappingLatitudes(), Isis::LambertConformal::MappingLatitudes(), Isis::PolarStereographic::MappingLatitudes(), MappingLatitudes(), Isis::Orthographic::MappingLatitudes(), Isis::TProjection::MappingLatitudes(), Isis::PointPerspective::MappingLongitudes(), Isis::Mollweide::MappingLongitudes(), Isis::Robinson::MappingLongitudes(), Isis::TransverseMercator::MappingLongitudes(), Isis::Mercator::MappingLongitudes(), Isis::LambertConformal::MappingLongitudes(), Isis::PolarStereographic::MappingLongitudes(), Isis::SimpleCylindrical::MappingLongitudes(), MappingLongitudes(), Isis::Sinusoidal::MappingLongitudes(), Isis::Orthographic::MappingLongitudes(), Isis::TProjection::MappingLongitudes(), Isis::RingCylindrical::MappingRingLongitudes(), Isis::Planar::MappingRingLongitudes(), Isis::RingPlaneProjection::MappingRingLongitudes(), Isis::RingCylindrical::MappingRingRadii(), Isis::Planar::MappingRingRadii(), Isis::RingPlaneProjection::MappingRingRadii(), Isis::Projection::Projection(), Isis::RingPlaneProjection::RingPlaneProjection(), Isis::Projection::SetUpperLeftCorner(), and Isis::TProjection::TProjection().
|
protectedinherited |
Contains the maximum latitude for the entire ground range.
Only usable if m_groundRangeGood is true.
Definition at line 372 of file TProjection.h.
Referenced by Equirectangular(), Isis::LambertConformal::LambertConformal(), Isis::TProjection::MaximumLatitude(), Isis::Mercator::Mercator(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::TProjection::TProjection(), Isis::TransverseMercator::TransverseMercator(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), and Isis::TProjection::XYRange().
|
protectedinherited |
Contains the maximum longitude for the entire ground range.
Only usable if m_groundRangeGood is true.
Definition at line 376 of file TProjection.h.
Referenced by Equirectangular(), Isis::LambertConformal::LambertConformal(), Isis::TProjection::MaximumLongitude(), Isis::Mercator::Mercator(), Isis::Mollweide::Mollweide(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::Robinson::Robinson(), Isis::SimpleCylindrical::SimpleCylindrical(), Isis::Sinusoidal::Sinusoidal(), Isis::TProjection::TProjection(), Isis::TransverseMercator::TransverseMercator(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), and Isis::TProjection::XYRange().
|
protectedinherited |
See minimumX description.
Definition at line 342 of file Projection.h.
Referenced by Isis::Projection::Projection(), Isis::RingCylindrical::XYRange(), Isis::Planar::XYRange(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), Isis::TProjection::XYRangeCheck(), and Isis::TProjection::xyRangeOblique().
|
protectedinherited |
See minimumX description.
Definition at line 344 of file Projection.h.
Referenced by Isis::Projection::Projection(), Isis::RingCylindrical::XYRange(), Isis::Planar::XYRange(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), Isis::TProjection::XYRangeCheck(), and Isis::TProjection::xyRangeOblique().
|
protectedinherited |
Contains the minimum latitude for the entire ground range.
Only usable if m_groundRangeGood is true.
Definition at line 370 of file TProjection.h.
Referenced by Equirectangular(), Isis::LambertConformal::LambertConformal(), Isis::Mercator::Mercator(), Isis::TProjection::MinimumLatitude(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::TProjection::TProjection(), Isis::TransverseMercator::TransverseMercator(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), and Isis::TProjection::XYRange().
|
protectedinherited |
Contains the minimum longitude for the entire ground range.
Only usable if m_groundRangeGood is true.
Definition at line 374 of file TProjection.h.
Referenced by Equirectangular(), Isis::LambertConformal::LambertConformal(), Isis::Mercator::Mercator(), Isis::TProjection::MinimumLongitude(), Isis::Mollweide::Mollweide(), Isis::Orthographic::Orthographic(), Isis::PointPerspective::PointPerspective(), Isis::PolarStereographic::PolarStereographic(), Isis::Robinson::Robinson(), Isis::SimpleCylindrical::SimpleCylindrical(), Isis::Sinusoidal::Sinusoidal(), Isis::TProjection::TProjection(), Isis::TransverseMercator::TransverseMercator(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), and Isis::TProjection::XYRange().
|
protectedinherited |
The data elements m_minimumX, m_minimumY, m_maximumX, and m_maximumY are convience data elements when you write the XYRange virtual function.
They are used in conjuction with the XYRangeCheck convience method. After utilizing XYRangeCheck to test boundary conditions in the XYRange method these values will contain the projection x/y coverage for the ground range specified by min/max lat/lon.
Definition at line 333 of file Projection.h.
Referenced by Isis::Projection::Projection(), Isis::RingCylindrical::XYRange(), Isis::Planar::XYRange(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), Isis::TProjection::XYRangeCheck(), and Isis::TProjection::xyRangeOblique().
|
protectedinherited |
See minimumX description.
Definition at line 343 of file Projection.h.
Referenced by Isis::Projection::Projection(), Isis::RingCylindrical::XYRange(), Isis::Planar::XYRange(), Isis::LunarAzimuthalEqualArea::XYRange(), Isis::Mollweide::XYRange(), Isis::Robinson::XYRange(), Isis::TransverseMercator::XYRange(), Isis::Mercator::XYRange(), Isis::LambertConformal::XYRange(), Isis::PolarStereographic::XYRange(), Isis::SimpleCylindrical::XYRange(), XYRange(), Isis::Sinusoidal::XYRange(), Isis::Orthographic::XYRange(), Isis::RingPlaneProjection::XYRangeCheck(), Isis::TProjection::XYRangeCheck(), and Isis::TProjection::xyRangeOblique().
|
protectedinherited |
Polar radius of the target.
This is a unitless value so that if the radii are in inches then the m_x and m_y will be in inches. Of course the units must be the same as the equatorial radius. This value is set on construction. It is either read directly from the mapping group of the given PVL label or it is found in NAIF kernels by using the Target value in the given label.When pulled from NAIF kernels, the equatorial radius is the third value of NAIF's radii array.
Definition at line 358 of file TProjection.h.
Referenced by Isis::TProjection::LocalRadius(), Isis::TProjection::PolarRadius(), Isis::TProjection::Scale(), Isis::TProjection::ToPlanetocentric(), Isis::TProjection::ToPlanetographic(), and Isis::TProjection::TProjection().
|
protectedinherited |
Indicates whether projection is sky or land.
Definition at line 326 of file Projection.h.
Referenced by Isis::Projection::IsSky(), and Isis::Projection::Projection().