play-commons-constants.1.0.source-code.play-epsparql-iccs-telco-02a.eprq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-commons-constants Show documentation
Show all versions of play-commons-constants Show documentation
Some constants of important, shared values for the platform
#
# 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 "306946466550" .
: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 "306946466550" .
}
}