« Utilisateur:Test/ExerciceESGI 2020 10 09 » : différence entre les versions

De ESCR
Aller à la navigation Aller à la recherche
(Page créée avec « Introduction == Description == == Définition de votre graphe de connaissances == === Schema === Diagramme de classes ou modèle RDF (comme vue en cours) === Vocabula… »)
 
(Page blanchie)
Balise : Blanchiment
Ligne 1 : Ligne 1 :
Introduction


== Description ==
== Définition de votre graphe de connaissances ==
=== Schema ===
Diagramme de classes ou modèle RDF (comme vue en cours)
=== Vocabulaire ===
==== Base ====
<rdf>
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#>
</rdf>
==== Préfixes ====
<rdf>
PREFIX ex: <http://www.example.org/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
</rdf>
==== Classes ====
===== Movie =====
<rdf>
<Movie> rdf:type rdfs:Class .
</rdf>
===== MovieStaff =====
<rdf>
<MovieStaff> rdf:type rdfs:Class .
</rdf>
===== Actor =====
<rdf>
<Actor> rdf:type rdfs:Class .
<Actor> rdfs:subClassOf <MovieStaff>.
</rdf>
==== Propriétés====
===== participatesIn =====
<rdf>
<participatesIn> rdf:type rdf:Property .
</rdf>
===== participatesIn =====
<rdf>
<starsIn> rdf:type rdf:Property .
<starsIn> rdfs:subPropertyOf <participatesIn> .
<starsIn>  rdfs:domain <Actor>.
<starsIn>  rdfs:range  <Movie>.
</rdf>
=== Exemple d'un jeu de données ===
<rdf>
ex:bradPitt rdf:type <Actor>.
ex:bradPitt ex:starsIn ex:worldWarZ .
</rdf>
=== Requêtes ===
Vérification que le vocabulaire est bien chargé :
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#>
SELECT *
WHERE {
<Movie> ?p ?v .
}
}}
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#>
SELECT *
WHERE {
<MovieStaff> ?p ?v .
}
}}
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#>
SELECT *
WHERE {
<Actor> ?p ?v .
}
}}
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Karima_Rafes/Exemple_de_page_projet_pour_ESGI#>
SELECT *
WHERE {
<participatesIn> ?p ?v .
}
}}
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Suganda/Exemple_de_page_projet_pour_ESGI#>
SELECT *
WHERE {
<starsIn> ?p ?v .
}
}}
Vérification que les données sont chargées :
{{#sparql:
PREFIX ex: <http://www.example.org/>
SELECT *
WHERE {
ex:bradPitt  ?p ?v .
}
}}
== Démonstration ==
Des copies d'écran

Version du 17 décembre 2021 à 14:39