org.opengis.metadata.spatial.GridSpatialRepresentation 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 java.util.List;
import org.opengis.annotation.UML;
/**
* Basic information required to uniquely identify a resource or resources.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@UML(identifier = "MD_GridSpatialRepresentation", specification = ISO_19115)
public interface GridSpatialRepresentation extends SpatialRepresentation {
/**
* Number of independent spatial-temporal axes.
*
* @return Number of independent spatial-temporal axes.
*/
@UML(identifier = "numberOfDimensions", obligation = MANDATORY, specification = ISO_19115)
Integer getNumberOfDimensions();
/**
* Information about spatial-temporal axis properties.
*
* @return Information about spatial-temporal axis properties.
*/
@UML(identifier = "axisDimensionsProperties", obligation = MANDATORY, specification = ISO_19115)
List extends Dimension> getAxisDimensionsProperties();
/**
* Identification of grid data as point or cell.
*
* @return Identification of grid data as point or cell.
*/
@UML(identifier = "cellGeometry", obligation = MANDATORY, specification = ISO_19115)
CellGeometry getCellGeometry();
/**
* Indication of whether or not parameters for transformation exists.
*
* @return Whether or not parameters for transformation exists.
*/
@UML(
identifier = "transformationParameterAvailability",
obligation = MANDATORY,
specification = ISO_19115
)
boolean isTransformationParameterAvailable();
}