Rogue Wave Views 5.5.1 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
This class defines the Lambert Conformal Conic projection. More...
#include <ilviews/maps/projection/lconfcon.h>
Public Member Functions | |
IlvLambertConformalConicProjection (IlDouble l1=IlvMaps::DegreeToRadian(33.), IlDouble l2=IlvMaps::DegreeToRadian(45.)) | |
Initializes an instance of the class IlvLambertConformalConicProjection and sets its secant latitudes to the specified values.. | |
virtual IlvProjection * | copy () const |
Returns a copy of the projection. It must be overridden in each subclass. | |
virtual IlvProjectionClassInfo * | getClassInfo () const |
Returns the class information for the projection. | |
IlDouble | getScaleFactor () const |
Returns the scale factor applied to the projected data. | |
virtual IlvMapsError | setEllipsoid (const IlvEllipsoid &ellipsoid) |
Sets the ellipsoid used for the projection. | |
virtual void | setLLCenter (IlDouble lon, IlDouble lat) |
Specifies the central meridian and the central parallel (in radian) associated with the projection. | |
void | setScaleFactor (IlDouble k0) |
Sets the scale factor applied to the projected data. | |
virtual IlvMapsError | setSecantLatitudes (const IlvCoordinate &secant) |
Sets the latitudes at which the cone of the projection intersects with the earth. | |
virtual void | write (IlvOutputFile &) const |
Saves the parameters of a projection to the specified output file. | |
Static Public Member Functions | |
static IlvProjectionClassInfo * | ClassInfo () |
Returns the class information of the class. | |
static IlvClassInfo ** | ClassInfoRef () |
Returns the address of the class information of the class. | |
Protected Member Functions | |
virtual IlvMapsError | eForward (IlvCoordinate &ll) const |
Must be redefined in subclasses to implement the projection for a non spherical ellipsoid. | |
virtual IlvMapsError | eInverse (IlvCoordinate &xy) const |
Implements the inverse projection for a non spherical ellipsoid. | |
virtual IlvMapsError | sForward (IlvCoordinate &ll) const |
Must be redefined in subclasses to implement the projection for a sphere. | |
virtual IlvMapsError | sInverse (IlvCoordinate &xy) const |
Must be redefined in subclasses to implement the inverse projection for a sphere. |
This class defines the Lambert Conformal Conic projection.
A conic projection transfers the image of the globe to a cone either secant or tangent to the surface of the earth.
The limiting forms of this type of projection are Polar Stereographic and Mercator.
This projection applies both to spherical and non-spherical ellipsoids and implements an inverse function.
This projection is Conformal.
Library: ilvmaps
static IlvProjectionClassInfo* IlvLambertConformalConicProjection::ClassInfo | ( | ) | [static] |
Returns the class information of the class.
This static function is also available for the subclasses of IlvProjection
.
IlvProjectionClassInfo
of the class. Reimplemented from IlvConicProjection.
Reimplemented in IlvFrenchLambertProjection.
static IlvClassInfo** IlvLambertConformalConicProjection::ClassInfoRef | ( | ) | [static] |
Returns the address of the class information of the class.
This static function is also available for the subclasses of IlvProjection
.
IlvProjectionClassInfo
of the class. Reimplemented from IlvConicProjection.
Reimplemented in IlvFrenchLambertProjection.
virtual IlvProjection* IlvLambertConformalConicProjection::copy | ( | ) | const [virtual] |
Returns a copy of the projection. It must be overridden in each subclass.
Implements IlvProjection.
Reimplemented in IlvFrenchLambertProjection.
virtual IlvMapsError IlvLambertConformalConicProjection::eForward | ( | IlvCoordinate & | ll | ) | const [protected, virtual] |
Must be redefined in subclasses to implement the projection for a non spherical ellipsoid.
The default implementation returns IlvProjection::UnsupportedFeatureError()
.
ll | Contains the longitude and latitude coordinates in radian (x = longitude, y = latitude). |
Reimplemented from IlvProjection.
virtual IlvMapsError IlvLambertConformalConicProjection::eInverse | ( | IlvCoordinate & | xy | ) | const [protected, virtual] |
Implements the inverse projection for a non spherical ellipsoid.
The default implementation returns IlvProjection::UnsupportedFeatureError()
.
xy | Contains the Cartesian coordinates to inverse. |
Reimplemented from IlvProjection.
virtual IlvProjectionClassInfo* IlvLambertConformalConicProjection::getClassInfo | ( | ) | const [virtual] |
Returns the class information for the projection.
Reimplemented from IlvConicProjection.
Reimplemented in IlvFrenchLambertProjection.
IlDouble IlvLambertConformalConicProjection::getScaleFactor | ( | ) | const |
Returns the scale factor applied to the projected data.
virtual IlvMapsError IlvLambertConformalConicProjection::setEllipsoid | ( | const IlvEllipsoid & | ellipsoid | ) | [virtual] |
Sets the ellipsoid used for the projection.
This virtual member function sets the ellipsoid used for the projection. Most of the projections are initialized with a spherical ellipsoid with a radius of 6,370,997 meters.
This function returns IlvMaps::NoError()
if the operation is successful or an error status if you specify a non spherical ellipsoid and your type does not support non spherical.
ellipsoid | The ellipsoid used for the projection. |
IlvMapsError
if the ellipsoid does not match the projection. Reimplemented from IlvProjection.
virtual void IlvLambertConformalConicProjection::setLLCenter | ( | IlDouble | lon, | |
IlDouble | lat | |||
) | [virtual] |
Specifies the central meridian and the central parallel (in radian) associated with the projection.
By default, theses values are set to 0
. This function is virtual because it can be overridden by subclasses of IlvProjection
to update the internal parameters when the center is changed.
lon | The central meridian in radian. | |
lat | The central parallel in radian. |
Reimplemented from IlvProjection.
Reimplemented in IlvFrenchLambertProjection.
void IlvLambertConformalConicProjection::setScaleFactor | ( | IlDouble | k0 | ) |
Sets the scale factor applied to the projected data.
By default, the scale factor is 1.
k0 | The scale factor applied to the projected data. |
Reimplemented in IlvFrenchLambertProjection.
virtual IlvMapsError IlvLambertConformalConicProjection::setSecantLatitudes | ( | const IlvCoordinate & | secant | ) | [virtual] |
Sets the latitudes at which the cone of the projection intersects with the earth.
secant | A vector that contains two values: secant.x represents the first latitude at which the cone intersects with the earth. secant.y represents the second latitude at which the cone intersects with the earth. Both values are expressed in radian. |
Reimplemented from IlvConicProjection.
Reimplemented in IlvFrenchLambertProjection.
virtual IlvMapsError IlvLambertConformalConicProjection::sForward | ( | IlvCoordinate & | ll | ) | const [protected, virtual] |
Must be redefined in subclasses to implement the projection for a sphere.
ll | Contains the longitude and latitude coordinates in radian (x = longitude, y = latitude). |
Implements IlvProjection.
virtual IlvMapsError IlvLambertConformalConicProjection::sInverse | ( | IlvCoordinate & | xy | ) | const [protected, virtual] |
Must be redefined in subclasses to implement the inverse projection for a sphere.
The default implementation returns IlvProjection::UnsupportedFeatureError()
.
xy | Contains the Cartesian coordinates to inverse. |
Reimplemented from IlvProjection.
virtual void IlvLambertConformalConicProjection::write | ( | IlvOutputFile & | outputFile | ) | const [virtual] |
Saves the parameters of a projection to the specified output file.
It must be overridden by subclasses of IlvProjection
that need to save additional parameters. This function should not be directly called; use the save function instead.
outputFile | The file to write the projection parameters to. |
Reimplemented from IlvConicProjection.
Reimplemented in IlvFrenchLambertProjection.
© Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.