001/*
002 *    GeoAPI - Java interfaces for OGC/ISO standards
003 *    Copyright © 2004-2023 Open Geospatial Consortium, Inc.
004 *    http://www.geoapi.org
005 *
006 *    Licensed under the Apache License, Version 2.0 (the "License");
007 *    you may not use this file except in compliance with the License.
008 *    You may obtain a copy of the License at
009 *
010 *        http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *    Unless required by applicable law or agreed to in writing, software
013 *    distributed under the License is distributed on an "AS IS" BASIS,
014 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 *    See the License for the specific language governing permissions and
016 *    limitations under the License.
017 */
018package org.opengis.metadata.spatial;
019
020import java.util.List;
021import java.util.Collection;
022import java.util.Collections;
023import org.opengis.util.InternationalString;
024import org.opengis.geometry.primitive.Point;
025import org.opengis.annotation.UML;
026
027import static org.opengis.annotation.Obligation.*;
028import static org.opengis.annotation.Specification.*;
029
030
031/**
032 * Grid whose cells are regularly spaced in a geographic or projected coordinate reference system.
033 * Any cell in the grid can be geolocated given its grid coordinate and the grid origin, cell spacing,
034 * and orientation indication of whether or not geographic.
035 *
036 * @author  Martin Desruisseaux (IRD)
037 * @author  Cédric Briançon (Geomatys)
038 * @version 3.0
039 * @since   2.0
040 */
041@UML(identifier="MD_Georectified", specification=ISO_19115)
042public interface Georectified extends GridSpatialRepresentation {
043    /**
044     * Indication of whether or not geographic position points are available to test the
045     * accuracy of the georeferenced grid data.
046     *
047     * @return whether or not geographic position points are available to test accuracy.
048     */
049    @UML(identifier="checkPointAvailability", obligation=MANDATORY, specification=ISO_19115)
050    boolean isCheckPointAvailable();
051
052    /**
053     * Description of geographic position points used to test the accuracy of the georeferenced grid data.
054     *
055     * @return description of geographic position points used to test accuracy, or {@code null}.
056     *
057     * @condition Mandatory if {@linkplain #isCheckPointAvailable() check point availability} equals {@code true}.
058     */
059    @UML(identifier="checkPointDescription", obligation=CONDITIONAL, specification=ISO_19115)
060    InternationalString getCheckPointDescription();
061
062    /**
063     * Earth location in the coordinate system defined by the Spatial Reference System
064     * and the grid coordinate of the cells at opposite ends of grid coverage along two
065     * diagonals in the grid spatial dimensions.
066     *
067     * <p>The {@linkplain List#size() list size} shall be 2 or 4.
068     * The list shall contain at least two corner points along one diagonal.
069     * or may contains the 4 corner points of the georectified grid.</p>
070     *
071     * <p>The first corner point corresponds to the origin of the grid.</p>
072     *
073     * @return the corner points.
074     */
075    @UML(identifier="cornerPoints", obligation=MANDATORY, specification=ISO_19115)
076    List<? extends Point> getCornerPoints();
077
078    /**
079     * Earth location in the coordinate system defined by the Spatial Reference System
080     * and the grid coordinate of the cell halfway between opposite ends of the grid in the
081     * spatial dimensions.
082     *
083     * <div class="warning"><b>Upcoming API change</b><br>
084     * This method will be renamed {@code getCentrePoint()} in GeoAPI 4.0
085     * for compliance with ISO 19115:2014 standard.</div>
086     *
087     * @return the center point, or {@code null}.
088     */
089    @UML(identifier="centrePoint", obligation=OPTIONAL, specification=ISO_19115)
090    default Point getCenterPoint() {
091        return null;
092    }
093
094    /**
095     * Point in a pixel corresponding to the Earth location of the pixel.
096     *
097     * @return earth location of the pixel.
098     */
099    @UML(identifier="pointInPixel", obligation=MANDATORY, specification=ISO_19115)
100    PixelOrientation getPointInPixel();
101
102    /**
103     * General description of the transformation.
104     *
105     * @return general description of the transformation, or {@code null}.
106     */
107    @UML(identifier="transformationDimensionDescription", obligation=OPTIONAL, specification=ISO_19115)
108    default InternationalString getTransformationDimensionDescription() {
109        return null;
110    }
111
112    /**
113     * Information about which grid dimensions are the spatial dimensions.
114     * The list should contain at most 2 elements.
115     *
116     * @return information about which grid dimensions are the spatial dimensions, or {@code null}.
117     */
118    @UML(identifier="transformationDimensionMapping", obligation=OPTIONAL, specification=ISO_19115)
119    default Collection<? extends InternationalString> getTransformationDimensionMapping() {
120        return Collections.emptyList();
121    }
122
123    /**
124     * Geographic references used to validate georectification of the data.
125     *
126     * @return geographic references used to validate georectification.
127     */
128    @UML(identifier="checkPoint", obligation=OPTIONAL, specification=ISO_19115_2)
129    default Collection<? extends GCP> getCheckPoints() {
130        return Collections.emptyList();
131    }
132}