Class TLcdOrthorectifiedProjection
- All Implemented Interfaces:
ILcdProjection
,ILcdPropertyChangeSource
,Serializable
,Cloneable
Introduction
A projection that corrects the image distortions introduced by terrain elevation. It requires
information about the position and orientation of the imaging sensor, as well as information
about the terrain. Sensor information must be provided in the form of a camera projection -
normally a TLcdPerspectiveProjection
, while terrain information is provided by a
ILcdHeightProvider
.
By default this projection behaves as a corrected version of the camera projection itself, but it can also be used as a corrected version of a different projection, called "wrapped" projection.
Sample code
TLcdLonLatHeightPoint perspective_geodetic = new TLcdLonLatHeightPoint(10,10, 20000);
TLcdLonLatHeightPoint principal_geodetic = new TLcdLonLatHeightPoint(11,11, 0);
TLcdXYZPoint perspective_geocentric = new TLcdXYZPoint();
TLcdXYZPoint principal_geocentric = new TLcdXYZPoint();
TLcdEllipsoid.DEFAULT.llh2geocSFCT( perspective_geodetic, perspective_geocentric );
TLcdEllipsoid.DEFAULT.llh2geocSFCT( principal_geodetic, principal_geocentric );
double roll_angle = 30;
ILcdProjection camera_projection = new TLcdPerspectiveProjection(perspective_geocentric,
principal_geocentric,
roll_angle);
ILcdProjection wrapped_projection = new TLcdEquidistantCylindrical();
ILcdBounds bounds = new TLcdXYBounds(-1000,-1000,2000,2000);
ILcdHeightProvider height_provider = new TLcdFixedHeightProvider(100, bounds);
ILcdProjection projection = new TLcdOrthorectifiedProjection(camera_projection,
wrapped_projection,
height_provider);
Known limitations
- The current implementation cannot handle shadowed areas - low elevation terrain whose visibility is obstructed by nearby high elevation terrain. Shadowed areas result in local mapping artifacts.
-
The projection cannot be successfully stored and restored from a
Properties
object because the actual mapping is determined by the terrain elevation. Attempting to store and load back the projection properties will discard all the height information. - The height provider must have a geodetic reference system based on the same datum as the
points passed to the
lonlat2world
methods.
- Since:
- 9.1
- See Also:
-
Field Summary
Fields inherited from class com.luciad.projection.ALcdProjection
fPropertyChangeDispatcher
Fields inherited from interface com.luciad.projection.ILcdProjection
EPSILON
-
Constructor Summary
ConstructorDescriptionConstructs an orthorectified projection.TLcdOrthorectifiedProjection
(ILcdProjection aCameraProjection, ILcdProjection aWrappedProjection, ILcdHeightProvider aHeightProvider) Constructs an orthorectified version of an existing projection.TLcdOrthorectifiedProjection
(ILcdProjection aCameraProjection, ILcdHeightProvider aHeightProvider) Constructs an orthorectified projection based on a camera projection (normally aTLcdPerspectiveProjection
) and a height provider. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addPropertyChangeListener
(PropertyChangeListener aPropertyChangeListener) Registers the givenPropertyChangeListener
to be notified when this object's properties change.double[][]
boundaryLats
(double aLongitude) Default implementation.double[][]
boundaryLons
(double aLatitude) Default implementation.clone()
Makes a deep clone of thisILcdProjection
.boolean
Checks if thisILcdProjection
equals some other Object.Returns the camera projection.Returns the height provider.Origin of the projection is theILcd2DEditablePoint
that corresponds with origin (0, 0) of the cartesian coordinate system of the projection.Returns the wrapped projection.boolean
inLonLatBounds
(ILcdPoint aLLHP) Checks if anILcdPoint
is inside the valid area of geodetic coordinates of the projection.boolean
inWorldBoundsOnEllipsoid
(ILcdPoint aXYPoint, ILcdEllipsoid aEllipsoid) Default implementation callsinWorldBoundsOnSphere
withaEllipsoid.getAuxRadius()
as sphere radius.boolean
inWorldBoundsOnSphere
(ILcdPoint aXYPoint, double aRadius) Checks if aILcdPoint
is inside the valid cartesian area of the projection.boolean
If all geodetic coordinates (l ,j ) are projected (visible) by anILcdProjection
and all (x,y ) coordinates are bounded this istrue
.boolean
AnILcdProjection
is continuous if there are no interruptions in the world coordinates.void
loadProperties
(String aPrefix, Properties aProperties) The properties of anILcdProjection
determine the projection parameters that determine the plane, cylinder or cone on which the projection is done.void
lonlatheight2worldOnEllipsoidSFCT
(ILcdPoint aLLHP, ILcdEllipsoid aEllipsoid, ILcd2DEditablePoint aXYPointSFCT) Default implementation callslonlatheight2worldOnEllipsoidSFCT
withaEllipsoid.getAuxRadius()
as sphere radius.void
lonlatheight2worldOnSphereSFCT
(ILcdPoint aLLHP, double aRadius, ILcd2DEditablePoint aXYPointSFCT) Transforms anILcd2DEditablePoint
on a sphere into the cartesian coordinate system of the projection.void
removePropertyChangeListener
(PropertyChangeListener aPropertyChangeListener) De-registers the givenPropertyChangeListener
from receiving property change events for this object.void
setCameraProjection
(ILcdProjection aCameraProjection) Sets the camera projection.void
setHeightProvider
(ILcdHeightProvider aHeightProvider) Sets the height provider.void
setWrappedProjection
(ILcdProjection aWrappedProjection) Sets the wrapped projection.void
world2DEditableBoundsOnEllipsoidSFCT
(ILcdEllipsoid aEllipsoid, ILcd2DEditableBounds aWorldBounds) Default implementation callsworld2lonlatOnSphereSFCT
withaEllipsoid.getAuxRadius()
as sphere radius.void
world2DEditableBoundsOnSphereSFCT
(double aRadius, ILcd2DEditableBounds aWorldBounds) Sets theILcd2DEditableBounds
object to the bounds of the projection in world coordinates.void
world2lonlatOnEllipsoidSFCT
(ILcdPoint aXYPoint, ILcdEllipsoid aEllipsoid, ILcd2DEditablePoint aLLPointSFCT) Default implementation callsworld2lonlatOnSphereSFCT
withaEllipsoid.getAuxRadius()
as sphere radius.void
world2lonlatOnSphereSFCT
(ILcdPoint aXYPoint, double aRadius, ILcd2DEditablePoint aLLPointSFCT) Transforms anILcdPoint
from the cartesian coordinate system of the projection into anILcd2DEditablePoint
onto a sphere.void
writePropertiesSFCT
(String aPrefix, Properties aPropertiesSFCT) The properties of anILcdProjection
determine the projection parameters that determine the plane, cylinder or cone on which the projection is done.Methods inherited from class com.luciad.projection.ALcdProjection
firePropertyChangeEvent
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.luciad.projection.ILcdProjection
toString
-
Constructor Details
-
TLcdOrthorectifiedProjection
public TLcdOrthorectifiedProjection()Constructs an orthorectified projection. The object should be initialized by calling theloadProperties(java.lang.String, java.util.Properties)
method. -
TLcdOrthorectifiedProjection
public TLcdOrthorectifiedProjection(ILcdProjection aCameraProjection, ILcdHeightProvider aHeightProvider) Constructs an orthorectified projection based on a camera projection (normally aTLcdPerspectiveProjection
) and a height provider. The height provider must have a geodetic reference system based on the same datum as the points passed to thelonlat2world
methods.- Parameters:
aCameraProjection
- projection corresponding to the imaging sensor.aHeightProvider
- a terrain height provider.
-
TLcdOrthorectifiedProjection
public TLcdOrthorectifiedProjection(ILcdProjection aCameraProjection, ILcdProjection aWrappedProjection, ILcdHeightProvider aHeightProvider) Constructs an orthorectified version of an existing projection. The height provider must have a geodetic reference system based on the same datum as the points passed to thelonlat2world
methods.- Parameters:
aCameraProjection
- projection corresponding to the imaging sensor parameters.aWrappedProjection
- the projection to be corrected.aHeightProvider
- a terrain height provider.
-
-
Method Details
-
getCameraProjection
Returns the camera projection.- Returns:
- the camera projection.
- See Also:
-
setCameraProjection
Sets the camera projection.- Parameters:
aCameraProjection
- the camera projection.- See Also:
-
getWrappedProjection
Returns the wrapped projection. If a wrapped projection is set, this object behaves as a corrected version of the wrapped projection. If the wrapped projection is null, this object behaves as a corrected version of the camera projection itself.- Returns:
- the wrapped projection.
- See Also:
-
setWrappedProjection
Sets the wrapped projection. If a wrapped projection is set, this object behaves as a corrected version of the wrapped projection. If the wrapped projection is null, this object behaves as a corrected version of the camera projection itself.- Parameters:
aWrappedProjection
- the wrapped projection.- See Also:
-
getHeightProvider
Returns the height provider.- Returns:
- the height provider.
- See Also:
-
setHeightProvider
Sets the height provider. The height provider must have a geodetic reference system based on the same datum as the points passed to thelonlat2world
methods.- Parameters:
aHeightProvider
- the height provider.- See Also:
-
lonlatheight2worldOnSphereSFCT
public void lonlatheight2worldOnSphereSFCT(ILcdPoint aLLHP, double aRadius, ILcd2DEditablePoint aXYPointSFCT) throws TLcdOutOfBoundsException Description copied from interface:ILcdProjection
Transforms anILcd2DEditablePoint
on a sphere into the cartesian coordinate system of the projection.- Parameters:
aLLHP
- point to be projected.aRadius
- radius of the sphere (meters).aXYPointSFCT
- projected point as side effect.- Throws:
TLcdOutOfBoundsException
- If theILcdPoint
aLLHP
is not within the valid area of the projection (visible area), then this exception is thrown.
-
lonlatheight2worldOnEllipsoidSFCT
public void lonlatheight2worldOnEllipsoidSFCT(ILcdPoint aLLHP, ILcdEllipsoid aEllipsoid, ILcd2DEditablePoint aXYPointSFCT) throws TLcdOutOfBoundsException Description copied from class:ALcdProjection
Default implementation callslonlatheight2worldOnEllipsoidSFCT
withaEllipsoid.getAuxRadius()
as sphere radius.- Specified by:
lonlatheight2worldOnEllipsoidSFCT
in interfaceILcdProjection
- Overrides:
lonlatheight2worldOnEllipsoidSFCT
in classALcdProjection
- Parameters:
aLLHP
- point to be projected.aEllipsoid
- ellipsoid on which the point is defined.aXYPointSFCT
- projected point as side effect.- Throws:
TLcdOutOfBoundsException
- If theILcdPoint
aLLHP
is not within the valid area of the projection (visible area), then this exception is thrown.
-
world2lonlatOnSphereSFCT
public void world2lonlatOnSphereSFCT(ILcdPoint aXYPoint, double aRadius, ILcd2DEditablePoint aLLPointSFCT) throws TLcdOutOfBoundsException Description copied from interface:ILcdProjection
Transforms anILcdPoint
from the cartesian coordinate system of the projection into anILcd2DEditablePoint
onto a sphere.- Parameters:
aXYPoint
- projected point for which the corresponding geodetic point is sought.aRadius
- radius of the sphere (meters).aLLPointSFCT
- resulting geodetic coordinate as side effect.- Throws:
TLcdOutOfBoundsException
- If theILcdPoint
aXYPoint
is not within the valid area of the projection (visible area), then this exception is thrown.
-
world2lonlatOnEllipsoidSFCT
public void world2lonlatOnEllipsoidSFCT(ILcdPoint aXYPoint, ILcdEllipsoid aEllipsoid, ILcd2DEditablePoint aLLPointSFCT) throws TLcdOutOfBoundsException Description copied from class:ALcdProjection
Default implementation callsworld2lonlatOnSphereSFCT
withaEllipsoid.getAuxRadius()
as sphere radius.- Specified by:
world2lonlatOnEllipsoidSFCT
in interfaceILcdProjection
- Overrides:
world2lonlatOnEllipsoidSFCT
in classALcdProjection
- Parameters:
aXYPoint
- projected point for which the corresponding geodetic point is sought.aEllipsoid
- ellipsoid on which the geodetic coordinate is defined.aLLPointSFCT
- resulting geodetic coordinate as side effect.- Throws:
TLcdOutOfBoundsException
- If theILcdPoint
aXYPoint
is not within the valid area of the projection (visible area), then this exception is thrown.
-
loadProperties
Description copied from interface:ILcdProjection
The properties of anILcdProjection
determine the projection parameters that determine the plane, cylinder or cone on which the projection is done. The properties of anILcdProjection
are of course dependent on the projection. A common property for allILcdprojection
objects is the origin of the projection. Other, more specific, properties are standard parallels, azimuthal direction, perspective distance, ... .- Parameters:
aPrefix
- prefix for property names.aProperties
- Properties object containing the serialized projection.
-
writePropertiesSFCT
Description copied from interface:ILcdProjection
The properties of anILcdProjection
determine the projection parameters that determine the plane, cylinder or cone on which the projection is done. The properties of anILcdProjection
are of course dependent on the projection. A common property for allILcdprojection
objects is the origin of the projection. Other, more specific, properties are standard parallels, azimuthal direction, perspective distance, ... .- Parameters:
aPrefix
- prefix for property names.aPropertiesSFCT
- Properties object in which to store the serialized projection properties as side effect.
-
addPropertyChangeListener
Description copied from interface:ILcdPropertyChangeSource
Registers the given
PropertyChangeListener
to be notified when this object's properties change.In case you need to register a listener which keeps a reference to an object with a shorter life-time than this change source, you can use a
ALcdWeakPropertyChangeListener
instance as property change listener.- Specified by:
addPropertyChangeListener
in interfaceILcdPropertyChangeSource
- Overrides:
addPropertyChangeListener
in classALcdProjection
- Parameters:
aPropertyChangeListener
- The listener to be notified- See Also:
-
removePropertyChangeListener
Description copied from interface:ILcdPropertyChangeSource
De-registers the given
PropertyChangeListener
from receiving property change events for this object.If the listener was added more than once, it will be notified one less time after being removed. If the listener is
null
, or was never added, no exception is thrown and no action is taken.- Specified by:
removePropertyChangeListener
in interfaceILcdPropertyChangeSource
- Overrides:
removePropertyChangeListener
in classALcdProjection
- Parameters:
aPropertyChangeListener
- the listener that should no longer be notified of changes of this object's properties- See Also:
-
isAllInBounds
public boolean isAllInBounds()Description copied from interface:ILcdProjection
If all geodetic coordinates (l ,j ) are projected (visible) by anILcdProjection
and all (x,y ) coordinates are bounded this istrue
. AllILcdProjection
objects have bounded (x,y ) coordinates because the projection is cut off if necessary.- Returns:
true
if all LonLatPoints are within the bounds of the projection,false
otherwise.
-
isContinuous
public boolean isContinuous()Description copied from interface:ILcdProjection
AnILcdProjection
is continuous if there are no interruptions in the world coordinates. Most projections are continuous.- Returns:
true
if the projection is continuous,false
otherwise.
-
getOrigin
Description copied from interface:ILcdProjection
Origin of the projection is theILcd2DEditablePoint
that corresponds with origin (0, 0) of the cartesian coordinate system of the projection.- Returns:
- the origin of the projection.
-
inLonLatBounds
Description copied from interface:ILcdProjection
Checks if anILcdPoint
is inside the valid area of geodetic coordinates of the projection. The valid area is determined by the LonLatPoints that are visible and for which the corresponding cartesian coordinate is within the boundaries.- Parameters:
aLLHP
-ILcdPoint
to be checked upon.- Returns:
true
if valid,false
if invalid.
-
inWorldBoundsOnSphere
Description copied from interface:ILcdProjection
Checks if aILcdPoint
is inside the valid cartesian area of the projection. The valid cartesian area is determined naturally by the projection bounds or by an artificial introduced boundary limit because some cartesian points are at infinity. The shape of the valid cartesian area is in many cases rectangular or circular although it might be more complex.- Parameters:
aXYPoint
- point to be checked upon.aRadius
- radius of the sphere.- Returns:
true
if valid,false
if invalid.
-
inWorldBoundsOnEllipsoid
Description copied from class:ALcdProjection
Default implementation callsinWorldBoundsOnSphere
withaEllipsoid.getAuxRadius()
as sphere radius.- Specified by:
inWorldBoundsOnEllipsoid
in interfaceILcdProjection
- Overrides:
inWorldBoundsOnEllipsoid
in classALcdProjection
- Parameters:
aXYPoint
- point to be checked upon.aEllipsoid
- ellipsoid on which the geodetic coordinate is defined.- Returns:
true
if valid,false
if invalid.- See Also:
-
world2DEditableBoundsOnSphereSFCT
Description copied from interface:ILcdProjection
Sets theILcd2DEditableBounds
object to the bounds of the projection in world coordinates.- Parameters:
aRadius
- radius of the sphere.aWorldBounds
- the bounds of the projection in world coordinates as side effect.
-
world2DEditableBoundsOnEllipsoidSFCT
public void world2DEditableBoundsOnEllipsoidSFCT(ILcdEllipsoid aEllipsoid, ILcd2DEditableBounds aWorldBounds) Description copied from class:ALcdProjection
Default implementation callsworld2lonlatOnSphereSFCT
withaEllipsoid.getAuxRadius()
as sphere radius.- Specified by:
world2DEditableBoundsOnEllipsoidSFCT
in interfaceILcdProjection
- Overrides:
world2DEditableBoundsOnEllipsoidSFCT
in classALcdProjection
- Parameters:
aEllipsoid
- ellipsoid considered.aWorldBounds
- the bounds of the projection in world coordinates as side effect.
-
boundaryLons
public double[][] boundaryLons(double aLatitude) Description copied from class:ALcdProjection
Default implementation. To be redefined for specific projections.- Specified by:
boundaryLons
in interfaceILcdProjection
- Overrides:
boundaryLons
in classALcdProjection
- Parameters:
aLatitude
- latitude in decimal degrees and -90.0 <=aLat
<= 90.0.- Returns:
- the array of pairs of longitudes[0] and longitudes[1], where the closed interval longitudes[0] -> longitudes[1] is in visible area and -180.0 <= lon[i] <= 180.0.
-
boundaryLats
public double[][] boundaryLats(double aLongitude) Description copied from class:ALcdProjection
Default implementation. To be redefined for specific projections.- Specified by:
boundaryLats
in interfaceILcdProjection
- Overrides:
boundaryLats
in classALcdProjection
- Parameters:
aLongitude
- longitude in decimal degrees -180.0 <= lon <= 180.0 .- Returns:
- the array of pairs of latitudes lats[0] and lats[1], where the closed interval lats[0] -> lats[1] is in visible area and -90.0 <= lats[i] <= 90.0 .
-
clone
Description copied from interface:ILcdProjection
Makes a deep clone of thisILcdProjection
.- Specified by:
clone
in interfaceILcdProjection
- Overrides:
clone
in classALcdProjection
- Returns:
- deep clone of this
ILcdProjection
.
-
equals
Description copied from interface:ILcdProjection
Checks if thisILcdProjection
equals some other Object.- Specified by:
equals
in interfaceILcdProjection
- Overrides:
equals
in classObject
- Parameters:
aProjection
- Object to compare with.- Returns:
- true if the Object is an instance of the same
ILcdProjection
class and having the same projection properties, false otherwise.
-