Class TLcdLonLatHeightBuffer
- All Implemented Interfaces:
ILcdBounded,ILcdPointList,ILcdShape,ILcd2DEditablePointList,ILcd2DEditableShape,ILcd3DEditablePointList,ILcd3DEditableShape,ILcdCache,ILcdCloneable,Serializable,Cloneable
- The buffer's
widthis from the axis to the edge of the buffer on both sides, so the buffer is 2 * width wide. - The buffer's
heightis from the bottom to the top of the buffer, half of the height above the axis, half beneath.
All longitude/latitude coordinates are expressed in degrees. Lengths are expressed in meters.
For efficiency reasons the current implementation works
with a spherical approximation where the radius of the sphere
is the major axis of the ellipsoid. If no ellipsoid is specified
at the construction of the TLcdLonLatHeightBuffer object
the default ellipsoid is used.
This class is thread-safe for concurrent read-only access of its contents. For read-write access, external locking must be used. Such locking is typically done at the model level.
For a more flexible 3D buffer, see TLcdLonLatHeightVariableGeoBuffer.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newTLcdLonLatHeightBuffer, without points, with a default width of 300km and height of 100mTLcdLonLatHeightBuffer(ILcd3DEditablePoint[] aAxisPointArray, double aWidth, double aHeight) Creates a newTLcdLonLatHeightBufferwith the specified parameters.TLcdLonLatHeightBuffer(ILcd3DEditablePoint[] aAxisPointArray, double aWidth, double aHeight, ILcdEllipsoid aEllipsoid) Creates a newTLcdLonLatHeightBufferwith the specified parameters.TLcdLonLatHeightBuffer(ILcd3DEditablePointList aAxisPointList, double aWidth, double aHeight) Creates a newTLcdLonLatHeightBufferwith the specified parameters.TLcdLonLatHeightBuffer(ILcd3DEditablePointList aAxisPointList, double aWidth, double aHeight, ILcdEllipsoid aEllipsoid) Creates a newTLcdLonLatHeightBufferwith the specified parameters.TLcdLonLatHeightBuffer(TLcdLonLatHeightBuffer aLonLatHeightBuffer) Copy constructor.TLcdLonLatHeightBuffer(TLcdLonLatHeightPolyline aAxisPolyline, double aWidth, double aHeight) Creates a newTLcdLonLatHeightBufferwith the specified parameters.TLcdLonLatHeightBuffer(TLcdLonLatHeightPolyline aAxisPolyline, double aWidth, double aHeight, ILcdEllipsoid aEllipsoid) Creates a newTLcdLonLatHeightBufferwith the specified parameters. -
Method Summary
Modifier and TypeMethodDescriptionvoidClears the cache.clone()Creates and returns a copy of this object.booleancontains2D(double x, double y) Checks whether thisILcdShapecontains the given point in the 2D space.booleancontains2D(ILcdPoint aPoint) Checks whether thisALcdShapecontains the given point in the 2D cartesian plane.booleancontains3D(double aX, double aY, double aZ) Provides an approximate default implementation of the 3D containment test based on the 2D containment test.booleancontains3D(ILcdPoint aPoint) Checks whether thisALcdShapecontains the given point in the 3D space.booleanReturns whether the given object has the same class and the same coordinates and parameters.final ILcdPolylineReturns theILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.getCachedObject(Object aKey) Looks up and returns the cached Object corresponding to the given key.Returns the focus point of thisILcdShape.doubleReturns the height of the buffer.getPoint(int aIndex) Returns theILcdPointat a given index.intReturns the number ofILcdPointobjects in the list.doublegetWidth()Returns the distance from the axis to the buffer edge.inthashCode()The hash code of this shape is the hash code of its class, in order to be consistent with theALcdShape.equals(Object)method.voidinsert2DPoint(int aIndex, double aX, double aY) Inserts a point at the given index into thisILcd2DEditablePointList.voidinsert3DPoint(int aIndex, double aX, double aY, double aZ) Inserts a point at the given index into thisILcd3DEditablePointList.voidinsertIntoCache(Object aKey, Object aObject) Inserts a cache Object corresponding to the given key Object.voidmove2D(double aX, double aY) Translates this shape so that its focus point ends up at the specified position.voidmove2DPoint(int aIndex, double aX, double aY) Moves the specified point of thisILcd2DEditablePointListto the given point in the 2D space.voidmove3DPoint(int aIndex, double aX, double aY, double aZ) Moves the specified point of thisILcd3DEditablePointListto the given point in the 3D space.removeCachedObject(Object aKey) Looks up and removes the cached Object corresponding to the given key.voidremovePointAt(int aIndex) Removes the point at the given index from thisILcd3DEditablePointList.voidsetHeight(double aHeight) Set the height of this buffer.voidsetWidth(double aWidth) Set the distance is from the axis to the buffer edge.toString()voidtranslate2D(double aX, double aY) Translates all the points of thisILcd2DEditablePointListfrom their current positions over the given translation vector in the 2D space.voidtranslate2DPoint(int aIndex, double aX, double aY) Translates the specified point of thisILcd2DEditablePointListfrom its current position over the given translation vector in the 2D space.voidtranslate3D(double aX, double aY, double aZ) Translates all the points of thisILcd3DEditablePointListfrom their current positions over the given translation vector in the 3D space.voidtranslate3DPoint(int aIndex, double aX, double aY, double aZ) Translates the specified point of thisILcd3DEditablePointListfrom its current position over the given translation vector in the 3D space.Methods inherited from class com.luciad.shape.shape3D.ALcd3DEditableShape
move3D, move3DMethods inherited from class com.luciad.shape.shape2D.ALcd2DEditableShape
move2DMethods inherited from class com.luciad.shape.ALcdShape
fromDomainObjectMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.luciad.shape.shape2D.ILcd2DEditablePointList
append2DPointMethods inherited from interface com.luciad.shape.shape2D.ILcd2DEditableShape
move2DMethods inherited from interface com.luciad.shape.ILcdPointList
getPointSFCT, getX, getY, getZ
-
Constructor Details
-
TLcdLonLatHeightBuffer
public TLcdLonLatHeightBuffer(TLcdLonLatHeightPolyline aAxisPolyline, double aWidth, double aHeight, ILcdEllipsoid aEllipsoid) Creates a newTLcdLonLatHeightBufferwith the specified parameters.- Parameters:
aAxisPolyline- the polyline defining the axis of the corridor.aWidth- the width in meters of the corridor (>= 0), from the axis to the edgeaHeight- the full height in meters of the corridor (>= 0), around the axisaEllipsoid- the ellipsoid used
-
TLcdLonLatHeightBuffer
public TLcdLonLatHeightBuffer(ILcd3DEditablePoint[] aAxisPointArray, double aWidth, double aHeight, ILcdEllipsoid aEllipsoid) Creates a newTLcdLonLatHeightBufferwith the specified parameters.- Parameters:
aAxisPointArray- the points defining the axis of the corridor.aWidth- the width in meters of the corridor (>= 0), from the axis to the edgeaHeight- the full height in meters of the corridor (>= 0), around the axisaEllipsoid- the ellipsoid used
-
TLcdLonLatHeightBuffer
public TLcdLonLatHeightBuffer(ILcd3DEditablePointList aAxisPointList, double aWidth, double aHeight, ILcdEllipsoid aEllipsoid) Creates a newTLcdLonLatHeightBufferwith the specified parameters.- Parameters:
aAxisPointList- the points defining the axis of the corridor.aWidth- the width in meters of the corridor (>= 0), from the axis to the edgeaHeight- the full height in meters of the corridor (>= 0), around the axisaEllipsoid- the ellipsoid used
-
TLcdLonLatHeightBuffer
public TLcdLonLatHeightBuffer(TLcdLonLatHeightPolyline aAxisPolyline, double aWidth, double aHeight) Creates a newTLcdLonLatHeightBufferwith the specified parameters.- Parameters:
aAxisPolyline- the polyline defining the axis of the corridor.aWidth- the width in meters of the corridor (>= 0), from the axis to the edgeaHeight- the full height in meters of the corridor (>= 0), around the axis
-
TLcdLonLatHeightBuffer
Creates a newTLcdLonLatHeightBufferwith the specified parameters.- Parameters:
aAxisPointArray- the points defining the axis of the corridor.aWidth- the width in meters of the corridor (>= 0), from the axis to the edgeaHeight- the full height in meters of the corridor (>= 0), around the axis
-
TLcdLonLatHeightBuffer
public TLcdLonLatHeightBuffer(ILcd3DEditablePointList aAxisPointList, double aWidth, double aHeight) Creates a newTLcdLonLatHeightBufferwith the specified parameters.- Parameters:
aAxisPointList- the points defining the axis of the corridor.aWidth- the width in meters of the corridor (>= 0), from the axis to the edgeaHeight- the full height in meters of the corridor (>= 0), around the axis
-
TLcdLonLatHeightBuffer
public TLcdLonLatHeightBuffer()Creates a newTLcdLonLatHeightBuffer, without points, with a default width of 300km and height of 100m -
TLcdLonLatHeightBuffer
Copy constructor.- Parameters:
aLonLatHeightBuffer- TheTLcdLonLatHeightBufferto copy.
-
-
Method Details
-
getEllipsoid
-
getWidth
public double getWidth()Returns the distance from the axis to the buffer edge.The buffer is 2 * width wide in total.
- Returns:
- The width of the buffer, from axis to edge
-
setWidth
public void setWidth(double aWidth) Set the distance is from the axis to the buffer edge. The buffer is 2 * width wide in total.- Parameters:
aWidth- the width in meters of the corridor (>= 0), from the axis to the edge
-
getHeight
public double getHeight()Returns the height of the buffer.The height is from bottom to top of the buffer, half of the height beneath and half of the height above the axis.
- Returns:
- The height
-
setHeight
public void setHeight(double aHeight) Set the height of this buffer.The height is from bottom to top of the buffer, half of the height beneath and half of the height above the axis.
- Parameters:
aHeight- the full height in meters of the corridor (>= 0), around the axis
-
getPointCount
public int getPointCount()Description copied from interface:ILcdPointListReturns the number ofILcdPointobjects in the list.- Specified by:
getPointCountin interfaceILcdPointList- Returns:
- the number of
ILcdPointobjects in the list.
-
getPoint
Description copied from interface:ILcdPointListReturns theILcdPointat a given index.- Specified by:
getPointin interfaceILcdPointList- Parameters:
aIndex- a valid index in the list ofILcdPointobjects.- Returns:
- the
ILcdPointat the given index.
-
removePointAt
public void removePointAt(int aIndex) Description copied from interface:ILcd3DEditablePointListRemoves the point at the given index from thisILcd3DEditablePointList.- Specified by:
removePointAtin interfaceILcd2DEditablePointList- Specified by:
removePointAtin interfaceILcd3DEditablePointList- Parameters:
aIndex- a valid index in the list ofILcdPointobjects.
-
move2D
public void move2D(double aX, double aY) Description copied from class:ALcd2DEditableShapeTranslates this shape so that its focus point ends up at the specified position.- Specified by:
move2Din interfaceILcd2DEditableShape- Overrides:
move2Din classALcd2DEditableShape- Parameters:
aX- the x coordinate of the point.aY- the y coordinate of the point.
-
translate2D
public void translate2D(double aX, double aY) Description copied from interface:ILcd2DEditablePointListTranslates all the points of thisILcd2DEditablePointListfrom their current positions over the given translation vector in the 2D space. Only the first two dimensions of the points are considered. The third dimension is left unchanged.- Specified by:
translate2Din interfaceILcd2DEditablePointList- Specified by:
translate2Din interfaceILcd2DEditableShape- Parameters:
aX- the x coordinate of the translation vector.aY- the y coordinate of the translation vector.
-
translate3D
public void translate3D(double aX, double aY, double aZ) Description copied from interface:ILcd3DEditablePointListTranslates all the points of thisILcd3DEditablePointListfrom their current positions over the given translation vector in the 3D space.- Specified by:
translate3Din interfaceILcd3DEditablePointList- Specified by:
translate3Din interfaceILcd3DEditableShape- Parameters:
aX- the x coordinate of the translation vector.aY- the y coordinate of the translation vector.aZ- the z coordinate of the translation vector.
-
move2DPoint
public void move2DPoint(int aIndex, double aX, double aY) Description copied from interface:ILcd2DEditablePointListMoves the specified point of thisILcd2DEditablePointListto the given point in the 2D space. Only the first two dimensions of theILcdShapeare considered. The third dimension is left unchanged.- Specified by:
move2DPointin interfaceILcd2DEditablePointList- Parameters:
aIndex- a valid index in the list of points.aX- the x coordinate of the point.aY- the y coordinate of the point.
-
move3DPoint
public void move3DPoint(int aIndex, double aX, double aY, double aZ) Description copied from interface:ILcd3DEditablePointListMoves the specified point of thisILcd3DEditablePointListto the given point in the 3D space.- Specified by:
move3DPointin interfaceILcd3DEditablePointList- Parameters:
aIndex- a valid index in the list of points.aX- the x coordinate of the point.aY- the y coordinate of the point.aZ- the z coordinate of the point.
-
translate2DPoint
public void translate2DPoint(int aIndex, double aX, double aY) Description copied from interface:ILcd2DEditablePointListTranslates the specified point of thisILcd2DEditablePointListfrom its current position over the given translation vector in the 2D space. Only the first two dimensions of the points are considered. The third dimension is left unchanged.- Specified by:
translate2DPointin interfaceILcd2DEditablePointList- Parameters:
aX- the x coordinate of the translation vector.aY- the y coordinate of the translation vector.
-
translate3DPoint
public void translate3DPoint(int aIndex, double aX, double aY, double aZ) Description copied from interface:ILcd3DEditablePointListTranslates the specified point of thisILcd3DEditablePointListfrom its current position over the given translation vector in the 3D space.- Specified by:
translate3DPointin interfaceILcd3DEditablePointList- Parameters:
aIndex- a valid new index in the list of points.aX- the x coordinate of the translation vector.aY- the y coordinate of the translation vector.aZ- the z coordinate of the translation vector.
-
insert2DPoint
public void insert2DPoint(int aIndex, double aX, double aY) Description copied from interface:ILcd2DEditablePointListInserts a point at the given index into thisILcd2DEditablePointList.- Specified by:
insert2DPointin interfaceILcd2DEditablePointList- Parameters:
aIndex- a valid new index in the list of points.aX- the x coordinate of the new point.aY- the y coordinate of the new point.
-
insert3DPoint
public void insert3DPoint(int aIndex, double aX, double aY, double aZ) Description copied from interface:ILcd3DEditablePointListInserts a point at the given index into thisILcd3DEditablePointList.- Specified by:
insert3DPointin interfaceILcd3DEditablePointList- Parameters:
aIndex- a valid new index in the list of points.aX- the x coordinate of the new point.aY- the y coordinate of the new point.aZ- the z coordinate of the new point.
-
getAxisPolyline
-
contains2D
Description copied from class:ALcdShapeChecks whether thisALcdShapecontains the given point in the 2D cartesian plane.- Specified by:
contains2Din interfaceILcdShape- Overrides:
contains2Din classALcdShape- Parameters:
aPoint- the point to test.- Returns:
- the boolean result of the containment test.
- See Also:
-
contains2D
public boolean contains2D(double x, double y) Description copied from interface:ILcdShapeChecks whether thisILcdShapecontains the given point in the 2D space. Only the first two dimensions of theILcdShapeare considered.- Specified by:
contains2Din interfaceILcdShape- Parameters:
x- the x coordinate of the point.y- the y coordinate of the point.- Returns:
- the boolean result of the containment test.
-
contains3D
Description copied from class:ALcdShapeChecks whether thisALcdShapecontains the given point in the 3D space.- Specified by:
contains3Din interfaceILcdShape- Overrides:
contains3Din classALcdShape- Parameters:
aPoint- the point to test.- Returns:
- the boolean result of the containment test.
- See Also:
-
contains3D
public boolean contains3D(double aX, double aY, double aZ) Description copied from class:ALcd2DEditableShapeProvides an approximate default implementation of the 3D containment test based on the 2D containment test.- Specified by:
contains3Din interfaceILcdShape- Overrides:
contains3Din classALcd2DEditableShape- Parameters:
aX- the x coordinate of the point.aY- the y coordinate of the point.aZ- the z coordinate of the point.- Returns:
trueif the bounds of this shape contain the point in the 3D space and the shape itself contains the point in the 2D space,falseotherwise.
-
getFocusPoint
Description copied from interface:ILcdShapeReturns the focus point of thisILcdShape.- Specified by:
getFocusPointin interfaceILcdShape- Returns:
- the focus point of this
ILcdShape.
-
getBounds
Description copied from interface:ILcdBoundedReturns theILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.If the geometry does not allow retrieving valid bounds (for example a polyline with 0 points) the return value is unspecified. It is highly recommended to return an
undefinedbounds. You can create undefined bounds using the default constructors ofTLcdLonLatBoundsorTLcdXYBounds.- Specified by:
getBoundsin interfaceILcdBounded- Returns:
- the
ILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.
-
getContour
-
insertIntoCache
Description copied from interface:ILcdCacheInserts a cache Object corresponding to the given key Object.- Specified by:
insertIntoCachein interfaceILcdCache- Parameters:
aKey- the key Object that will be used to identify the Object. The key must therefore be a unique identifier, typically the caller itself:insertIntoCache(this, ...).aObject- the Object to be cached.
-
getCachedObject
Description copied from interface:ILcdCacheLooks up and returns the cached Object corresponding to the given key.- Specified by:
getCachedObjectin interfaceILcdCache- Parameters:
aKey- the key Object that was used for storing the cache Object.- Returns:
- the cached Object, or null if there is no Object corresponding to the given key.
-
removeCachedObject
Description copied from interface:ILcdCacheLooks up and removes the cached Object corresponding to the given key.- Specified by:
removeCachedObjectin interfaceILcdCache- Parameters:
aKey- the key Object that was used for storing the cache Object.- Returns:
- the cached Object, or null if there was no Object corresponding to the given key.
-
clearCache
public void clearCache()Description copied from interface:ILcdCacheClears the cache.- Specified by:
clearCachein interfaceILcdCache
-
clone
Creates and returns a copy of this object.The axis polyline is cloned.
The contained ellipsoid is copied without being cloned.
The cache is not copied or cloned at all.
- Specified by:
clonein interfaceILcdCloneable- Overrides:
clonein classALcdShape- See Also:
-
equals
Returns whether the given object has the same class and the same coordinates and parameters. -
hashCode
public int hashCode()Description copied from class:ALcdShapeThe hash code of this shape is the hash code of its class, in order to be consistent with theALcdShape.equals(Object)method. Extensions should refine this implementation, based on their properties. -
toString
-