- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,Band
,RangeDimension
Range of wavelengths in the electromagnetic spectrum.
The following property is conditional (i.e. mandatory under some circumstances)
in a well-formed metadata according ISO 19115:
MD_Band
└─units……
Units of data in each dimension included in the resource.Limitations
- Instances of this class are not synchronized for multi-threading. Synchronization, if needed, is caller's responsibility.
- Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases.
Serialization support is appropriate for short term storage or RMI between applications running the
same version of Apache SIS. For long term storage, use
XML
instead.
- Since:
- 0.3
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
Fields inherited from class ISOMetadata
identifiers
-
Constructor Summary
ConstructorDescriptionConstructs an initially empty band.DefaultBand
(Band object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultBand
castOrCopy
(Band object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Returns the designation of criterion for defining maximum and minimum wavelengths for a spectral band.Returns the longest wavelength that the sensor is capable of collecting within a designated band.Returns the shortest wavelength that the sensor is capable of collecting within a designated band.Returns units in which sensor wavelengths are expressed.Returns polarization of the radiation detected.Returns the smallest distance between which separate points can be distinguished, as specified in instrument design.Returns the wavelength at which the response is the highest.Returns the number of discrete numerical values in the grid data.Returns type of transfer function to be used when scaling a physical value for a given element.Returns the polarization of the radiation transmitted.Returns the units of data as a unit of length.void
setBandBoundaryDefinition
(BandDefinition newValue) Sets designation of criterion for defining maximum and minimum wavelengths for a spectral band.void
setBoundMax
(Double newValue) Sets the longest wavelength that the sensor is capable of collecting within a designated band.void
setBoundMin
(Double newValue) Sets the shortest wavelength that the sensor is capable of collecting within a designated band.void
setBoundUnits
(Unit<Length> newValue) Sets a new units in which sensor wavelengths are expressed.void
Sets the polarization of the radiation detected.void
setNominalSpatialResolution
(Double newValue) Sets the smallest distance between which separate points can be distinguished, as specified in instrument design.void
setPeakResponse
(Double newValue) Sets the wavelength at which the response is the highest.void
setToneGradation
(Integer newValue) Sets the number of discrete numerical values in the grid data.void
setTransferFunctionType
(TransferFunctionType newValue) Sets the type of transfer function to be used when scaling a physical value for a given element.void
Sets the polarization of the radiation transmitted.void
Sets the units of data as a unit of length.Methods inherited from class DefaultSampleDimension
getBitsPerValue, getMaxValue, getMeanValue, getMinValue, getNumberOfValues, getOffset, getOtherProperty, getOtherPropertyType, getRangeElementDescriptions, getScaleFactor, getStandardDeviation, setBitsPerValue, setMaxValue, setMeanValue, setMinValue, setNumberOfValues, setOffset, setOtherProperty, setOtherPropertyType, setRangeElementDescriptions, setScaleFactor, setStandardDeviation
Methods inherited from class DefaultRangeDimension
castOrCopy, getDescription, getDescriptor, getNames, getSequenceIdentifier, setDescription, setDescriptor, setNames, setSequenceIdentifier
Methods inherited from class ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
Methods inherited from class ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface Band
getBitsPerValue, getMaxValue, getMinValue, getOffset, getScaleFactor
Methods inherited from interface RangeDimension
getDescriptor, getSequenceIdentifier
-
Constructor Details
-
DefaultBand
public DefaultBand()Constructs an initially empty band. -
DefaultBand
Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, because the other metadata contained in the given object are not recursively copied.Note on properties validation
This constructor does not verify the property values of the given metadata (e.g. whether it contains unexpected negative values). This is because invalid metadata exist in practice, and verifying their validity in this copy constructor is often too late. Note that this is not the only hole, as invalid metadata instances can also be obtained by unmarshalling an invalid XML document.- Parameters:
object
- the metadata to copy values from, ornull
if none.- See Also:
-
-
Method Details
-
castOrCopy
Returns a SIS metadata implementation with the values of the given arbitrary implementation. This method performs the first applicable action in the following choices:- If the given object is
null
, then this method returnsnull
. - Otherwise if the given object is already an instance of
DefaultBand
, then it is returned unchanged. - Otherwise a new
DefaultBand
instance is created using the copy constructor and returned. Note that this is a shallow copy operation, because the other metadata contained in the given object are not recursively copied.
- Parameters:
object
- the object to get as a SIS implementation, ornull
if none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
null
if the argument was null.
- If the given object is
-
getBoundMin
@ValueRange(minimum=0.0) @UML(identifier="boundMin", obligation=OPTIONAL, specification=ISO_19115) public Double getBoundMin()Returns the shortest wavelength that the sensor is capable of collecting within a designated band. The units of measurement is given bygetBoundUnits()
.- Returns:
- Shortest wavelength that the sensor is capable of collecting within a designated band,
or
null
if unspecified. - Since:
- 0.5
-
setBoundMin
Sets the shortest wavelength that the sensor is capable of collecting within a designated band.- Parameters:
newValue
- the new shortest wavelength, ornull
.- Throws:
IllegalArgumentException
- if the given value is negative.- Since:
- 0.5
-
getBoundMax
@ValueRange(minimum=0.0) @UML(identifier="boundMax", obligation=OPTIONAL, specification=ISO_19115) public Double getBoundMax()Returns the longest wavelength that the sensor is capable of collecting within a designated band. The units of measurement is given bygetUnits()
.- Returns:
- longest wavelength that the sensor is capable of collecting within a designated band,
or
null
if unspecified. - Since:
- 0.5
-
setBoundMax
Sets the longest wavelength that the sensor is capable of collecting within a designated band.- Parameters:
newValue
- the new longest wavelength, ornull
.- Throws:
IllegalArgumentException
- if the given value is negative.- Since:
- 0.5
-
getBoundUnits
@UML(identifier="boundUnits", obligation=OPTIONAL, specification=ISO_19115) public Unit<Length> getBoundUnits()Returns units in which sensor wavelengths are expressed.- Returns:
- units in which sensor wavelengths are expressed.
- Since:
- 0.5
- See Also:
-
setBoundUnits
Sets a new units in which sensor wavelengths are expressed.- Parameters:
newValue
- the new unit.- Since:
- 0.5
-
getBandBoundaryDefinition
Returns the designation of criterion for defining maximum and minimum wavelengths for a spectral band.- Specified by:
getBandBoundaryDefinition
in interfaceBand
- Returns:
- criterion for defining maximum and minimum wavelengths, or
null
.
-
setBandBoundaryDefinition
Sets designation of criterion for defining maximum and minimum wavelengths for a spectral band.- Parameters:
newValue
- the new band definition.
-
getUnits
Returns the units of data as a unit of length.Upcoming API change — generalization
As of ISO 19115:2014, the units of wavelength is ratherboundUnits
. The restriction for units of length in thisunits
property may be relaxed in GeoAPI 4.0.- Specified by:
getUnits
in interfaceBand
- Overrides:
getUnits
in classDefaultSampleDimension
- Returns:
- The units of data.
-
setUnits
Sets the units of data as a unit of length.Upcoming precondition change — relaxation
The current implementation requires the unit to be an instance ofUnit<Length>
, otherwise aClassCastException
is thrown. This is because the value returned bygetUnits()
was restricted by ISO 19115:2003 to units of length. However this restriction may be relaxed in GeoAPI 4.0.- Overrides:
setUnits
in classDefaultSampleDimension
- Parameters:
newValue
- The new units of data as an instance ofUnit<Length>
.
-
getPeakResponse
Returns the wavelength at which the response is the highest. The units of measurement is given bygetBoundUnits()
.- Specified by:
getPeakResponse
in interfaceBand
- Returns:
- wavelength at which the response is the highest, or
null
if unspecified.
-
setPeakResponse
Sets the wavelength at which the response is the highest.- Parameters:
newValue
- the new peak response, ornull
.- Throws:
IllegalArgumentException
- if the given value is negative.
-
getToneGradation
Returns the number of discrete numerical values in the grid data.- Specified by:
getToneGradation
in interfaceBand
- Returns:
- number of discrete numerical values in the grid data, or
null
if none.
-
setToneGradation
Sets the number of discrete numerical values in the grid data.- Parameters:
newValue
- the new tone gradation.
-
getNominalSpatialResolution
Returns the smallest distance between which separate points can be distinguished, as specified in instrument design.- Specified by:
getNominalSpatialResolution
in interfaceBand
- Overrides:
getNominalSpatialResolution
in classDefaultSampleDimension
- Returns:
- smallest distance between which separate points can be distinguished, or
null
.
-
setNominalSpatialResolution
Sets the smallest distance between which separate points can be distinguished, as specified in instrument design.- Overrides:
setNominalSpatialResolution
in classDefaultSampleDimension
- Parameters:
newValue
- the new nominal spatial resolution.
-
getTransferFunctionType
Returns type of transfer function to be used when scaling a physical value for a given element.- Specified by:
getTransferFunctionType
in interfaceBand
- Overrides:
getTransferFunctionType
in classDefaultSampleDimension
- Returns:
- type of transfer function, or
null
.
-
setTransferFunctionType
Sets the type of transfer function to be used when scaling a physical value for a given element.- Overrides:
setTransferFunctionType
in classDefaultSampleDimension
- Parameters:
newValue
- the new transfer function value.
-
getTransmittedPolarization
Returns the polarization of the radiation transmitted.Upcoming API change
This method may be renamedgetTransmittedPolarization
and its return type replaced byPolarisationOrientation
("z" letter replaced by "s" letter) in GeoAPI 4.0 for compliance with ISO 19115-2:2019.- Specified by:
getTransmittedPolarization
in interfaceBand
- Returns:
- polarization of the radiation transmitted, or
null
.
-
setTransmittedPolarization
Sets the polarization of the radiation transmitted.Upcoming API change
This method may be renamedsetTransmittedPolarization
and its argument type replaced byPolarisationOrientation
("z" letter replaced by "s" letter) in GeoAPI 4.0 for compliance with ISO 19115-2:2019.- Parameters:
newValue
- the new transmitted polarization.
-
getDetectedPolarization
Returns polarization of the radiation detected.Upcoming API change
This method may be renamedgetDetectedPolarization
and its return type replaced byPolarisationOrientation
("z" letter replaced by "s" letter) in GeoAPI 4.0 for compliance with ISO 19115-2:2019.- Specified by:
getDetectedPolarization
in interfaceBand
- Returns:
- polarization of the radiation detected, or
null
.
-
setDetectedPolarization
Sets the polarization of the radiation detected.Upcoming API change
This method may be renamedsetDetectedPolarization
and its argument type replaced byPolarisationOrientation
("z" letter replaced by "s" letter) in GeoAPI 4.0 for compliance with ISO 19115-2:2019.- Parameters:
newValue
- the new detected polarization.
-