
xsparql.base.query-kml0.xsparql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xsparql-test-suite Show documentation
Show all versions of xsparql-test-suite Show documentation
XSPARQL compliance test suite
The newest version!
prefix foaf:
prefix rdf:
prefix geo:
{
for $person $fn $ln $long $lat
from
where {
$person rdf:type foaf:Person.
$person foaf:based_near $gps.
$gps rdf:type geo:Point.
$gps geo:long $long.
$gps geo:lat $lat.
$person foaf:firstName $fn.
$person foaf:lastName $ln.
}
return
{fn:concat("Location of ", $fn, " ", $ln)}
{fn:concat($long, ",", $lat, ",0")}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy