org.opengis.metadata.extent.SpatialTemporalExtent 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.extent;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.Collection;
import org.opengis.annotation.UML;
/**
* Extent with respect to date/time and spatial boundaries.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 1.0
*/
@UML(identifier = "EX_SpatialTemporalExtent", specification = ISO_19115)
public interface SpatialTemporalExtent extends TemporalExtent {
/**
* Returns the spatial extent component of composite spatial and temporal extent.
*
* @return The list of geographic extents (never {@code null}).
*/
@UML(identifier = "spatialExtent", obligation = MANDATORY, specification = ISO_19115)
Collection extends GeographicExtent> getSpatialExtent();
}