« Utilisateur:Chricris/Projet-ESGI » : différence entre les versions
Aller à la navigation
Aller à la recherche
(Page créée avec « Projet ESGI ») |
Aucun résumé des modifications |
||
(3 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
Projet ESGI | Introduction | ||
Projet de web sémantique de l'ESGI | |||
== 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:Chricris/Projet-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 ==== | |||
===== Humain ===== | |||
<rdf> | |||
<Humain> rdf:type rdfs:Class . | |||
</rdf> | |||
===== Homme ===== | |||
<rdf> | |||
<Homme> rdf:type rdfs:Class . | |||
</rdf> | |||
===== EnergieConso ===== | |||
<rdf> | |||
<EnergieConso> rdf:type rdfs:Class . | |||
<EnergieConso> rdfs:subClassOf <Homme>. | |||
</rdf> | |||
==== Propriétés==== | |||
===== utilise ===== | |||
<rdf> | |||
<utilise> rdf:type rdf:Property . | |||
</rdf> | |||
===== utilise ===== | |||
<rdf> | |||
<consome> rdf:type rdf:Property . | |||
<consome> rdfs:subPropertyOf <utilise> . | |||
<consome> rdfs:domain <EnergieConso>. | |||
<consome> rdfs:range <Humain>. | |||
</rdf> | |||
=== Exemple d'un jeu de données === | |||
<rdf> | |||
ex:bradPitt rdf:type <EnergieConso>. | |||
ex:bradPitt ex:consome ex:worldWarZ . | |||
</rdf> | |||
=== Requêtes === | |||
Vérification que le vocabulaire est bien chargé : | |||
{{#sparql: | |||
BASE <https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#> | |||
SELECT * | |||
WHERE { | |||
<Humain> ?p ?v . | |||
} | |||
}} | |||
{{#sparql: | |||
BASE <https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#> | |||
SELECT * | |||
WHERE { | |||
<Homme> ?p ?v . | |||
} | |||
}} | |||
{{#sparql: | |||
BASE <https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#> | |||
SELECT * | |||
WHERE { | |||
<EnergieConso> ?p ?v . | |||
} | |||
}} | |||
{{#sparql: | |||
BASE <https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#> | |||
SELECT * | |||
WHERE { | |||
<utilise> ?p ?v . | |||
} | |||
}} | |||
{{#sparql: | |||
BASE <https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#> | |||
SELECT * | |||
WHERE { | |||
<consome> ?p ?v . | |||
} | |||
}} | |||
Vérification que les données sont chargées : | |||
{{#sparql: | |||
PREFIX ex: <http://www.example.org/> | |||
SELECT * | |||
WHERE { | |||
ex:bradPitt ?p ?v . | |||
} | |||
}} |
Version actuelle datée du 22 janvier 2021 à 15:27
Introduction Projet de web sémantique de l'ESGI
Description
Définition de votre graphe de connaissances
Schema
Diagramme de classes ou modèle RDF (comme vue en cours)
Vocabulaire
Base
BASE <https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#>
Préfixes
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#>
Classes
Humain
<Humain> rdf:type rdfs:Class .
Homme
<Homme> rdf:type rdfs:Class .
EnergieConso
<EnergieConso> rdf:type rdfs:Class .
<EnergieConso> rdfs:subClassOf <Homme>.
Propriétés
utilise
<utilise> rdf:type rdf:Property .
utilise
<consome> rdf:type rdf:Property .
<consome> rdfs:subPropertyOf <utilise> .
<consome> rdfs:domain <EnergieConso>.
<consome> rdfs:range <Humain>.
Exemple d'un jeu de données
ex:bradPitt rdf:type <EnergieConso>.
ex:bradPitt ex:consome ex:worldWarZ .
Requêtes
Vérification que le vocabulaire est bien chargé :
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/2000/01/rdf-schema#Class |
22:37:26 21/11/2024 -- Actualiser -- Durée de la requête :0.022s -- CSV |
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/2000/01/rdf-schema#Class |
22:37:26 21/11/2024 -- Actualiser -- Durée de la requête :0.032s -- CSV |
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/2000/01/rdf-schema#Class |
http://www.w3.org/2000/01/rdf-schema#subClassOf | https://data.escr.fr/wiki/Utilisateur:Chricris/Projet-ESGI#Homme |
22:37:26 21/11/2024 -- Actualiser -- Durée de la requête :0.027s -- CSV |
p | v |
---|---|
http://www.w3.org/1999/02/22-rdf-syntax-ns#type | http://www.w3.org/1999/02/22-rdf-syntax-ns#Property |
22:37:26 21/11/2024 -- Actualiser -- Durée de la requête :0.024s -- CSV |
Vérification que les données sont chargées :