Class TLcdAltitudeDescriptor
Describes how special altitude values should be interpreted. It maps double
altitude values to TLcdAltitudeInterpretation
s and vice versa.
-
Constructor Summary
ModifierConstructorDescriptionprotected
Creates an altitude descriptor with an empty special value mapping.TLcdAltitudeDescriptor
(Map<Double, TLcdAltitudeInterpretation> aSpecialValueMap) Creates an altitude descriptor with the specified map. -
Method Summary
Modifier and TypeMethodDescriptionstatic TLcdAltitudeDescriptor
Returns the default altitude descriptor with the default mapping.double
getSpecialValue
(TLcdAltitudeInterpretation aInterpretation) Returns a special value for the specified interpretation.getSpecialValueInterpretation
(double aSpecialValue) Returns an interpretation for the specified special value.Returns the mapping between special altitude values and altitude interpretations.boolean
isSpecialValue
(double aValue) Determines whether the specified altitude value is special or not.
-
Constructor Details
-
TLcdAltitudeDescriptor
protected TLcdAltitudeDescriptor()Creates an altitude descriptor with an empty special value mapping. -
TLcdAltitudeDescriptor
Creates an altitude descriptor with the specified map. The mapping is required to use keys of type
Double
and values of typeTLcdAltitudeInterpretation
.Note that the map is converted to an unmodifiable map to keep the instance immutable.
- Parameters:
aSpecialValueMap
- the special value mapping to be used by this instance.
-
-
Method Details
-
getDefaultInstance
Returns the default altitude descriptor with the default mapping. The table below shows the default mapping:
special altitude value interpretation Double.NaN UNKNOWN_ELEVATION Integer.MIN_VALUE + 1 OUTSIDE_RASTER_BOUNDS Integer.MIN_VALUE + 2 OUTSIDE_SHAPE Note that the special value interval
[ Integer.MIN_VALUE + 1, Integer.MIN_VALUE + 100 ]
is reserved for future use.When a special altitude value is required, it is recommended to use the altitude interpretation instead of copying the above values. An altitude descriptor maps the interpretation on a special altitude value.
- Returns:
- the default altitude descriptor with the default mapping.
-
getSpecialValueMappingAsMap
Returns the mapping between special altitude values and altitude interpretations. The keys of this map are
Double
s and represent the special value. The values of this map areTLcdAltitudeInterpretation
s.Note that the returned map is unmodifiable. Attempts to modify the map, whether direct or via its collection views, result in an
UnsupportedOperationException
.- Returns:
- the mapping between special altitude values and altitude interpretations.
-
isSpecialValue
public boolean isSpecialValue(double aValue) Determines whether the specified altitude value is special or not. A value is special if aTLcdAltitudeInterpretation
is found for that value.- Parameters:
aValue
- The altitude value to check.- Returns:
true
if the value is special,false
otherwise.
-
getSpecialValue
Returns a special value for the specified interpretation.
Note that an
IllegalArgumentException
is thrown if this descriptor does not know how to map the specified interpretation.- Parameters:
aInterpretation
- The interpretation to map.- Returns:
- a special value for the specified interpretation.
- Throws:
IllegalArgumentException
- if this descriptor does not know how to map the specified interpretation.
-
getSpecialValueInterpretation
Returns an interpretation for the specified special value.
Note that the specified value is required to be special according to the method
isSpecialValue(double)
, otherwise anIllegalArgumentException
will be thrown.- Parameters:
aSpecialValue
- The special value to map.- Returns:
- an interpretation for the specified special value.
- Throws:
IllegalArgumentException
- if the specified value is not special.
-