All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.metadata.spatial.Georectified Maven / Gradle / Ivy

There is a newer version: 24.2-oss84-1
Show newest version
/*
 *    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 java.util.List;
import org.opengis.annotation.UML;
import org.opengis.geometry.primitive.Point;
import org.opengis.util.InternationalString;

/**
 * Grid whose cells are regularly spaced in a geographic (i.e., lat / long) or map coordinate system
 * defined in the Spatial Referencing System (SRS) so that any cell in the grid can be geolocated
 * given its grid coordinate and the grid origin, cell spacing, and orientation indication of
 * whether or not geographic.
 *
 * @version ISO 19115
 * @author Martin Desruisseaux (IRD)
 * @since GeoAPI 2.0
 */
@UML(identifier = "MD_Georectified", specification = ISO_19115)
public interface Georectified extends GridSpatialRepresentation {
    /**
     * Indication of whether or not geographic position points are available to test the accuracy of
     * the georeferenced grid data.
     *
     * @return Whether or not geographic position points are available to test accuracy.
     */
    @UML(identifier = "checkPointAvailability", obligation = MANDATORY, specification = ISO_19115)
    boolean isCheckPointAvailable();

    /**
     * Description of geographic position points used to test the accuracy of the georeferenced grid
     * data.
     *
     * @return Description of geographic position points used to test accuracy, or {@code null}.
     */
    @UML(identifier = "checkPointDescription", obligation = OPTIONAL, specification = ISO_19115)
    InternationalString getCheckPointDescription();

    /**
     * Earth location in the coordinate system defined by the Spatial Reference System and the grid
     * coordinate of the cells at opposite ends of grid coverage along two diagonals in the grid
     * spatial dimensions. There are four corner points in a georectified grid; at least two corner
     * points along one diagonal are required.
     *
     * @return The corner points.
     */
    @UML(identifier = "cornerPoints", obligation = MANDATORY, specification = ISO_19115)
    List getCornerPoints();

    /**
     * Earth location in the coordinate system defined by the Spatial Reference System and the grid
     * coordinate of the cell halfway between opposite ends of the grid in the spatial dimensions.
     *
     * @return The center point, or {@code null}.
     */
    @UML(identifier = "centerPoint", obligation = OPTIONAL, specification = ISO_19115)
    Point getCenterPoint();

    /**
     * Point in a pixel corresponding to the Earth location of the pixel.
     *
     * @return Earth location of the pixel.
     */
    @UML(identifier = "pointInPixel", obligation = MANDATORY, specification = ISO_19115)
    PixelOrientation getPointInPixel();

    /**
     * Description of the information about which grid dimensions are the spatial dimensions.
     *
     * @return Description of the information about grid dimensions, or {@code null}.
     */
    @UML(
        identifier = "transformationDimensionDescription",
        obligation = OPTIONAL,
        specification = ISO_19115
    )
    InternationalString getTransformationDimensionDescription();

    /**
     * Information about which grid dimensions are the spatial dimensions.
     *
     * @return Information about which grid dimensions are the spatial dimensions, or {@code null}.
     */
    @UML(
        identifier = "transformationDimensionMapping",
        obligation = OPTIONAL,
        specification = ISO_19115
    )
    Collection getTransformationDimensionMapping();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy