
xsparql.base.query-kml2.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 geo:
{
for $person $fn $ln $long $lat
from
where {
$person a foaf:Person; foaf:firstName $fn;foaf:lastName $ln;
foaf:based_near $gps.
$gps a geo:Point; geo:long $long; geo:lat $lat.
}
return
{fn:concat("Location of ", $fn, " ", $ln)}
{fn:concat($long, ",", $lat,
",0")}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy