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

org.opengis.filter.temporal.EndedBy Maven / Gradle / Ivy

/*
 *    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.filter.temporal;

import org.opengis.annotation.XmlElement;

/**
 * Filter operator that determines if another temporal object is located at the end of a temporal
 * object as defined by the Filter Encoding Specification.
 *
 * 

The EndedBy operator is defined by ISO 19108 and has the following semantics: * *

* * * * * * *
t1,t2t1[],t2t1,t2[]t1[],t2[]
n/at1.end = t2n/at1.start < t2.start and t1.end = t2.end
* * @author Justin Deoliveira, OpenGeo * @see http://portal.opengeospatial.org/files/?artifact_id=39968 * @since 8.0 */ @XmlElement("EndedBy") public interface EndedBy extends BinaryTemporalOperator { /** Operator name */ public static final String NAME = "EndedBy"; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy