Outils pour utilisateurs

Outils du site


thatcamp_2014:donnees_de_la_communaute_europeenne

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
thatcamp_2014:donnees_de_la_communaute_europeenne [2014/10/14 08:33]
Francesco Beretta [Un jeu de données de test]
thatcamp_2014:donnees_de_la_communaute_europeenne [2014/10/29 12:03] (Version actuelle)
Ligne 94: Ligne 94:
  
  
-====== Vider un graphe ​osu Fuseki ======+====== Requêtes dans Fuseki ====== 
 + 
 + 
 +<​code>​ 
 +PREFIX ​ dc:   <​http://​purl.org/​dc/​elements/​1.1/>​ 
 +PREFIX ​ rdfs: <​http://​www.w3.org/​2000/​01/​rdf-schema#>​ 
 +PREFIX ​ meg:  <​http://​mon_espace.org/​graph/>​ 
 +PREFIX ​ apf:  <​http://​jena.hpl.hp.com/​ARQ/​property#>​ 
 +PREFIX ​ eus:  <​http://​ec.europa.eu/​eurostat/​ramon/​ontologies/​geographic.rdf#>​ 
 +PREFIX ​ xsd:  <​http://​www.w3.org/​2001/​XMLSchema#>​ 
 +PREFIX ​ owl:  <​http://​www.w3.org/​2002/​07/​owl#>​ 
 +PREFIX ​ rdf:  <​http://​www.w3.org/​1999/​02/​22-rdf-syntax-ns#>​ 
 +PREFIX ​ fn:   <​http://​www.w3.org/​2005/​xpath-functions#>​ 
 +PREFIX ​ eu_man: <​http://​wifo5-04.informatik.uni-mannheim.de/​eurostat/​resource/​eurostat/>​ 
 + 
 +SELECT ​ ?country 
 +WHERE 
 +  { SERVICE <​http://​wifo5-04.informatik.uni-mannheim.de/​eurostat/​sparql>​ 
 +      { ?country rdf:type eu_man:​countries } 
 +  } 
 +LIMIT   5 
 +</​code>​ 
 + 
 + 
 +<​code>​ 
 +PREFIX... 
 + 
 +SELECT ​ ?country ?sameAs 
 +WHERE 
 +  { SERVICE <​http://​wifo5-04.informatik.uni-mannheim.de/​eurostat/​sparql>​ 
 +      { ?country rdf:type eu_man:​countries 
 +        OPTIONAL 
 +          { ?country owl:sameAs ?sameAs 
 +            FILTER contains(xsd:​string(?​sameAs),​ "​dbpedia"​) 
 +          } 
 +      } 
 +  } 
 +LIMIT   10 
 + 
 +</​code>​ 
 + 
 +<​code>​ 
 +PREFIX ... 
 +SELECT ​ ?country ?label ?sameAs 
 +WHERE 
 +  { SERVICE <​http://​wifo5-04.informatik.uni-mannheim.de/​eurostat/​sparql>​ 
 +      { ?country rdf:type eu_man:​countries. 
 +?country rdfs:label ?label 
 +        OPTIONAL 
 +          { ?country owl:sameAs ?sameAs 
 +            FILTER contains(xsd:​string(?​sameAs),​ "​dbpedia"​) 
 +          } 
 +      } 
 +  } 
 +  </​code>​ 
 + 
 + 
 + 
 +   
 +<​code>​ 
 +PREFIX... 
 +CONSTRUCT  
 +  { ?country rdfs:label ?label . 
 +    ?country owl:sameAs ?sameAs .} 
 +WHERE 
 +  { SERVICE <​http://​wifo5-04.informatik.uni-mannheim.de/​eurostat/​sparql>​ 
 +      { ?country rdf:type eu_man:​countries . 
 +        ?country rdfs:label ?label 
 +        OPTIONAL 
 +          { ?country owl:sameAs ?sameAs 
 +            FILTER contains(xsd:​string(?​sameAs),​ "​dbpedia"​) 
 +          } 
 +      } 
 +  } 
 +</​code>​ 
 + 
 + 
 +<​code>​ 
 +PREFIX... 
 + 
 +INSERT { 
 +  GRAPH meg:​countries_20141014 { 
 +    ?country rdfs:label ?label . 
 +    ?country owl:sameAs ?sameAs . 
 +  } 
 +
 +WHERE 
 +  { SERVICE <​http://​wifo5-04.informatik.uni-mannheim.de/​eurostat/​sparql>​ 
 +      { ?country rdf:type eu_man:​countries . 
 +        ?country rdfs:label ?label 
 +        OPTIONAL 
 +          { ?country owl:sameAs ?sameAs 
 +            FILTER contains(xsd:​string(?​sameAs),​ "​dbpedia"​) 
 +          } 
 +      } 
 +  } 
 +</​code>​ 
 + 
 +<​code>​ 
 +PREFIX... 
 + 
 +SELECT ​ * 
 +WHERE 
 +  { GRAPH <​http://​mon_espace.org/​graph/​countries_20141014>​ 
 +      { ?s ?p ?o } 
 +  } 
 +  </​code>​ 
 + 
 +====== Vider un graphe ​sous Fuseki ======
  
  
Ligne 124: Ligne 232:
 Vérifier que le graphe est vide : Vérifier que le graphe est vide :
  
-<​code>​ +<​code>​SELECT ​ *
-SELECT ​ *+
 WHERE WHERE
   { GRAPH ?g   { GRAPH ?g
       { ?s ?p ?o }       { ?s ?p ?o }
   }   }
-<​code>​+</code>
  
  
  
thatcamp_2014/donnees_de_la_communaute_europeenne.1413268381.txt.gz · Dernière modification: 2014/10/29 12:03 (modification externe)