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

org.opengis.temporal.TemporalOrder 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) 2005, Open Geospatial Consortium Inc.
 *
 *    All Rights Reserved. http://www.opengis.org/legal/
 */
package org.opengis.temporal;

import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;

import org.opengis.annotation.UML;

/**
 * Provides an operation for determining the position of this {@linkplain TemporalPrimitive temporal
 * primitive} relative to another {@linkplain TemporalPrimitive temporal primitive}.
 *
 * @author Stephane Fellah (Image Matters)
 * @author Alexander Petkov
 * @todo The javadoc suggests that this interface should extends some kind of {@link
 *     TemporalPrimitive}.
 */
@UML(identifier = "TM_Order", specification = ISO_19108)
public interface TemporalOrder {
    /** Determines the position of this primitive relative to another primitive. */
    @UML(identifier = "relativePosition", obligation = MANDATORY, specification = ISO_19108)
    RelativePosition relativePosition(TemporalPrimitive other);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy