Bonjour
Je souhaite afficher les POI avec leurs descriptions.
J’ai pris un petit rdf. J’ai 431 Poi:
PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
PREFIX : https://www.datatourisme.gouv.fr/ontology/core#
PREFIX dc: http://purl.org/dc/elements/1.1/
SELECT (COUNT(?nom) as ?pCount)
WHERE {
?nom rdf:type :PointOfInterest.
}
Résultat 431
Mais je n’arrive pas à afficher les descriptions:
PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
PREFIX : https://www.datatourisme.gouv.fr/ontology/core#
PREFIX dc: http://purl.org/dc/elements/1.1/
SELECT
?nom ?description
WHERE {
?nom rdf:type :PointOfInterest.
?obj_event :hasDescription [
dc:description ?description
]
}
J’obtient 57323.
J’arrive donc bien à afficher les POI mais pas à afficher leurs descriptions… pourriez-vous me guider ?
merci