Package org.opengis.metadata.spatial
Interface GCPCollection
-
- All Superinterfaces:
GeolocationInformation
@UML(identifier="MI_GCPCollection", specification=ISO_19115_2) public interface GCPCollection extends GeolocationInformation
Information about a control point collection.- Since:
- 2.3
- Version:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Integer
getCollectionIdentification()
Identifier of the GCP collection.InternationalString
getCollectionName()
Name of the GCP collection.ReferenceSystem
getCoordinateReferenceSystem()
Coordinate system in which the ground control points are defined.java.util.Collection<? extends GCP>
getGCPs()
Ground control point(s) used in the collection.-
Methods inherited from interface org.opengis.metadata.spatial.GeolocationInformation
getQualityInfo
-
-
-
-
Method Detail
-
getCollectionIdentification
@UML(identifier="collectionIdentification", obligation=MANDATORY, specification=ISO_19115_2) java.lang.Integer getCollectionIdentification()
Identifier of the GCP collection.- Returns:
- The identifier.
-
getCollectionName
@UML(identifier="collectionName", obligation=MANDATORY, specification=ISO_19115_2) InternationalString getCollectionName()
Name of the GCP collection.- Returns:
- Name of the GCP collection.
-
getCoordinateReferenceSystem
@UML(identifier="coordinateReferenceSystem", obligation=MANDATORY, specification=ISO_19115_2) ReferenceSystem getCoordinateReferenceSystem()
Coordinate system in which the ground control points are defined.- Returns:
- Coordinate system in which the ground control points are defined.
-
getGCPs
@UML(identifier="gcp", obligation=MANDATORY, specification=ISO_19115_2) java.util.Collection<? extends GCP> getGCPs()
Ground control point(s) used in the collection.- Returns:
- Ground control point(s).
-
-