UTF-8 formatting in SPARQL

Posted by john on Stack Overflow See other posts from Stack Overflow or by john
Published on 2010-04-19T22:13:16Z Indexed on 2010/04/20 9:43 UTC
Read the original article Hit count: 485

Filed under:
|

How can I "say" to SPARQL that ?churchname is in UTF-8 formatting? because response is like:Pražský hrad

PREFIX lgv: <http://linkedgeodata.org/vocabulary#>
PREFIX abc: <http://dbpedia.org/class/yago/>
SELECT ?churchname
WHERE
{
<http://dbpedia.org/resource/Prague> geo:geometry ?gm .
?church a lgv:castle .
?church geo:geometry ?churchgeo .
?church lgv:name ?churchname .
FILTER ( bif:st_intersects (?churchgeo,?gm, 10))
}
GROUP BY ?churchname
ORDER BY ?churchname

© Stack Overflow or respective owner

Related posts about sparql

Related posts about utf-8