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

com.github.tkurz.sparqlmm.function.spatial.relation.directional.LeftBesideFunction 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 = "leftBeside", properties = {SpatialEntity.class, SpatialEntity.class}, reference = FunctionDoc.Reference.spatial, description = "returns true p1 if is left beside p2 (based on model m), else false.") public class LeftBesideFunction implements Function { /** * return the URI */ public String getURI() { return Constants.NAMESPACE + "leftBeside"; } @Override public Value evaluate(ValueFactory valueFactory, Value... values) throws ValueExprEvaluationException { try { //check preconditions if(values.length < 2 || values.length > 3 || !FunctionHelper.isComparable(values)) return FunctionHelper.BOOL_LITERAL_FALSE; //check if values are correct SpatialEntity[] entities = FunctionHelper.toSpatialEntities(values[0],values[1]); //TODO check if there is a Model, for now we take default model //evaluate return valueFactory.createLiteral(SpatialFunction.DirectionalFunction.leftBeside(entities[0], entities[1])); } catch (IllegalArgumentException e) { return FunctionHelper.BOOL_LITERAL_FALSE; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy