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

play-commons-constants.1.0.source-code.play-epsparql-iccs-telco-02.eprq Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
#
# Title: "Friend�s callee transmits geolocation events"
# Description: Emit a FRIEND-GEO-EVENT event when a friend (callee) sents a geolocation event or if he has already sent one during the last 2 minutes (combine CEPAT with historical events):
# FRIEND-GEO-EVENT => �select geolocation event where callee_number = {determined by SAN} during the past 2 minutes� (historical events)
#
# TODO: -
#

PREFIX rdf:     
PREFIX uctelco: 
PREFIX geo:     
PREFIX xsd:     
PREFIX :        

CONSTRUCT {
    :e rdf:type :CalleeGeoLocation .
    :e :stream .
	:e uctelco:phoneNumber "306970987162" .
	:e :calleeLocation  .
	 geo:lat ?Latitude1 ;
		geo:long ?Longitude1 .
	:e :members ?e1 .
}

WHERE {
    EVENT ?id1 {
		?e1 rdf:type :UcTelcoGeoLocation .
        ?e1 :stream  .
		?e1 :location [ geo:lat ?Latitude1; geo:long ?Longitude1 ] .
		?e1 uctelco:phoneNumber "306970987162" .
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy