Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ontology update. GWP concept included #31

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions development/ecfo.owl
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,17 @@ foaf:Organization rdf:type owl:Class .
rdfs:comment "A generic class to describe a category/tag that ecfo:EmissionFactor. Use ecfo:hasTag to link the category/tag and rdf:value to provide the name of the category. A single ecfo:EmissionFactor may refer to multiple tags. To identify individual conversion factors a union of tags should be considered." ;
rdfs:label "Tag" .

### https://w3id.org/ecfo#GWPConversionFactor
:CF_gwp rdf:type owl:Class ;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
:CF_gwp rdf:type owl:Class ;
:GlobalWarmingPotentialConversionFactor rdf:type owl:Class ;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to be consistent with EmissionConversionFactor

rdfs:comment "Concept representing a coeficient value used to transform chemical sustances according to their Global Warming Potencial"@en ;
rdfs:label "GWP Conversion Factor"@en .

### https://w3id.org/ecfo#hasGWP
:GWP rdf:type owl:ObjectProperty ;
Copy link
Member

@dgarijo dgarijo Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
:GWP rdf:type owl:ObjectProperty ;
:gwp rdf:type owl:ObjectProperty ;

We use non capital letters for properties

rdfs:domain :EmissionConversionFactor ;
rdfs:range :CF_gwp ;
rdfs:comment "GWP property"@en ;
rdfs:label "has GWP"@en .

#################################################################
# Individuals
Expand Down