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

com.github.tkurz.sparqlmm.function.spatial.relation.directional.LeftAboveFunction Maven / Gradle / Ivy

Go to download

SPARQL-MM is a multimedia-extension for SPARQL 1.1 (www.w3.org/TR/sparql11-query/‎) implemented for Sesame (http://www.openrdf.org/).

There is a newer version: 2.0
Show newest version
package com.github.tkurz.sparqlmm.function.spatial.relation.directional;

import com.github.tkurz.media.ontology.function.SpatialFunction;
import com.github.tkurz.media.ontology.type.SpatialEntity;
import com.github.tkurz.sparqlmm.Constants;
import com.github.tkurz.sparqlmm.doc.FunctionDoc;
import com.github.tkurz.sparqlmm.utils.FunctionHelper;
import org.openrdf.model.Value;
import org.openrdf.model.ValueFactory;
import org.openrdf.query.algebra.evaluation.ValueExprEvaluationException;
import org.openrdf.query.algebra.evaluation.function.Function;

/**
 * ...
 * 

* Author: Thomas Kurz ([email protected]) */ @FunctionDoc(title = "leftAbove", properties = {SpatialEntity.class, SpatialEntity.class}, reference = FunctionDoc.Reference.spatial, description = "returns true p1 if is left above p2 (based on model m), else false.") public class LeftAboveFunction implements Function { /** * return the URI */ public String getURI() { return Constants.NAMESPACE + "leftAbove"; } @Override public Value evaluate(ValueFactory valueFactory, Value... values) throws ValueExprEvaluationException { try { //check preconditions if(values.length != 2 || !FunctionHelper.isComparable(values)) return FunctionHelper.BOOL_LITERAL_FALSE; //check if values are correct SpatialEntity[] entities = FunctionHelper.toSpatialEntities(values); //evaluate return valueFactory.createLiteral(SpatialFunction.DirectionalFunction.leftAbove(entities[0], entities[1])); } catch (IllegalArgumentException e) { return FunctionHelper.BOOL_LITERAL_FALSE; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy