org.opengis.metadata.spatial.Dimension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2004-2005, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.metadata.spatial;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import org.opengis.annotation.UML;
/**
* Axis properties.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@UML(identifier = "MD_Dimension", specification = ISO_19115)
public interface Dimension {
/**
* Name of the axis.
*
* @return Name of the axis.
*/
@UML(identifier = "dimensionName", obligation = MANDATORY, specification = ISO_19115)
DimensionNameType getDimensionName();
/**
* Number of elements along the axis.
*
* @return Number of elements along the axis.
*/
@UML(identifier = "dimensionSize", obligation = MANDATORY, specification = ISO_19115)
Integer getDimensionSize();
/**
* Degree of detail in the grid dataset.
*
* @return Degree of detail in the grid dataset, or {@code null}.
* @unitof Measure
*/
@UML(identifier = "resolution", obligation = OPTIONAL, specification = ISO_19115)
Double getResolution();
}