Class TLcd2DRegularTiledBoundsIndexedModel
- All Implemented Interfaces:
ILcd2DBoundsIndexedModel
,ILcd2DBoundsInteractable
,ILcdIntegerIndexedModel
,ILcdModel
,ILcdBounded
,ILcdDisposable
,Serializable
,AutoCloseable
ILcd2DBoundsIndexedModel
that is also an ILcdIntegerIndexedModel
for models of which most
elements are located in mutually exclusive geographic tiles.
The prerequisites for using this model are: - Most of the elements that are to be added to the model should be located in tiles of the same dimension and that are geographically non-overlapping.
- The tiles of equal dimension, called regular tiles, should occupy a raster-like structure.
- This raster needn't be completely covered by regular tiles (all tiles should be regular, but there may be tiles missing in the raster).
- This tiling scheme should be known before adding elements to the model.
This class is thread-safe for read-only access of its elements.
For read-write access, external locking must be used, typically on the model
itself. The utility class TLcdLockUtil
provides convenient methods
readLock(Object)
,
readUnlock(Object)
,
writeLock(Object)
, and
writeUnlock(Object)
to do so.
Before LuciadLightspeed version 7.0, the methods for accessing elements were
synchronized. The current implementation no longer performs this internal
synchronization, mainly for allowing concurrent read-only access and
therefore better performance in multi-threaded applications. Note that
internal synchronization on its own was not sufficient for safe concurrent
reading and writing (e.g. due to the elements()
method, which
returns an enumeration). If internal synchronization is required for
backward compatibility, one can set the static compatibility flag with
setSynchronized(boolean)
, or one can define the system property
com.luciad.model.TLcd2DRegularTiledBoundsIndexedModel.synchronized
when starting up the Java Virtual Machine, typically as follows:
java -Dcom.luciad.model.TLcd2DBoundsIndexedModel.synchronized ....Internal synchronization will then be performed, as in previous versions.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.luciad.model.ILcdModel
ILcdModel.Query
-
Field Summary
Fields inherited from class com.luciad.model.ALcdModel
fModelEventSupport
Fields inherited from interface com.luciad.model.ILcdModel
FIRE_LATER, FIRE_NOW, NO_EVENT
-
Constructor Summary
ConstructorDescriptionTLcd2DRegularTiledBoundsIndexedModel
(ILcdBounds aModelBounds, ILcdBounded[] aTiles, ILcdBounds aRegularTileBounds) Deprecated.Constructs a new emptyTLcd2DRegularBoundsIndexedModel
.TLcd2DRegularTiledBoundsIndexedModel
(ILcdBounds aModelBounds, ILcdBounds aRegularRasterBounds, int aNrTileCols, int aNrTileRows) Deprecated.Constructs a new emptyTLcd2DRegularBoundsIndexedModel
, initialized with the given model bounds. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addElement
(Object aElement, int aEventMode) Deprecated.Adds the specified element to this model.int
applyOnInteract2DBounds
(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY) Deprecated.Applies the specified function to all the model elements of which the 2D bounds overlap with the specified bounds.int
applyOnInteract2DBounds
(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY, double aMinSizeX, double aMinSizeY, boolean aIncludePoints) Deprecated.Applies the specified function to all the elements of which the 2D bounds overlap with the specified bounds.boolean
canAddElement
(Object aObject) Deprecated.Returnstrue
if the specified element can be added to this model,false
otherwise.boolean
canRemoveElement
(Object aObject) Deprecated.Returnstrue
if the specified element can be removed from this model,false
otherwise.boolean
Deprecated.Returns whether a object is present in this model.elementAt
(int aIndex) Deprecated.Returns the element at the specified index.void
elementChanged
(Object aElement, int aFireEventMode) Deprecated.Notifies this model that the specified element has changed.elements()
Deprecated.Returns an enumeration over all elements of this model.void
elementsChanged
(Vector aObjects, int aFireEventMode) Deprecated.Notifies this model that the elements in the specified vector have changed.Deprecated.Returns theaddElement
filter.Deprecated.Returns theILcdBounds
by which the geometry of thisILcdBounded
object is bounded.Deprecated.Returns theremoveElement
filter.int
Deprecated.Returns the index of the first occurrence of the specified element in the model, or -1 if this model does not contain the element.static boolean
Deprecated.Returns whether accessing elements is synchronized.void
removeAllElements
(int aEventMode) Deprecated.Removes all elements from this model.void
removeElement
(Object aElement, int aEventMode) Deprecated.Removes the specified element from this model.void
setAddElementFilter
(ILcdFilter aFilter) Deprecated.Sets the filter that can filter out elements before they are added.void
setRemoveElementFilter
(ILcdFilter aFilter) Deprecated.Sets the filter that can filter out elements before they are removed.static void
setSynchronized
(boolean aSynchronized) Deprecated.Specifies whether accessing elements should be synchronized, for backward compatibility.int
size()
Deprecated.Returns the number of elements in this model.Methods inherited from class com.luciad.model.ALcdModel
addElements, addModelListener, allElementsChanged, allElementsRemoved, dispose, elementAdded, elementRemoved, elementsAdded, elementsRemoved, fireCollectedModelChanges, getModelDescriptor, getModelEncoder, getModelMetadata, getModelReference, initializeTransientValues, isClassTraceOn, isTraceOn, removeElements, removeModelListener, setClassTraceOn, setModelDescriptor, setModelDisposer, setModelEncoder, setModelMetadataFunction, setModelReference, setTraceOn
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.luciad.model.ILcd2DBoundsIndexedModel
query
Methods inherited from interface com.luciad.util.ILcdDisposable
close
Methods inherited from interface com.luciad.model.ILcdModel
addElements, addModelListener, dispose, fireCollectedModelChanges, getModelDescriptor, getModelEncoder, getModelMetadata, getModelReference, removeElements, removeModelListener
-
Constructor Details
-
TLcd2DRegularTiledBoundsIndexedModel
public TLcd2DRegularTiledBoundsIndexedModel(ILcdBounds aModelBounds, ILcdBounded[] aTiles, ILcdBounds aRegularTileBounds) Deprecated.Constructs a new emptyTLcd2DRegularBoundsIndexedModel
.- Parameters:
aModelBounds
- the initial bounds of the model. These bounds must not be modified by the user after they have been passed. They should encompass all the elements the user plans to add to the model, whether or not they are located in a regular tile, .aTiles
- theILcdBounded
that define the bounds of the regular tiles where the user plans to add elements into. The tiles should form a regular raster (all tiles should have the same dimensions, and should be aligned with each other in both horizontal and vertical direction), but the raster should not be completely filled with tiles. Elements that are added to this model, whose bounds do not fit into one of the given tile bounds (whether because they are outside the regular raster, or inside the raster but located on a place were no tile exists, or covering multiple tiles) will be added to the default tile, covering the givenaModelBounds
.aRegularTileBounds
- theILcdBounds
which width and height define a regular tile. Note: passing irregular tiles (whether unaligned or of different sizes), could result in wrong results when using the applyOnInteract2DBounds methods.
-
TLcd2DRegularTiledBoundsIndexedModel
public TLcd2DRegularTiledBoundsIndexedModel(ILcdBounds aModelBounds, ILcdBounds aRegularRasterBounds, int aNrTileCols, int aNrTileRows) Deprecated.Constructs a new emptyTLcd2DRegularBoundsIndexedModel
, initialized with the given model bounds. A regular raster of tiles is created within the model, based on the given raster bounds and the given number of tile rows and columns.- Parameters:
aModelBounds
- the initial bounds of the model. These bounds must not be modified by the user after they have been passed. They should encompass all the elements, whether or not located in a regular tile, the user plans to add to the model.aRegularRasterBounds
- the bounds that define the regular raster.aNrTileCols
- the number of columns to be created in the regular raster.aNrTileRows
- the number of rows to be created in the regular raster.
-
-
Method Details
-
setSynchronized
public static void setSynchronized(boolean aSynchronized) Deprecated.Specifies whether accessing elements should be synchronized, for backward compatibility. The default isfalse
. -
isSynchronized
public static boolean isSynchronized()Deprecated.Returns whether accessing elements is synchronized. -
applyOnInteract2DBounds
public int applyOnInteract2DBounds(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY) Deprecated.Description copied from interface:ILcd2DBoundsIndexedModel
Applies the specified function to all the model elements of which the 2D bounds overlap with the specified bounds. By default, the order in which the function is applied on the elements is unspecified and depends on the implementation. The return value of the specified function is used as a stop criterion: the spatial query is interrupted if the function returnsfalse
.- Specified by:
applyOnInteract2DBounds
in interfaceILcd2DBoundsIndexedModel
- Parameters:
aBounds
- the rectangle to test overlap with.aStrictOverlap
- iffalse
, the spatial search may return more elements than the ones strictly overlapping; iftrue
, the search only returns the elements that are overlapping. The latter mode is more precise, but it may be slower.aFunctionToApply
- the function to apply on each element that overlaps with the given bounds. The return value of the specified function is used as a stop criterion: the spatial query is interrupted if the function returnsfalse
.aPrecisionX
- the precision required in the x dimension, expressed in model units. For example, for a cartesian grid system expressed in meters, the values should be expressed in meters as well, for a geodetic coordinate system the accuracy values should be expressed in degrees.The precision is useful in combination with multi-leveled data (multiple representations of the same object, but with varying accuracy), so that the most appropriate accuracy level can be used. 0 means best possible accuracy, but it might trigger lazy-loaded implementations to load lots of data.
aPrecisionY
- the precision required in the y dimension, expressed in model units.- Returns:
- the number of elements to which the
ILcdFunction
has been applied.
-
applyOnInteract2DBounds
public int applyOnInteract2DBounds(ILcdBounds aBounds, boolean aStrictOverlap, ILcdFunction aFunctionToApply, double aPrecisionX, double aPrecisionY, double aMinSizeX, double aMinSizeY, boolean aIncludePoints) Deprecated.Description copied from interface:ILcd2DBoundsInteractable
Applies the specified function to all the elements of which the 2D bounds overlap with the specified bounds. The order in which the function is applied on the elements is unspecified and depends on the implementation. Only elements that have at least the specified minimal size in the x dimension or in the y dimension are considered. This can be useful for quickly eliminating elements that are too small to be visible in a view, for instance. If required, an exception can be made for point elements, which have a size of 0 by 0. They can be forced to be considered, even though they would always be rejected as being too small for any sizes larger than 0. The return value of the specified function is used as a stop criterion: the spatial query will be interrupted as soon as the function returnsfalse
for an element it was applied on.- Specified by:
applyOnInteract2DBounds
in interfaceILcd2DBoundsIndexedModel
- Specified by:
applyOnInteract2DBounds
in interfaceILcd2DBoundsInteractable
- Parameters:
aBounds
- the rectangle to test overlap with.aStrictOverlap
- iffalse
, the spatial search may return more elements than the ones strictly overlapping; iftrue
, the search only returns the elements that are overlapping. The latter mode is more precise, but it may be slower.aFunctionToApply
- the function to apply on each element that overlaps with the given bounds.aPrecisionX
- the precision required in the x dimension, expressed in model units. For example, for a cartesian grid system expressed in meters, the values should be expressed in meters as well, for a geodetic coordinate system the accuracy values should be expressed in degrees.The precision is useful in combination with multi-leveled data (multiple representations of the same object, but with varying accuracy), so that the most appropriate accuracy level can be used. 0 means best possible accuracy, but it might trigger lazy-loaded implementations to load lots of data.
aPrecisionY
- the precision required in the y dimension, expressed in model units.aMinSizeX
- the minimal element size in the x dimension (as inILcdBounds.getWidth()
), expressed in model units. Elements that are smaller than this size will be skipped. This may, for example, be useful when improving the efficiency of painting elements by skipping elements that are smaller than some threshold (e.g. one pixel, converted to model units).aMinSizeY
- the minimal element size in the y dimension (as inILcdBounds.getHeight()
), expressed in model units.aIncludePoints
- iftrue
, zero-sized elements (points) are considered as well, even though they might be smaller than the minimum size.- Returns:
- the number of elements to which the
ILcdFunction
has been applied.
-
setAddElementFilter
Deprecated.Sets the filter that can filter out elements before they are added.- Parameters:
aFilter
- the filter.- See Also:
-
getAddElementFilter
Deprecated.Returns theaddElement
filter.- Returns:
- the
addElement
filter. - See Also:
-
setRemoveElementFilter
Deprecated.Sets the filter that can filter out elements before they are removed.- Parameters:
aFilter
- the filter.- See Also:
-
getRemoveElementFilter
Deprecated.Returns theremoveElement
filter.- Returns:
- the
removeElement
filter. - See Also:
-
canAddElement
Deprecated.Description copied from class:ALcdModel
Returnstrue
if the specified element can be added to this model,false
otherwise.Note that this method generally does not validate whether the specified element is expressed in the same model reference as this model. It is the responsibility of the user of this model to make sure this precondition is fulfilled when an element is added to this model.
This implementation always returns
false
.- Specified by:
canAddElement
in interfaceILcdModel
- Overrides:
canAddElement
in classALcdModel
- Parameters:
aObject
- the element to be verified.- Returns:
true
if the specified element can be added to this model,false
otherwise.
-
addElement
Deprecated.Description copied from class:ALcdModel
Adds the specified element to this model.Models that support this operation may place limitations on what elements may be added to this model. For example, implementations that are based on a spatial indexing structure will require that elements implement
ILcdBounded
.When adding an element, the user should make sure that
canAddElement(aElement)
holds, and that the element's geometry is expressed in the same model reference as this model. It is generally undefined what happens if an invalid element is added.Implementations of this interface should clearly specify in their documentation any restrictions on what elements may be added. Although it is unspecified what happens if the preconditions are not met, implementations are encouraged to throw meaningful exceptions (for example,
NullPointerException, IllegalArgumentException, ClassCastException, UnsupportedOperationException
), whenever possible.This implementation always throws an
UnsupportedOperationException
.- Specified by:
addElement
in interfaceILcdModel
- Overrides:
addElement
in classALcdModel
- Parameters:
aElement
- the element to be added to this model.aEventMode
- the mode for sending out the model change event. This can beFIRE_LATER
orNO_EVENT
.- See Also:
-
canRemoveElement
Deprecated.Description copied from class:ALcdModel
Returnstrue
if the specified element can be removed from this model,false
otherwise. Note that this method generally does not check whether the specified element is actually contained in this model.This implementation always returns
false
.- Specified by:
canRemoveElement
in interfaceILcdModel
- Overrides:
canRemoveElement
in classALcdModel
- Parameters:
aObject
- the element to be verified.- Returns:
true
if the specified element can be removed from this model,false
otherwise.
-
removeElement
Deprecated.Description copied from class:ALcdModel
Removes the specified element from this model. If the specified element is not contained in this model, this method has no effect.Although it is unspecified what happens if the preconditions are not met, implementations are encouraged to throw meaningful exceptions (for example,
NullPointerException, IllegalArgumentException, ClassCastException, UnsupportedOperationException
), whenever possible.This implementation always throws an
UnsupportedOperationException
.- Specified by:
removeElement
in interfaceILcdModel
- Overrides:
removeElement
in classALcdModel
- Parameters:
aElement
- the element to be removed from this model.aEventMode
- the mode for sending out the model change event. This can beFIRE_LATER
orNO_EVENT
.- See Also:
-
removeAllElements
public void removeAllElements(int aEventMode) Deprecated.Description copied from class:ALcdModel
Removes all elements from this model.If an element cannot be removed, this method will return at the first failure. Succeeding elements won't be removed.
Although it is unspecified what happens if the preconditions are not met, implementations are encouraged to throw meaningful exceptions (for example,
NullPointerException, IllegalArgumentException, ClassCastException, UnsupportedOperationException
), whenever possible.This implementation iterates over all elements in the model, and calls
removeElement(Object, int)
for each element to be removed, using event modeNO_EVENT
if the specified event mode isNO_EVENT
,FIRE_LATER
otherwise. If the specified event mode isFIRE_NOW
,fireCollectedModelChanges()
is called afterwards.- Specified by:
removeAllElements
in interfaceILcdModel
- Overrides:
removeAllElements
in classALcdModel
- Parameters:
aEventMode
- the mode for sending out the model change event. This can beFIRE_LATER
orNO_EVENT
.
-
elementsChanged
Deprecated.Description copied from class:ALcdModel
Notifies this model that the elements in the specified vector have changed.This implementation calls
TLcdModelChangedEventSupport#elementsChanged(java.util.Vector, int)
.- Specified by:
elementsChanged
in interfaceILcdModel
- Overrides:
elementsChanged
in classALcdModel
- Parameters:
aObjects
- the vector of elements that have changed.aFireEventMode
- the mode for sending out the model change event. This can beFIRE_LATER
orNO_EVENT
.
-
elementChanged
Deprecated.Description copied from class:ALcdModel
Notifies this model that the specified element has changed.This implementation calls
TLcdModelChangedEventSupport#elementChanged(Object, int)
.- Specified by:
elementChanged
in interfaceILcdModel
- Overrides:
elementChanged
in classALcdModel
- Parameters:
aElement
- the element that has changed.aFireEventMode
- the mode for sending out the model change event. This can beFIRE_LATER
orNO_EVENT
.
-
size
public int size()Deprecated.Description copied from interface:ILcdIntegerIndexedModel
Returns the number of elements in this model.- Specified by:
size
in interfaceILcdIntegerIndexedModel
- Returns:
- the number of elements in this model.
-
elements
Deprecated.Description copied from interface:ILcdModel
Returns an enumeration over all elements of this model. The order in which the elements are enumerated is unspecified by default. -
elementAt
Deprecated.Description copied from interface:ILcdIntegerIndexedModel
Returns the element at the specified index.- Specified by:
elementAt
in interfaceILcdIntegerIndexedModel
- Parameters:
aIndex
- an index into thisILcdModel
.- Returns:
- the element at the specified index.
-
indexOf
Deprecated.Description copied from interface:ILcdIntegerIndexedModel
Returns the index of the first occurrence of the specified element in the model, or -1 if this model does not contain the element. More formally: returns the smallesti
for whichthis.elementAt(i).equals(aElement)
.- Specified by:
indexOf
in interfaceILcdIntegerIndexedModel
- Parameters:
aObject
- the element to search for.- Returns:
- the index of the first occurrence of the specified element in model vector, or -1 if this model does not contain the element.
-
contains
Deprecated.Returns whether a object is present in this model.- Parameters:
aObject
- the object for which the check is performed.- Returns:
- whether aObject is present in this model.
-
getBounds
Deprecated.Description copied from interface:ILcdBounded
Returns theILcdBounds
by which the geometry of thisILcdBounded
object 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
undefined
bounds. You can create undefined bounds using the default constructors ofTLcdLonLatBounds
orTLcdXYBounds
.- Specified by:
getBounds
in interfaceILcdBounded
- Returns:
- the
ILcdBounds
by which the geometry of thisILcdBounded
object is bounded.
-