Bonjour,
Est-il possible d’avoir une aide pour une requête de flux en .CSV?
Il me faudrait en poi : Bowling , avec comme informations : Nom ; Description courte ; Lattitude ; Longitude ; Cp ; Ville ; Telephone ; Email ; Site-web.
Mes requêtes ne me sortent que des doublons :
PREFIX : <https://www.datatourisme.gouv.fr/ontology/core#>
PREFIX schema: http://schema.org/
PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
PREFIX dc: http://purl.org/dc/elements/1.1/
PREFIX ebucore: http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#
PREFIX owl: http://www.w3.org/2002/07/owl#
PREFIX foaf: http://xmlns.com/foaf/0.1/
Select ?nom ?descri ?longitude ?latitude ?cp ?ville ?telephone ?email
WHERE {
?poi a :BowlingAlley;
:isLocatedAt ?place;
## qui est localisé à ?place
rdfs:label ?nom. ## et a pour nom ?nom.
FILTER langMatches( lang(?nom), "fr" ) ## en français
Filter LangMatches( Lang(?descri), "fr")
?place schema:geo ?geo.## ?place a pour coordonnées géographiques ?geo
?geo schema:longitude ?longitude; ## ?geo a pour longitude ?longitude
schema:latitude ?latitude. ## et a pour latitude ?latitude
?place schema:address ?adress.
?adress schema:addressLocality ?ville;
schema:postalCode ?cp.
Optional{ ?poi :hasContact ?contact.}
?contact schema:email ?email;
schema:telephone ?telephone.
Optional { ?poi :hasDescription ?description.
?description :shortDescription ?descri.
} }
Merci .