-
Notifications
You must be signed in to change notification settings - Fork 7
Create defchem.ttl #46
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
Open
maschu09
wants to merge
17
commits into
wmo-registers:master
Choose a base branch
from
maschu09:patch-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
0adeee2
Create defchem.ttl
maschu09 48177d3
Update defchem.ttl
maschu09 137d115
Update defchem.ttl
marqh a0e70b1
Update defchem.ttl
marqh 54cb69a
Merge pull request #1 from marqh/patch-2
maschu09 f7da720
Update defchem.ttl
maschu09 f2c88a8
Update defchem.ttl
maschu09 3590358
Update defchem.ttl
maschu09 8a20138
Create medium.ttl
maschu09 a3e70d8
Create chemical_species.ttl
maschu09 ab28886
Create wmdsObservedVariable.ttl
maschu09 991e82a
Update medium.ttl
maschu09 d392cdf
Create atmospheric_chemical_species.ttl
maschu09 57fd517
Create wmdObservedVariable.ttl
maschu09 8fb7140
Delete wmdsObservedVariable.ttl
maschu09 bef43e0
Create wmdObservedVariable.ttl
maschu09 a02e461
Update atmospheric_chemical_species.ttl
maschu09 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| @prefix dct: <http://purl.org/dc/terms/> . | ||
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| @prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
| @prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
| @prefix ldp: <http://www.w3.org/ns/ldp#> . | ||
| @prefix reg: <http://purl.org/linked-data/registry#> . | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| <chemistry> | ||
| a reg:Register , ldp:Container , owl:Ontology ; | ||
| rdfs:label "Chemical Species Definition Vocabulary."@en ; | ||
| rdfs:member <chemistry/chemical-species> , <chemistry/medium> ; | ||
| dct:description "Ontology providing the vocabulary to define chemical species for use in WMO registers."@en ; | ||
| dct:publisher <http://codes.wmo.int/system/organization/wmo> ; | ||
| reg:manager <http://codes.wmo.int/system/organization/www-dm> ; | ||
| reg:owner <http://codes.wmo.int/system/organization/wmo> ; | ||
| ldp:membershipPredicate rdfs:member . | ||
|
|
||
|
|
||
| <chemistry/chemical-species> | ||
| a owl:objectProperty ; | ||
| rdfs:label "chemical species" ; | ||
| . | ||
|
|
||
| <chemistry/medium> | ||
| a owl:objectProperty ; | ||
| rdfs:label "medium" ; | ||
| . | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,153 @@ | ||
| @prefix dct: <http://purl.org/dc/terms/> . | ||
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| @prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
|
|
||
| <medium> | ||
| a skos:Collection ; | ||
| rdfs:label "medium"@en ; | ||
| dct:description "The medium in which compounds are measured"@en ; | ||
| skos:member <medium/air-and-aerosol>, | ||
| <medium/air>, | ||
| <medium/dry-air>, | ||
| <medium/dry-air-at-stp>, | ||
| <medium/aerosol>, | ||
| <medium/aerosol-in-size-range>, | ||
| <medium/dry-aerosol>, | ||
| <medium/dry-aerosol-in-size-range>, | ||
| <medium/pm1>, | ||
| <medium/pm2.5>, | ||
| <medium/pm10>, | ||
| <medium/water>, | ||
| <medium/sea-water>, | ||
| <medium/lake-water>, | ||
| <medium/precipitation>, | ||
| <medium/wet-precipitation> ; | ||
| skos:prefLabel "medium"@en. | ||
|
|
||
| <medium/air-and-aerosol> | ||
| a skos:Concept ; | ||
| rdfs:label "air and aerosol"@en ; | ||
| dct:description "the medium that constitutes the Earth's atmosphere with all its components, in particular also including aerosol and water vapour."@en ; | ||
| skos:prefLabel "air and aerosol"@en ; | ||
| skos:notation "air-and-aerosol" . | ||
|
|
||
| <medium/air> | ||
| a skos:Concept ; | ||
| rdfs:label "air"@en ; | ||
| dct:description "the gas that constitutes the Earth's atmosphere with all its gaseous components, in particular also including the water vapour content"@en ; | ||
| skos:prefLabel "air"@en ; | ||
| skos:notation "air" . | ||
|
|
||
| <medium/dry-air> | ||
| a skos:Concept ; | ||
| rdfs:label "dry air"@en ; | ||
| dct:description "the gas that constitutes the Earth's atmosphere with all its gaseous components except for water vapour"@en ; | ||
| skos:prefLabel "dry air"@en ; | ||
| skos:broader <medium/air> ; | ||
| skos:notation "dry-air" . | ||
|
|
||
| <medium/dry-air-at-stp> | ||
| a skos:Concept ; | ||
| rdfs:label "dry air at STP"@en ; | ||
| dct:description "the gas that constitutes the Earth's atmosphere with all its gaseous components except for water vapour. Air mass and density have been adjusted to standard pressure (101325 Pa) and temperature (273.15 K) conditions."@en ; | ||
| skos:prefLabel "dry air at stp"@en ; | ||
| skos:broader <medium/dry-air> ; | ||
| skos:notation "dry-air-at-stp" . | ||
|
|
||
| <medium/aerosol> | ||
| a skos:Concept ; | ||
| rdfs:label "aerosol"@en ; | ||
| dct:description "particulate matter suspended in air, often containing liquid or frozen water. The size range (diameter) of aerosol is usually limited to the range 1 nm to 10 µm."@en ; | ||
| skos:prefLabel "aerosol"@en ; | ||
| skos:notation "aerosol" . | ||
|
|
||
| <medium/aerosol-in-size-range> | ||
| a skos:Concept ; | ||
| rdfs:label "aerosol in size range"@en ; | ||
| dct:description "particulate matter suspended in air, often containing liquid or frozen water. The size range (diameter) of aerosol is limited by the sampling method and must be specified separately."@en ; | ||
| skos:prefLabel "aerosol in size range"@en ; | ||
| skos:notation "aerosol-in-size-range" . | ||
|
|
||
| <medium/dry-aerosol> | ||
| a skos:Concept ; | ||
| rdfs:label "dry aerosol"@en ; | ||
| dct:description "particulate matter suspended in air with all water removed. The size range (diameter) of aerosol is usually limited to the range 1 nm to 10 µm."@en ; | ||
| skos:prefLabel "dry aerosol"@en ; | ||
| skos:broader <medium/aerosol> ; | ||
| skos:notation "dry-aerosol" . | ||
|
|
||
| <medium/dry-aerosol-in-size-range> | ||
| a skos:Concept ; | ||
| rdfs:label "dry aerosol in size range"@en ; | ||
| dct:description "particulate matter suspended in air with all water removed. The size range (diameter) of aerosol is limited by the sampling method and must be specified separately."@en ; | ||
| skos:prefLabel "dry aerosol in size range"@en ; | ||
| skos:broader <medium/aerosol> ; | ||
| skos:notation "dry-aerosol-in-size-range" . | ||
|
|
||
| <medium/pm1> | ||
| a skos:Concept ; | ||
| rdfs:label "PM1"@en ; | ||
| dct:description "dry particulate matter suspended in air with a size range from a few nanometers to 1 µm"@en ; | ||
| skos:prefLabel "pm1"@en ; | ||
| skos:broader <medium/aerosol> ; | ||
| skos:notation "pm1" . | ||
|
|
||
| <medium/pm2.5> | ||
| a skos:Concept ; | ||
| rdfs:label "PM2.5"@en ; | ||
| dct:description "dry particulate matter suspended in air with a size range from a few nanometers to 2.5 µm"@en ; | ||
| skos:prefLabel "pm2.5"@en ; | ||
| skos:broader <medium/aerosol> ; | ||
| skos:notation "pm2.5" . | ||
|
|
||
| <medium/pm10> | ||
| a skos:Concept ; | ||
| rdfs:label "PM10"@en ; | ||
| dct:description "dry particulate matter suspended in air with a size range from a few nanometers to 10 µm"@en ; | ||
| skos:prefLabel "pm10"@en ; | ||
| skos:broader <medium/aerosol> ; | ||
| skos:notation "pm10" . | ||
|
|
||
| <medium/water> | ||
| a skos:Concept ; | ||
| rdfs:label "water"@en ; | ||
| dct:description "liquid water"@en ; | ||
| skos:prefLabel "water"@en ; | ||
| skos:notation "water" . | ||
|
|
||
| <medium/sea-water> | ||
| a skos:Concept ; | ||
| rdfs:label "sea water"@en ; | ||
| dct:description "liquid or frozen water in the Earth's oceans."@en ; | ||
| skos:prefLabel "sea water"@en ; | ||
| skos:altLabel "ocean water"@en ; | ||
| skos:broader <medium/water> ; | ||
| skos:notation "sea-water" . | ||
|
|
||
| <medium/lake-water> | ||
| a skos:Concept ; | ||
| rdfs:label "lake water"@en ; | ||
| dct:description "liquid or frozen water in the Earth's freshwater lakes."@en ; | ||
| skos:prefLabel "lake water"@en ; | ||
| skos:broader <medium/water> ; | ||
| skos:notation "lake-water" . | ||
|
|
||
| <medium/precipitation> | ||
| a skos:Concept ; | ||
| rdfs:label "precipitation"@en ; | ||
| dct:description "liquid or frozen water in atmospheric precipitation."@en ; | ||
| skos:prefLabel "precipitation"@en ; | ||
| skos:altLabel "hydrometeor"@en ; | ||
| skos:broader <medium/water> ; | ||
| skos:notation "precipitation" . | ||
|
|
||
| <medium/wet-precipitation> | ||
| a skos:Concept ; | ||
| rdfs:label "wet precipitation"@en ; | ||
| dct:description "liquid water in atmospheric precipitation."@en ; | ||
| skos:prefLabel "wet precipitation"@en ; | ||
| skos:altLabel "liquid hydrometeor"@en ; | ||
| skos:broader <medium/water> ; | ||
| skos:notation "wet-precipitation" . | ||
|
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to add