-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocabulary.ttl
75 lines (65 loc) · 3.43 KB
/
vocabulary.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vars: <http://purl.org/m4m-dk-3/variables/> .
<http://purl.org/m4m-dk-3/variables/> a skos:Concept, skos:ConceptScheme;
dct:creator <https://orcid.org/0000-0001-7682-5613>, <https://orcid.org/0000-0002-0721-551X>,
<https://orcid.org/0000-0002-6323-4942>, <https://orcid.org/0000-0002-6665-0896>,
<https://orcid.org/0000-0003-4093-2147>;
dct:description "Potato Blight disease observation"@en;
dct:rights <https://spdx.org/licenses/CC-BY-4.0.html>;
dct:title "Agro Ontology"@en;
pav:createdOn "2022-01-21T10:03:28Z"@en;
pav:lastUpdatedOn "2022-01-21T10:03:28Z"@en;
pav:version "0.0.1"@en;
skos:hasTopConcept <http://purl.org/m4m-dk-3/variables/>, vars:CountryCode, vars:CropSeasonYear,
vars:Disease, vars:GrowthStageName, vars:ObservationID, vars:SampleID, vars:SeverityCategoryName;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:SampleID a skos:Concept;
skos:definition "Number given to the sample after institutes nameing standard"@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "SampleID"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:ObservationID a skos:Concept;
skos:definition "Running number"@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "ObservationID"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:CropSeasonYear a skos:Concept;
skos:definition "4 digit number representing the year the disease was observed. Automatically created from the Blight Tracker App."@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "CropSeasonYear"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:CountryCode a skos:Concept;
dct:source <https://www.iso.org/obp/ui/#search>;
skos:definition "2 char code as defined in the ISO standard ISO 3166-1 alpha-2 codes"@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "CountryCode"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:GrowthStageName a skos:Concept;
dct:source <https://en.wikipedia.org/wiki/BBCH-scale_(potato)>;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "GrowthStageName"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:SeverityCategoryName a skos:Concept;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "SeverityCategoryName"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:Disease a skos:Concept;
skos:definition "Crop Disease name"@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:narrower vars:PotatoEarlyBlight, vars:PotatoLateBlight;
skos:prefLabel "Disease"@en;
skos:topConceptOf <http://purl.org/m4m-dk-3/variables/> .
vars:PotatoLateBlight a skos:Concept;
skos:broader vars:Disease;
skos:definition "Potato disease caused by the oomycete Phytophthora infestans"@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "PotatoLateBlight"@en .
vars:PotatoEarlyBlight a skos:Concept;
skos:broader vars:Disease;
skos:definition "Potato disease caused by the fungus Alternaria solani"@en;
skos:inScheme <http://purl.org/m4m-dk-3/variables/>;
skos:prefLabel "PotatoEarlyBlight"@en .