
BASE <https://data.escr.fr/wiki/Utilisateur:Lassanadiakite90/projet#>

 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#>

<Moteur> rdf:type rdfs:Class .

 <coutDeProduction> rdf:type rdf:Property .
 <coutDeProduction>  rdfs:domain <Moteur>.

<TypeEngin> rdf:type rdf:Property ;
  rdfs:domain <Moteur>.

 <empreinteCarbone> rdf:type rdf:Property .
 <empreinteCarbone>  rdfs:domain <Moteur>.

 <empreinteCarboneProduction> rdf:type rdf:Property .
 <empreinteCarboneProduction>  rdfs:domain <Moteur>.

<Hydrogene> rdf:type <Moteur>;
  <empreinteCarbone> "0.1"^^xsd:decimal;
<empreinteCarboneProduction> "93.5"^^xsd:decimal;
  <coutDeProduction> "500000"^^xsd:decimal ;
  <TypeEngin> <Avion> .
 
<ElectriqueCamionnette> rdf:type <Moteur>;
  <empreinteCarbone> "1.6"^^xsd:decimal;
<empreinteCarboneProduction> "30"^^xsd:decimal;
  <coutDeProduction> "40000"^^xsd:decimal ;
  <TypeEngin> <Camionnette> .


<Essence> rdf:type <Moteur>;
  <empreinteCarbone> "1.1"^^xsd:decimal;
<empreinteCarboneProduction> "9"^^xsd:decimal;
  <coutDeProduction> "10000"^^xsd:decimal ;
  <TypeEngin> <Moto> .


 <ElectriqueVoiturePersonnelle> rdf:type <Moteur>;
  <empreinteCarbone> "2.2"^^xsd:decimal;
<empreinteCarboneProduction> "40"^^xsd:decimal;
  <coutDeProduction> "25000"^^xsd:decimal ;
  <TypeEngin> <Voiture-Personnelle> .


<Diesiel> rdf:type <Moteur>;
  <empreinteCarbone> "10.2"^^xsd:decimal;
<empreinteCarboneProduction> "11"^^xsd:decimal;
  <coutDeProduction> "30000"^^xsd:decimal ;
  <TypeEngin> <Camion> .


                                                     
