Class TLcdKML22Polygon
java.lang.Object
com.luciad.datamodel.TLcdDataObject
com.luciad.format.kml22.model.TLcdKML22AbstractObject
com.luciad.format.kml22.model.geometry.TLcdKML22AbstractGeometry
com.luciad.format.kml22.model.geometry.TLcdKML22Polygon
- All Implemented Interfaces:
ILcdDataObject,ILcdBounded,ILcdShape,ILcdSurface,ILcd2DEditableShape,ILcd3DEditableShape,ILcdCache,ILcdCloneable,ILcdDeepCloneable,Serializable,Cloneable
public class TLcdKML22Polygon
extends TLcdKML22AbstractGeometry
implements ILcd3DEditableShape, ILcdSurface
Domain class modeling the KML PolygonType type.
OGC KML Specification description:
This element can be used wherever the following element is referenced: -kml:AbstractGeometryGroup A kml:Polygon shall have an outer boundary ring outside of an update context, that is when not a descendant of kml:Update. It may have 0 or more inner boundary rings. Each ring is defined by a kml:LinearRing. It is advised that the rings not cross each other.
- Since:
- 10.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TLcdDataPropertyData property that maps to theAbstractGeometryObjectExtensionGroupelement.static final TLcdDataPropertyData property that maps to theAbstractGeometrySimpleExtensionGroupelement.static final TLcdDataPropertyData property that maps to thealtitudeModeGroupelement.static final TLcdDataPropertyData property that maps to theextrudeelement.static final TLcdDataPropertyData property that maps to theinnerBoundaryIselement.static final TLcdDataPropertyData property that maps to theouterBoundaryIselement.static final TLcdDataPropertyData property that maps to thePolygonObjectExtensionGroupelement.static final TLcdDataPropertyData property that maps to thePolygonSimpleExtensionGroupelement.static final TLcdDataPropertyData property that maps to thetessellateelement.Fields inherited from class com.luciad.format.kml22.model.TLcdKML22AbstractObject
ID_PROPERTY, OBJECT_SIMPLE_EXTENSION_GROUP_PROPERTY, TARGET_ID_PROPERTY -
Constructor Summary
ConstructorsConstructorDescriptionTLcdKML22Polygon(TLcdDataType aType) Creates a newTLcdKML22Polygonwith a customTLcdDataType. -
Method Summary
Modifier and TypeMethodDescriptionclone()Returns a deep clone of this object.Returns a deep clone of this object.booleancontains2D(double aX, double aY) Checks whether thisILcdShapecontains the given point in the 2D space.booleancontains2D(ILcdPoint aPoint) Checks whether thisILcdShapecontains the givenILcdPointin the 2D space.booleancontains3D(double aX, double aY, double aZ) Checks whether thisILcdShapecontains the given point in the 3D space.booleancontains3D(ILcdPoint aPoint) Checks whether thisILcdShapecontains the givenILcdPointin the 3D space.Gets the altitude mode of this geometry.Returns theILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.Returns the exterior boundary of this surface.Returns whether or not this shape should be extruded.Returns the focus point of thisILcdShape.Returns the value of the property that maps to theinnerBoundaryIselement.Returns the holes in this surface, as a list ofILcdRinginstances.Returns the value of the property that maps to theouterBoundaryIselement.Returns whether or not this should be tessellated.booleanReturns the extrusion state of this shape, keeping into account the altitude mode.booleanReturns the tessellation state of this shape, keeping into account the altitude modevoidmove2D(double aX, double aY) Moves thisILcd2DEditableShapeto the given point in the 2D space.voidMoves thisILcd2DEditableShapeto the given point in the 2D space.voidmove3D(double aX, double aY, double aZ) Moves thisILcd3DEditableShapeto the given point in the 3D space.voidMoves thisILcd3DEditableShapeto the given point in the 3D space.voidsetAltitudeMode(ELcdKML22AltitudeMode aValue) Sets the value of the property that maps to thealtitudeModeGroupelement.voidsetExtrude(Boolean aValue) Sets the value of the property that maps to theextrudeelement.voidsetOuterBoundary(TLcdKML22Boundary aValue) Sets the value of the property that maps to theouterBoundaryIselement.voidsetTessellate(Boolean aValue) Sets the value of the property that maps to thetessellateelement.voidtranslate2D(double aDeltaX, double aDeltaY) Translates thisILcd2DEditableShapefrom its current position over the given translation vector in the 2D space.voidtranslate3D(double aDeltaX, double aDeltaY, double aDeltaZ) Translates thisILcd3DEditableShapefrom its current position over the given translation vector in the 3D space.Methods inherited from class com.luciad.format.kml22.model.geometry.TLcdKML22AbstractGeometry
clearCache, getCachedObject, insertIntoCache, removeCachedObjectMethods inherited from class com.luciad.format.kml22.model.TLcdKML22AbstractObject
getId, getTargetId, setId, setTargetIdMethods inherited from class com.luciad.datamodel.TLcdDataObject
getDataType, getValue, getValue, hasValue, hasValue, setValue, setValue, toString
-
Field Details
-
EXTRUDE_PROPERTY
Data property that maps to theextrudeelement. The possible values for this property are instances ofBoolean. -
TESSELLATE_PROPERTY
Data property that maps to thetessellateelement. The possible values for this property are instances ofBoolean. -
ALTITUDE_MODE_PROPERTY
Data property that maps to thealtitudeModeGroupelement. The possible values for this property are instances ofELcdKML22AltitudeMode. -
OUTER_BOUNDARY_PROPERTY
Data property that maps to theouterBoundaryIselement. The possible values for this property are instances ofTLcdKML22Boundary. -
INNER_BOUNDARIES_PROPERTY
Data property that maps to theinnerBoundaryIselement. The possible values for this property are instances ofList<TLcdKML22Boundary>. -
POLYGON_SIMPLE_EXTENSION_GROUP_PROPERTY
Data property that maps to thePolygonSimpleExtensionGroupelement. The possible values for this property are instances ofList<String>. -
POLYGON_OBJECT_EXTENSION_GROUP_PROPERTY
Data property that maps to thePolygonObjectExtensionGroupelement. The possible values for this property are instances ofList<TLcdKML22AbstractObject>. -
ABSTRACT_GEOMETRY_SIMPLE_EXTENSION_GROUP_PROPERTY
Data property that maps to theAbstractGeometrySimpleExtensionGroupelement. The possible values for this property are instances ofList<String>. -
ABSTRACT_GEOMETRY_OBJECT_EXTENSION_GROUP_PROPERTY
Data property that maps to theAbstractGeometryObjectExtensionGroupelement. The possible values for this property are instances ofList<TLcdKML22AbstractObject>.
-
-
Constructor Details
-
TLcdKML22Polygon
Creates a newTLcdKML22Polygonwith a customTLcdDataType.- Parameters:
aType- a customTLcdDataType
-
-
Method Details
-
getExtrude
Returns whether or not this shape should be extruded. Returns false if it was undefined.- Returns:
- true if this shape should be extruded; false otherwise.
-
getTessellate
Returns whether or not this should be tessellated. Returns false if it was undefined.- Returns:
- true if this shape should be tessellated; false otherwise.
-
getAltitudeMode
Gets the altitude mode of this geometry. Returns ELcdKML22AltitudeMode.CLAMP_TO_GROUND if it was undefined. * @return true if this shape should be tessellated; false otherwise.- Returns:
- An
ELcdKML22AltitudeMode
-
getExteriorRing
Description copied from interface:ILcdSurfaceReturns the exterior boundary of this surface.- Specified by:
getExteriorRingin interfaceILcdSurface- Returns:
- the exterior boundary of this surface.
-
getInteriorRings
Description copied from interface:ILcdSurfaceReturns the holes in this surface, as a list ofILcdRinginstances. If there are no holes, an empty list is returned.Note that the returned list is immutable unless specified by specific subclasses (see for example
ILcdEditableSurface).- Specified by:
getInteriorRingsin interfaceILcdSurface- Returns:
- a list containing zero or more rings, representing the holes in this surface.
-
isExtruded
public boolean isExtruded()Returns the extrusion state of this shape, keeping into account the altitude mode.
- Returns:
- true if this geometry is extruded, and its altitude mode is absolute or relative to ground.
-
isTessellated
public boolean isTessellated()Returns the tessellation state of this shape, keeping into account the altitude mode
- Returns:
- true if this geometry is tessellated, and its altitude mode is clam to ground.
-
move3D
public void move3D(double aX, double aY, double aZ) Description copied from interface:ILcd3DEditableShapeMoves thisILcd3DEditableShapeto the given point in the 3D space. The focus point is used as the handle by which the shape is moved.- Specified by:
move3Din interfaceILcd3DEditableShape- Overrides:
move3Din classTLcdKML22AbstractGeometry- Parameters:
aX- the x coordinate of the point.aY- the y coordinate of the point.aZ- the z coordinate of the point.
-
move3D
Description copied from interface:ILcd3DEditableShapeMoves thisILcd3DEditableShapeto the given point in the 3D space. The focus point is used as the handle by which the shape is moved.- Specified by:
move3Din interfaceILcd3DEditableShape- Overrides:
move3Din classTLcdKML22AbstractGeometry- Parameters:
aPoint- theILcdPointto move to.- See Also:
-
translate3D
public void translate3D(double aDeltaX, double aDeltaY, double aDeltaZ) Description copied from interface:ILcd3DEditableShapeTranslates thisILcd3DEditableShapefrom its current position over the given translation vector in the 3D space.- Specified by:
translate3Din interfaceILcd3DEditableShape- Overrides:
translate3Din classTLcdKML22AbstractGeometry- Parameters:
aDeltaX- the x coordinate of the translation vector.aDeltaY- the y coordinate of the translation vector.aDeltaZ- the z coordinate of the translation vector.
-
move2D
Description copied from interface:ILcd2DEditableShapeMoves thisILcd2DEditableShapeto the given point in the 2D space. The focus point is used as the handle by which the shape is moved. Only the first two dimensions of theILcdShapeand theILcdPointare considered. The third dimension is left unchanged.- Specified by:
move2Din interfaceILcd2DEditableShape- Overrides:
move2Din classTLcdKML22AbstractGeometry- Parameters:
aPoint- theILcdPointto move to.- See Also:
-
move2D
public void move2D(double aX, double aY) Description copied from interface:ILcd2DEditableShapeMoves thisILcd2DEditableShapeto the given point in the 2D space. The focus point is used as the handle by which the shape is moved. Only the first two dimensions of theILcdShapeare considered. The third dimension is left unchanged.- Specified by:
move2Din interfaceILcd2DEditableShape- Overrides:
move2Din classTLcdKML22AbstractGeometry- Parameters:
aX- the x coordinate of the point.aY- the y coordinate of the point.
-
translate2D
public void translate2D(double aDeltaX, double aDeltaY) Description copied from interface:ILcd2DEditableShapeTranslates thisILcd2DEditableShapefrom its current position over the given translation vector in the 2D space. Only the first two dimensions of theILcdShapeare considered. The third dimension is left unchanged.- Specified by:
translate2Din interfaceILcd2DEditableShape- Overrides:
translate2Din classTLcdKML22AbstractGeometry- Parameters:
aDeltaX- the x coordinate of the translation vector.aDeltaY- the y coordinate of the translation vector.
-
contains2D
Description copied from interface:ILcdShapeChecks whether thisILcdShapecontains the givenILcdPointin the 2D space. Only the first two dimensions of theILcdShapeand theILcdPointare considered.- Specified by:
contains2Din interfaceILcdShape- Overrides:
contains2Din classTLcdKML22AbstractGeometry- Parameters:
aPoint- theILcdPointto test.- Returns:
- the boolean result of the containment test.
- See Also:
-
contains2D
public boolean contains2D(double aX, double aY) 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- Overrides:
contains2Din classTLcdKML22AbstractGeometry- Parameters:
aX- the x coordinate of the point.aY- the y coordinate of the point.- Returns:
- the boolean result of the containment test.
-
contains3D
Description copied from interface:ILcdShapeChecks whether thisILcdShapecontains the givenILcdPointin the 3D space.- Specified by:
contains3Din interfaceILcdShape- Overrides:
contains3Din classTLcdKML22AbstractGeometry- Parameters:
aPoint- theILcdPointto test.- Returns:
- the boolean result of the containment test.
- See Also:
-
contains3D
public boolean contains3D(double aX, double aY, double aZ) Description copied from interface:ILcdShapeChecks whether thisILcdShapecontains the given point in the 3D space.- Specified by:
contains3Din interfaceILcdShape- Overrides:
contains3Din classTLcdKML22AbstractGeometry- Parameters:
aX- the x coordinate of the point.aY- the y coordinate of the point.aZ- the z coordinate of the point.- Returns:
- the boolean result of the containment test.
-
getFocusPoint
Description copied from interface:ILcdShapeReturns the focus point of thisILcdShape.- Specified by:
getFocusPointin interfaceILcdShape- Overrides:
getFocusPointin classTLcdKML22AbstractGeometry- Returns:
- the focus point of this
ILcdShape.
-
clone
Description copied from class:TLcdDataObjectReturns a deep clone of this object. This method delegates toTLcdDataObject.clone(Map).- Specified by:
clonein interfaceILcdCloneable- Overrides:
clonein classTLcdDataObject- Returns:
- a deep clone of this object
- See Also:
-
clone
Description copied from class:TLcdDataObjectReturns a deep clone of this object. If the clone is not already present in the dictionary, a new instance if created as follows:- First, a new instance is created using Java's clone() mechanism.
- Then, all properties of this object are cloned and set on the newly created
instance. A property is cloned as follows:
- If the property value is an
ILcdDataObject, the value is cloned by first creating a new instance via thevalue.getDataType().newInstance()method, and then cloning its properties one by one. - If the value implements
ILcdDeepCloneableorILcdCloneablethen this interface is used to clone the value. - Otherwise, the property value is copied by reference.
- If the property value is an
- Specified by:
clonein interfaceILcdDeepCloneable- Overrides:
clonein classTLcdKML22AbstractGeometry- Parameters:
aObjectDictionary- the Object dictionary that keeps track of the objects for which a clone has already been made, and their corresponding clone Object.- Returns:
- a deep clone of this object
-
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- Overrides:
getBoundsin classTLcdKML22AbstractGeometry- Returns:
- the
ILcdBoundsby which the geometry of thisILcdBoundedobject is bounded.
-
setExtrude
Sets the value of the property that maps to theextrudeelement.- Parameters:
aValue- the value to set for theEXTRUDE_PROPERTYproperty.
-
setTessellate
Sets the value of the property that maps to thetessellateelement.- Parameters:
aValue- the value to set for theTESSELLATE_PROPERTYproperty.
-
setAltitudeMode
Sets the value of the property that maps to thealtitudeModeGroupelement.- Parameters:
aValue- the value to set for theALTITUDE_MODE_PROPERTYproperty.
-
getOuterBoundary
Returns the value of the property that maps to theouterBoundaryIselement.- Returns:
- the value of the
OUTER_BOUNDARY_PROPERTYproperty.
-
setOuterBoundary
Sets the value of the property that maps to theouterBoundaryIselement.- Parameters:
aValue- the value to set for theOUTER_BOUNDARY_PROPERTYproperty.
-
getInnerBoundaries
Returns the value of the property that maps to theinnerBoundaryIselement.- Returns:
- the value of the
INNER_BOUNDARIES_PROPERTYproperty.
-