Outils personnels
User menu

Serveur SPARQL

De Dbpedia.fr.

(Différences entre les versions)
m (coquille dans un lien)
m (items et <nowiki>)
Ligne 6 : Ligne 6 :
* [http://dbpedia.inria.fr/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=select+*+where+{%3Chttp%3A%2F2Ffr.dbpedia.org%2Fresource%2FParis%3E+%3Fr+%3Fp}&format=text%2Fhtml&debug=on&timeout= Informations sur Paris]
* [http://dbpedia.inria.fr/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=select+*+where+{%3Chttp%3A%2F2Ffr.dbpedia.org%2Fresource%2FParis%3E+%3Fr+%3Fp}&format=text%2Fhtml&debug=on&timeout= Informations sur Paris]
-
  select * where {<http://fr.dbpedia.org/resource/Paris> ?r ?p}  
+
  <nowiki>select * where {<http://fr.dbpedia.org/resource/Paris> ?r ?p}</nowiki>
-
[http://dbpedia.inria.fr/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=select+*+where+{%3Fville+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fontology%2Fregion%3E+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fresource%2F%25C3%258Ele-de-France%3E.+%3Fville+rdf%3Atype+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fontology%2FSettlement%3E}&format=text%2Fhtml&debug=on&timeout= Communes d'Ile de France]
+
* [http://dbpedia.inria.fr/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=select+*+where+{%3Fville+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fontology%2Fregion%3E+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fresource%2F%25C3%258Ele-de-France%3E.+%3Fville+rdf%3Atype+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fontology%2FSettlement%3E}&format=text%2Fhtml&debug=on&timeout= Communes d'Ile de France]
-
  prefix dbfr-ontology: <http://fr.dbpedia.org/ontology/>
+
  <nowiki>prefix dbfr-ontology: <http://fr.dbpedia.org/ontology/>
  select * where {
  select * where {
     ?ville dbfr-ontology:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France>.  
     ?ville dbfr-ontology:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France>.  
     ?ville rdf:type dbfr-ontology:Settlement
     ?ville rdf:type dbfr-ontology:Settlement
-
  }
+
  }</nowiki>
-
[http://dbpedia.inria.fr/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=prefix+dbfr-ontology%3A+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fontology%2F%3E%0D%0Aselect+*+where+{%0D%0A+++%3Fville+dbfr-ontology%3Aregion+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fresource%2F%25C3%258Ele-de-France%3E+.+%0D%0A+++%3Fville+rdf%3Atype+dbfr-ontology%3ASettlement+.%0D%0A+++%3Fville+dbfr-ontology%3ApopulationTotal+%3Fpopulation+.%0D%0A+++FILTER+%28%3Fpopulation+%3E+100000%29%0D%0A}&format=text%2Fhtml&debug=on&timeout= communes d'Ile de France de plus de 100 000 habitants]
+
* [http://dbpedia.inria.fr/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=prefix+dbfr-ontology%3A+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fontology%2F%3E%0D%0Aselect+*+where+{%0D%0A+++%3Fville+dbfr-ontology%3Aregion+%3Chttp%3A%2F%2Ffr.dbpedia.org%2Fresource%2F%25C3%258Ele-de-France%3E+.+%0D%0A+++%3Fville+rdf%3Atype+dbfr-ontology%3ASettlement+.%0D%0A+++%3Fville+dbfr-ontology%3ApopulationTotal+%3Fpopulation+.%0D%0A+++FILTER+%28%3Fpopulation+%3E+100000%29%0D%0A}&format=text%2Fhtml&debug=on&timeout= communes d'Ile de France de plus de 100 000 habitants]
-
  prefix dbfr-ontology: <http://fr.dbpedia.org/ontology/>
+
  <nowiki>prefix dbfr-ontology: <http://fr.dbpedia.org/ontology/>
  select * where {
  select * where {
   ?ville dbfr-ontology:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> .  
   ?ville dbfr-ontology:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> .  
Ligne 22 : Ligne 22 :
   ?ville dbfr-ontology:populationTotal ?population .
   ?ville dbfr-ontology:populationTotal ?population .
   FILTER (?population > 100000)
   FILTER (?population > 100000)
-
  }
+
  }</nowiki>

Version du 15 février 2012 à 17:06

Accessible à l'adresse http://dbpedia.inria.fr/sparql.

Données chargées : Extraction du 16 décembre 2011

Exemples de requêtes

select * where {<http://fr.dbpedia.org/resource/Paris> ?r ?p}
prefix dbfr-ontology: <http://fr.dbpedia.org/ontology/>
 select * where {
    ?ville dbfr-ontology:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France>. 
    ?ville rdf:type dbfr-ontology:Settlement
 }
prefix dbfr-ontology: <http://fr.dbpedia.org/ontology/>
 select * where {
   ?ville dbfr-ontology:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> . 
   ?ville rdf:type dbfr-ontology:Settlement .
   ?ville dbfr-ontology:populationTotal ?population .
   FILTER (?population > 100000)
 }