@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix emissions: <http://vocab.deri.ie/emissions#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<http://vocab.deri.ie/emissions> a owl:Ontology, adms:SemanticAsset;
    dcterms:title "Emissions Vocabulary";
    dcterms:modified "2010-10-14"^^xsd:date;
    vann:preferredNamespaceUri "http://vocab.deri.ie/emissions#";
    vann:preferredNamespacePrefix "emissions";
    foaf:homepage <http://vocab.deri.ie/emissions.html>;
    dcterms:created "2010-10-14"^^xsd:date;
    dcterms:publisher "http://vocab.deri.ie/emissions#DERI%2C%20NUI%20Galway";
    dcterms:partOf <http://vocab.deri.ie>;
    dcterms:type <http://purl.org/adms/assettype/Ontology>;
    dcterms:status <http://purl.org/adms/status/UnderDevelopment>;
    dc:creator emissions:souhas .

emissions:ttl a adms:SemanticDistribution;
    dcterms:FileFormat <>;
    adms:accessURL "http://vocab.deri.ie/emissions.ttl";
    adms:status <http://purl.org/adms/status/Completed> .

emissions:rdf a adms:SemanticDistribution;
    dcterms:FileFormat <>;
    adms:accessURL "http://vocab.deri.ie/emissions.rdf";
    adms:status <http://purl.org/adms/status/Completed> .

emissions:souhas a foaf:Person;
    foaf:name "Souleiman Hasan";
    foaf:homepage <>;
    foaf:mbox <mailto:souleiman.hasan@deri.org> .

<http://vocab.deri.ie/emissions#DERI%2C%20NUI%20Galway> a dcterms:Agent;
    foaf:member emissions:souhas;
    foaf:name "DERI, NUI Galway";
    foaf:homepage <http://www.deri.ie/> .

emissions:Emission a rdfs:Class, owl:Class;
    rdfs:label "Emission" .

emissions:amount a rdf:Property, owl:DatatypeProperty;
    rdfs:label "amount";
    rdfs:domain emissions:Emission;
    rdfs:range xsd:double;
    rdfs:subPropertyOf owl:topDataProperty .

emissions:ghg a rdf:Property, owl:DatatypeProperty;
    rdfs:label "ghg";
    rdfs:domain emissions:Emission;
    rdfs:range xsd:string;
    rdfs:subPropertyOf owl:topDataProperty .

emissions:unit a rdf:Property, owl:DatatypeProperty;
    rdfs:label "unit";
    rdfs:domain emissions:Emission;
    rdfs:range xsd:string;
    rdfs:subPropertyOf owl:topDataProperty .

emissions:emitsWeekly a rdf:Property;
    rdfs:label "emitsWeekly";
    rdfs:domain owl:Thing;
    rdfs:range emissions:Emission;
    rdfs:subPropertyOf owl:topObjectProperty .
