Package org.opengis.metadata.spatial
Interface Dimension
-
@Classifier(DATATYPE) @UML(identifier="MD_Dimension", specification=ISO_19115) public interface Dimension
Axis properties.- Since:
- 2.0
-
-
Method Summary
Modifier and Type Method Description default InternationalStringgetDimensionDescription()Description of the axis.DimensionNameTypegetDimensionName()Name of the axis.IntegergetDimensionSize()Number of elements along the axis.default InternationalStringgetDimensionTitle()Enhancement / modifier of the dimension name.default DoublegetResolution()Degree of detail in the grid dataset.
-
-
-
Method Detail
-
getDimensionName
@UML(identifier="dimensionName", obligation=MANDATORY, specification=ISO_19115) DimensionNameType getDimensionName()
Name of the axis.- Returns:
- name of the axis.
-
getDimensionSize
@UML(identifier="dimensionSize", obligation=MANDATORY, specification=ISO_19115) Integer getDimensionSize()
Number of elements along the axis.- Returns:
- number of elements along the axis.
-
getResolution
@UML(identifier="resolution", obligation=OPTIONAL, specification=ISO_19115) default Double getResolution()
Degree of detail in the grid dataset.Upcoming API change — units of measurement
The return type of this method may change in GeoAPI 4.0. It may be replaced by thejavax.measure.quantity.Quantitytype in order to provide unit of measurement together with the value.- Returns:
- degree of detail in the grid dataset, or
null. - Unit:
- Measure
-
getDimensionTitle
@UML(identifier="dimensionTitle", obligation=OPTIONAL, specification=ISO_19115) default InternationalString getDimensionTitle()
Enhancement / modifier of the dimension name.Example: dimensionName = "column", dimensionTitle = "longitude"- Returns:
- enhancement / modifier of the dimension name, or
nullif none. - Since:
- 3.1
-
getDimensionDescription
@UML(identifier="dimensionDescription", obligation=OPTIONAL, specification=ISO_19115) default InternationalString getDimensionDescription()
Description of the axis.- Returns:
- description of the axis, or
nullif none. - Since:
- 3.1
-
-