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

De ESCR
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
 
(75 versions intermédiaires par le même utilisateur non affichées)
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)
[[Fichier:RDF.png|vignette]]
=== Vocabulaire ===
==== Base ====
<rdf>
BASE <https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#>
</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#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
</rdf>
==== Classes ====
===== City =====
<rdf>
<City> rdf:type rdfs:Class .
<City> rdfs:subClassOf <ElectricityConsumption> .
</rdf>
===== ElectricityConsumption =====
<rdf>
<ElectricityConsumption> rdf:type rdfs:Class .
</rdf>
==== Propriétés====
===== name =====
<rdf>
<name> rdf:type rdf:Property .
<name> rdfs:domain <City> .
</rdf>
===== lat =====
<rdf>
<rdf>
<lat> rdf:type rdf:Property .
<lat> rdfs:domain <City> .
</rdf>


prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
===== lon =====
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
<rdf>
prefix daap: <http://daap.eu/wiki/>  
<lon> rdf:type rdf:Property .
PREFIX daapProp: <http://daap.eu/wiki/Property:>
<lon> rdfs:domain <City> .
PREFIX daapUser: <http://daap.eu/wiki/User:>
</rdf>
prefix vcard: <http://www.w3.org/2006/vcard/ns#>
prefix dcterms: <http://purl.org/dc/terms/>
prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
prefix wd: <http://www.wikidata.org/entity/>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>


<http://daap.eu/wiki/Lip(Sys)2/RamanEvolution_Spectrometer>  
===== consumptionNuclear =====
rdfs:label              "RamanEvolution";
<rdf>
rdf:type               daap:Device;
<consumptionNuclear> rdf:type rdf:Property .
daapProp:item          wd:Q70906;                                                     
<consumptionNuclear> rdfs:domain <ElectricityConsumption> .
geo:lat                "48.7623"^^xsd:decimal;
</rdf>
geo:long                "2.27359"^^xsd:decimal;
daapProp:pilotProcess    daapUser:Li.


<daapUser:Li>
===== consumptionElectric =====
vcard:email  <mailto:li@upsud.fr>;
<rdf>
vcard:bday    "1977-05-30"^^xsd:date;
<consumptionElectric> rdf:type rdf:Property .
vcard:fn      "李"@zh,
<consumptionElectric> rdfs:domain <ElectricityConsumption> .
              "Li"@en.
</rdf>


<https://youtu.be/LppehHsKxL4>
=== Exemple d'un jeu de données ===
dcterms:subject  <http://daap.eu/wiki/Lip(Sys)2/RamanEvolution_Spectrometer>.


<rdf>
<Paris> rdf:type <City>;
  <name> "Paris";
  <consumptionNuclear> 1548228;
  <consumptionElectric> 854254411;
  <lat> "48.85"^^xsd:decimal;
  <lon> "2.34"^^xsd:decimal .
<Nantes> rdf:type <City>;
  <name> "Nantes";
  <consumptionNuclear> 254444;
  <consumptionElectric> 15520001;
  <lat> "47.2173"^^xsd:decimal;
  <lon> "-1.55"^^xsd:decimal .
</rdf>
</rdf>
[[Utilisateur:Ahmed Saadé/ExerciceESGI_2020_10_09| Exercice ESGI]]
 
=== Requêtes ===
 
Vérification que le vocabulaire est bien chargé :
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#>
SELECT *
WHERE {
<City> ?p ?v .
}
}}
 
{{#sparql:
BASE <https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#>
SELECT *
WHERE {
<ElectricityConsumption> ?p ?v .
}
}}
 
 
Vérification que les données sont chargées :
 
{{#sparql:
 
PREFIX ah: <https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#>
SELECT *
WHERE {
    ?o rdf:type ah:City .
}
}}
 
{{#sparql:
 
PREFIX ah: <https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#>
SELECT *
WHERE {
    ah:Paris ?prop ?value .
}
}}
 
== Démonstration ==
 
Des copies d'écran

Version actuelle datée du 10 décembre 2020 à 20:30

Introduction

Description

Définition de votre graphe de connaissances

Schema

Diagramme de classes ou modèle RDF (comme vue en cours)

RDF.png

Vocabulaire

Base

BASE <https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#>

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#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

Classes

City
<City> rdf:type rdfs:Class .
<City> rdfs:subClassOf <ElectricityConsumption> .
ElectricityConsumption
<ElectricityConsumption> rdf:type rdfs:Class .

Propriétés

name
<name> rdf:type rdf:Property .
<name> rdfs:domain <City> .
lat
<lat> rdf:type rdf:Property .
<lat> rdfs:domain <City> .
lon
<lon> rdf:type rdf:Property .
<lon> rdfs:domain <City> .
consumptionNuclear
<consumptionNuclear> rdf:type rdf:Property .
<consumptionNuclear> rdfs:domain <ElectricityConsumption> .
consumptionElectric
<consumptionElectric> rdf:type rdf:Property .
<consumptionElectric> rdfs:domain <ElectricityConsumption> .

Exemple d'un jeu de données

<Paris> rdf:type <City>;
  <name> "Paris";
  <consumptionNuclear> 1548228;
  <consumptionElectric> 854254411;
  <lat> "48.85"^^xsd:decimal;
  <lon> "2.34"^^xsd:decimal .

<Nantes> rdf:type <City>;
  <name> "Nantes";
  <consumptionNuclear> 254444;
  <consumptionElectric> 15520001;
  <lat> "47.2173"^^xsd:decimal;
  <lon> "-1.55"^^xsd:decimal .

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
http://www.w3.org/2000/01/rdf-schema#subClassOf https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#ElectricityConsumption
14:37:08 22/11/2024 -- Actualiser -- Durée de la requête :0.024s -- CSV


p v
http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://www.w3.org/2000/01/rdf-schema#Class
14:37:08 22/11/2024 -- Actualiser -- Durée de la requête :0.026s -- CSV


Vérification que les données sont chargées :

o
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#Paris
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#Nantes
14:37:08 22/11/2024 -- Actualiser -- Durée de la requête :0.025s -- CSV


prop value
http://www.w3.org/1999/02/22-rdf-syntax-ns#type https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#City
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#consumptionElectric 854254411
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#consumptionNuclear 1548228
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#lat 48.85
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#lon 2.34
https://data.escr.fr/wiki/Utilisateur:Ahmed_Saadé/ExerciceESGI_2020_10_09#name Paris
14:37:08 22/11/2024 -- Actualiser -- Durée de la requête :0.026s -- CSV


Démonstration

Des copies d'écran