gpt4 book ai didi

sparql - SPARQL 作为字符串返回的数字属性

转载 作者:行者123 更新时间:2023-12-02 00:44:32 27 4
gpt4 key购买 nike

我在处理数字数据类型时遇到 SPARQL 问题。

我有一个本体 ( http://cabas.ugr.es/ontology/ugr ),我在其中定义了一对属性,表示特定性别的学生人数:

<http://cabas.ugr.es/ontology/ugr#hombres>
a owl:DatatypeProperty, owl:FunctionalProperty, rdf:Property ;
rdfs:label
"hombres"@es,
"men"@en ;
rdfs:comment
"Número de estudiantes hombres."@es,
"Number of male students."@en ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:isDefinedBy <http://cabas.ugr.es/ontology/ugr#> ;
owl:sameAs <http://cabas.ugr.es/ontology/ugr#hombres> ;
owl:inverseOf <http://cabas.ugr.es/ontology/ugr#mujeres> ;
ns1:term_status "stable" .

<http://cabas.ugr.es/ontology/ugr#mujeres>
a owl:DatatypeProperty, owl:FunctionalProperty, rdf:Property ;
rdfs:label
"mujeres"@es,
"women"@en ;
rdfs:comment
"Número de estudiantes mujeres."@es,
"Number of female students."@en ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:isDefinedBy <http://cabas.ugr.es/ontology/ugr#> ;
owl:sameAs <http://cabas.ugr.es/ontology/ugr#mujeres> ;
owl:inverseOf <http://cabas.ugr.es/ontology/ugr#hombres> ;
ns1:term_status "stable" .

我在 Virtuoso ( http://cabas.ugr.es:8890/sparql ) 上安装了一个 SPARQL 端点,我在其中输入了例如以下查询:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ugr: <http://cabas.ugr.es/ontology/ugr#>

SELECT ?X ?titulacion ?rama ?hombres ?mujeres
WHERE {
?X ugr:Titulación ?titulacion .
?X ugr:RamaConocimiento ?rama .
?X ugr:hombres ?hombres .
?X ugr:mujeres ?mujeres
}

(对应 this link )

它返回所有记录,但是字段 "hombres""mujeres" 将它们返回给我,就好像它是一个字符串而不是一个数值,所以例如,不可能应用像 FILTER (?hombres > 500) 这样的过滤器。知道我哪里错了吗?

顺便说一下,可以通过这些链接访问本体和具有值的资源:

最佳答案

为了将数字视为数字,您需要这样定义它们。

现在您将它们定义为字符串:

<http://cabas.ugr.es/resources/MatriculasGrado1516#21>
ns0:hombres "91" ;
ns0:mujeres "68" .

要将它们定义为整数,您需要将它们的类型设置为xsd:integer:

<http://cabas.ugr.es/resources/MatriculasGrado1516#21>
ns0:hombres "91"^^xsd:integer ;
ns0:mujeres "68"^^xsd:integer .

如果需要,字符串也可以在查询中转换为整数。例如:

FILTER(xsd:integer(?hombres) > 500)

关于sparql - SPARQL 作为字符串返回的数字属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44632318/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com