Может кто-нибудь помочь мне в sparql.Я работаю над проектом, основанным на онтологиях.У меня есть структура в сове-протеже, как
City-hasWeatherConditions-(multiple value i.e temp,dewpoint)
Я хочу получить значения для каждого атрибута.
PREFIX pro: <http://www.semanticweb.org/computer/ontologies/2019/0/fyp.owl#> select ?indi ?val where { { select ?indi where { pro:Lahore <http://www.semanticweb.org/computer/ontologies/2019/0/fyp.owl#hasWeatherCondition> ?indi } } { select ?val where { <http://www.semanticweb.org/computer/ontologies/2019/0/fyp.owl#DewPoint> <http://www.semanticweb.org/computer/ontologies/2019/0/fyp.owl#hasDewPoint> ?val } } }