org.opengis.metadata.spatial.Georeferenceable 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.Collection;
import org.opengis.annotation.UML;
import org.opengis.metadata.citation.Citation;
import org.opengis.util.InternationalString;
import org.opengis.util.Record;
/**
* Grid with cells irregularly spaced in any given geographic/map projection coordinate system,
* whose individual cells can be geolocated using geolocation information supplied with the data but
* cannot be geolocated from the grid properties alone.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@UML(identifier = "MD_Georeferenceable", specification = ISO_19115)
public interface Georeferenceable extends GridSpatialRepresentation {
/**
* Indication of whether or not control point(s) exists.
*
* @return Whether or not control point(s) exists.
*/
@UML(identifier = "controlPointAvailability", obligation = MANDATORY, specification = ISO_19115)
boolean isControlPointAvailable();
/**
* Indication of whether or not orientation parameters are available.
*
* @return Whether or not orientation parameters are available.
*/
@UML(
identifier = "orientationParameterAvailability",
obligation = MANDATORY,
specification = ISO_19115
)
boolean isOrientationParameterAvailable();
/**
* Description of parameters used to describe sensor orientation.
*
* @return Description of parameters used to describe sensor orientation, or {@code null}.
*/
@UML(
identifier = "orientationParameterDescription",
obligation = OPTIONAL,
specification = ISO_19115
)
InternationalString getOrientationParameterDescription();
/**
* Terms which support grid data georeferencing.
*
* @return Terms which support grid data georeferencing.
* @since GeoAPI 2.1
*/
@UML(identifier = "georeferencedParameters", obligation = MANDATORY, specification = ISO_19115)
Record getGeoreferencedParameters();
/**
* Reference providing description of the parameters.
*
* @return Reference providing description of the parameters.
*/
@UML(identifier = "parameterCitation", obligation = OPTIONAL, specification = ISO_19115)
Collection extends Citation> getParameterCitation();
}