-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgcis.ttl
985 lines (812 loc) · 37.8 KB
/
gcis.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix gcis: <http://data.globalchange.gov/gcis.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix sweet: <http://sweet.jpl.nasa.gov/2.3/sweetAll.owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix skos: <http://www.w3.org/2009/08/skos-reference/skos.rdf#> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dbpprop: <http://dbpedia.org/property/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://data.globalchange.gov/gcis.owl> a owl:Ontology ;
rdfs:label "GCIS Ontology" ;
dcterms:title "GCIS Ontology" ;
dcterms:date "2015-11-03"^^xsd:date ;
owl:versionInfo "2.0" ;
owl:versionIRI <http://data.globalchange.gov/2.0/gcis> ;
rdfs:comment "An ontology designed for the Global Change Information System (GCIS) of the U.S. Global Change Research Program (USGCRP, http://www.globalchange.gov). The ontology is available at: https://data.globalchange.gov/gcis.owl. The ontology uses the namespace prefix gcis." ;
dcterms:creator gcis:xiaogang_ma, gcis:stephan_zednik, gcis:curt_tilmes, gcis:peter_fox, gcis:robert_e_wolfe;
dcterms:contributor gcis:jin_guang_zheng, gcis:justin_c_goldstein, gcis:linyun_fu, gcis:brian_duggan, gcis:patrick_west, gcis:steve_aulenbach, gcis:chengcong_du, gcis:jun_xu, gcis:anusha_akkiraju ;
skos:historyNote "This ontology was originally developed by the USGCRP in support of the Third National Climate Assessment. Rensselaer Polytechnic Institute participation in the initial phase of this activity was funded through the GCIS-IMSAP project (2012-2013) at the Tetherless World Constellation. More details of that project are accessible at: http://tw.rpi.edu/web/project/gcis-imsap." .
gcis:xiaogang_ma a foaf:Person ;
foaf:name "Xiaogang Ma" ;
foaf:mbox <mailto:max7@rpi.edu> .
gcis:stephan_zednik a foaf:Person ;
foaf:name "Stephan Zednik" ;
foaf:mbox <mailto:zednis2@rpi.edu> .
gcis:curt_tilmes a foaf:Person ;
foaf:name "Curt Tilmes" ;
foaf:mbox <mailto:curt.tilmes@nasa.gov> .
gcis:peter_fox a foaf:Person ;
foaf:name "Peter Fox" ;
foaf:mbox <mailto:foxp@rpi.edu> .
gcis:robert_e_wolfe a foaf:Person ;
foaf:name "Robert E. Wolfe" ;
foaf:mbox <mailto:robert.e.wolfe@nasa.gov> .
gcis:jin_guang_zheng a foaf:Person ;
foaf:name "Jin Guang Zheng" ;
foaf:mbox <mailto:zhengj3@rpi.edu> .
gcis:justin_c_goldstein a foaf:Person ;
foaf:name "Justin C. Goldstein" ;
foaf:mbox <mailto:jgoldstein@usgcrp.gov> .
gcis:linyun_fu a foaf:Person ;
foaf:name "Linyun Fu" ;
foaf:mbox <mailto:ful2@rpi.edu> .
gcis:brian_duggan a foaf:Person ;
foaf:name "Brian Duggan" ;
foaf:mbox <mailto:bduggan@usgcrp.gov> .
gcis:patrick_west a foaf:Person ;
foaf:name "Patrick West" ;
foaf:mbox <mailto:westp@rpi.edu> .
gcis:steve_aulenbach a foaf:Person ;
foaf:name "Steve Aulenbach" ;
foaf:mbox <mailto:saulenbach@usgcrp.gov> .
gcis:chengcong_du a foaf:Person ;
foaf:name "Chengcong Du" ;
foaf:mbox <mailto:duc2@rpi.edu> .
gcis:jun_xu a foaf:Person ;
foaf:name "Jun Xu" ;
foaf:mbox <mailto:xuj6@rpi.edu> .
gcis:anusha_akkiraju a foaf:Person ;
foaf:name "Anusha Akkiraju" ;
foaf:mbox <mailto:akkira@rpi.edu> .
gcis:Publication a owl:Class ;
rdfs:subClassOf bibo:Document ;
rdfs:label "Publication" ;
rdfs:comment "A distinct work with intent to communicate information that has been made available" ;
rdfs:subClassOf bibo:Document , prov:Entity .
gcis:Report a owl:Class ;
rdfs:subClassOf gcis:Publication , bibo:Report , prov:Entity ;
rdfs:label "Report" ;
rdfs:comment "An account given of a particular matter, especially in the form of an official document, after thorough investigation or consideration by an appointed person or body." .
gcis:Chapter a owl:Class ;
rdfs:subClassOf bibo:Chapter , gcis:Publication ;
rdfs:label "Chapter" ;
rdfs:comment "One of the main divisions of a relatively lengthy piece of writing, such as a book, that is usually numbered and/or titled." .
gcis:Committee a owl:Class ;
rdfs:label "Committee" ;
rdfs:comment "A group of people officially delegated to perform a function, such as investigating, considering, reporting, or acting on a matter." ;
rdfs:subClassOf gcis:Group .
gcis:Finding a owl:Class ;
rdfs:label "Finding" ;
rdfs:comment "A significant point or central theme of a investigation." ;
rdfs:subClassOf prov:Entity .
gcis:Figure a owl:Class ;
rdfs:label "Figure" ;
rdfs:comment "A graphical/visual item in a publication that normally is referred to by a number and that has a caption." ;
rdfs:subClassOf prov:Entity .
gcis:InstrumentType a owl:Class ;
rdfs:label "InstrumentType" ;
rdfs:comment "A type of tool or device used for a particular task, especially for scientific work." ;
rdfs:subClassOf prov:Entity .
gcis:Instrument a owl:Class ;
rdfs:label "Instrument" ;
rdfs:comment "A physical instantiation of a tool or device used for a particular task, especially for scientific work." ;
rdfs:subClassOf prov:Entity .
gcis:instrumentType a owl:ObjectProperty ;
rdfs:label "instrument type" ;
rdfs:comment "A specific type of instrument" ;
rdfs:domain gcis:Instrument ;
rdfs:range gcis:InstrumentType .
gcis:Model a owl:Class ;
rdfs:label "Model" ;
rdfs:comment "A simplified description or particular design, especially a mathematical one, of a system or process, to assist calculations and predictions." ;
rdfs:subClassOf prov:Entity .
gcis:Region a owl:Class ;
rdfs:label "Region" ;
rdfs:comment "A spatial area defined by a common characteristic (e.g. coastal, southwest, rural communities, etc.)." ;
rdfs:subClassOf prov:Entity .
gcis:SpatialExtent a owl:Class ;
rdfs:label "Spatial Extent" ;
rdfs:comment "A spatial region defined by a bounding box." ;
rdfs:subClassOf prov:Entity .
gcis:SpatialResolution a owl:Class ;
rdfs:label "Spatial Resolution" ;
rdfs:comment "The detail with which a map or image depicts the location and shape of geographic features. The finer the map scale, the higher the possible resolution. As scale decreases from fine to coarse, resolution diminishes and feature boundaries must be smoothed, simplified, or not shown at all; for example, small areas may have to be represented as points." ;
rdfs:subClassOf prov:Entity .
gcis:TemporalExtent a owl:Class ;
rdfs:label "Temporal Extent" ;
rdfs:comment "An interval of time defined by its start and end dates or datetimes." ;
rdfs:subClassOf prov:Entity .
gcis:TemporalResolution a owl:Class ;
rdfs:label "Temporal Resolution" ;
rdfs:comment "The precision or frequency of a measurement with respect to time. Often there is a tradeoff between temporal resolution of a measurement and its spatial resolution." ;
rdfs:subClassOf prov:Entity .
gcis:Algorithm a owl:Class ;
rdfs:label "Algorithm" ;
rdfs:comment "A process or a set of rules to be followed in calculations or other problem-solving operations." ;
rdfs:subClassOf prov:Entity .
gcis:Platform a owl:Class ;
rdfs:label "Platform" ;
rdfs:comment "A scientific data collection entity to which other entities - particuarly instruments, sensors and other platforms - can be attached." ;
rdfs:subClassOf prov:Entity .
gcis:ObservationSystem a owl:Class ;
rdfs:label "Observation System" ;
rdfs:comment "One or more sensing elements that directly or indirectly collect observations of the Earth, measure environmental parameters, or survey biological or other Earth resources (land surface, biosphere, solid Earth, atmosphere, and oceans). Sensing elements may be deployed as individual sensors or in constellations or networks and may include instrumentation or human elements." ;
rdfs:subClassOf prov:Entity .
gcis:hasSensingElement a owl:ObjectProperty ;
rdfs:label "has sensing element" ;
rdfs:comment "An observation system may consist of one or more sensing elements such as individual sensors, instruments, platforms and humans." ;
rdfs:domain gcis:ObservationSystem ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:hasChapter a owl:ObjectProperty ;
rdfs:label "has chapter" ;
rdfs:comment "A publication may have a number of chapters." ;
rdfs:range gcis:Chapter ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:hasCommittee a owl:ObjectProperty ;
rdfs:label "has committee" ;
rdfs:comment "A report such as the National Climate Assessment may have a committee that is in charge of the writing and reviewing of that report." ;
rdfs:domain gcis:Report ;
rdfs:range gcis:Committee ;
rdfs:subPropertyOf prov:wasAttributedTo .
gcis:hasAuthor a owl:ObjectProperty ;
rdfs:label "has author" ;
rdfs:comment "A resource may have one or more authors." ;
rdfs:range gcis:Agent ;
rdfs:subPropertyOf prov:wasAttributedTo .
gcis:hasFinding a owl:ObjectProperty ;
rdfs:label "has finding" ;
rdfs:comment "A publication may contain findings." ;
rdfs:range gcis:Finding ;
rdfs:subPropertyOf dcterms:hasPart.
gcis:hasFigure a owl:ObjectProperty ;
rdfs:label "has figure" ;
rdfs:comment "A publication contains one or more graphical components which most times but not necessarily are numbered and contain titles and captions .";
rdfs:domain gcis:Publication ;
rdfs:range gcis:Figure ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:relatedProject a owl:ObjectProperty ;
rdfs:label "related project" ;
rdfs:comment "An entity ascribed to a project through an unspecified activity" ;
rdfs:domain prov:Entity ;
rdfs:range gcis:Project ;
rdfs:subPropertyOf prov:wasAttributedTo .
gcis:worksAt a owl:ObjectProperty ;
rdfs:label "works at" ;
rdfs:comment "A person works at an organization." ;
rdfs:domain gcis:Person ;
rdfs:range gcis:Organization, gcis:Group ;
rdfs:subPropertyOf prov:actedOnBehalfOf .
gcis:hasImage a owl:ObjectProperty ;
rdfs:label "has image" ;
rdfs:comment "A figure contains a graphical component." ;
rdfs:domain gcis:Figure, gcis:Image ;
rdfs:range gcis:Image ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:hasArray a owl:ObjectProperty ;
rdfs:label "has array" ;
rdfs:comment "A table contains one more arrays." ;
rdfs:domain gcis:Table ;
rdfs:range gcis:Array ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:sourceInstrument a owl:ObjectProperty ;
rdfs:label "source instrument" ;
rdfs:comment "A dataset was collected by using one or more instruments." ;
rdfs:domain gcis:Dataset ;
rdfs:range gcis:Instrument .
gcis:sourceModel a owl:ObjectProperty ;
rdfs:label "source model" ;
rdfs:comment "A dataset was generated by using one or more models." ;
rdfs:range gcis:Model .
gcis:inPlatform a owl:ObjectProperty ;
rdfs:label "in platform" ;
rdfs:comment "An instrument is deployed on a platform." ;
rdfs:domain gcis:Instrument ;
rdfs:range gcis:Platform .
gcis:hasInstrument a owl:ObjectProperty ;
rdfs:label "has instrument" ;
rdfs:comment "A platform has one or more instruments." ;
rdfs:domain gcis:Platform ;
rdfs:range gcis:Instrument .
gcis:implementedIn a owl:ObjectProperty ;
rdfs:label "implemented in" ;
rdfs:comment "An algorithm is implemented in a software system." ;
rdfs:domain gcis:Algorithm ;
rdfs:range gcis:Software .
gcis:implements a owl:ObjectProperty ;
rdfs:label "implements" ;
rdfs:comment "A software system implements one or more algorithms." ;
rdfs:domain gcis:Software ;
rdfs:range gcis:Algorithm .
gcis:hasMember a owl:ObjectProperty ;
rdfs:label "has member" ;
rdfs:comment "An agent has some members." ;
rdfs:subPropertyOf prov:hadDelegate.
gcis:hasGoverningOrganization a owl:ObjectProperty ;
rdfs:label "has governing organization" ;
rdfs:comment "An organization is responsible for a project." ;
rdfs:range gcis:Organization .
gcis:dataCenter a owl:ObjectProperty ;
rdfs:label "data center" ;
rdfs:comment "A dataset is curated at a data center." ;
rdfs:subPropertyOf prov:wasAttributedTo ;
rdfs:range gcis:Organization, gcis:Group .
gcis:Measuring a owl:Class ;
rdfs:label "Measuring" ;
rdfs:comment "The act or the process of finding the size, quantity or degree of something." ;
rdfs:subClassOf prov:Activity .
gcis:Table a owl:Class ;
rdfs:label "Table" ;
rdfs:comment "Facts or or numbers arranged in a special order, usually in rows and columns." ;
rdfs:subClassOf prov:Entity .
gcis:Sensor a owl:Class ;
rdfs:label "Sensor" ;
rdfs:comment "Sensing is a process that results in the estimation, or calculation, of the value of a phenomenon. An entity that can follow a sensing method and thus observe some property of a feature of interest. Sensors may be physical devices, computational methods, a laboratory setup with a person following a method, or any other thing that can follow a sensing method to observe a property." ;
rdfs:subClassOf prov:Entity .
gcis:ReportGeneration a owl:Class ;
rdfs:label "Report Generation" ;
rdfs:comment "An activity that generates reports." ;
rdfs:subClassOf prov:Activity .
gcis:ChapterWriting a owl:Class ;
rdfs:label "Chapter Writing" ;
rdfs:comment "An activity that writes chapters." ;
rdfs:subClassOf prov:Activity .
gcis:FigureCompiling a owl:Class ;
rdfs:label "Figure Compiling" ;
rdfs:comment "An activity that compiles figures." ;
rdfs:subClassOf prov:Activity .
gcis:TableCompiling a owl:Class ;
rdfs:label "Table Compiling" ;
rdfs:comment "An activity that compiles tables." ;
rdfs:subClassOf prov:Activity .
gcis:PublicationPreparation a owl:Class ;
rdfs:label "Publication Preparation" ;
rdfs:comment "A activity that prepares publications." ;
rdfs:subClassOf prov:Activity .
gcis:DatasetCapture a owl:Class ;
rdfs:label "Dataset Capture" ;
rdfs:comment "An activity that captures datasets." ;
rdfs:subClassOf prov:Activity .
gcis:ModelRunOutput a owl:Class ;
rdfs:label "Model Run Output" ;
rdfs:comment "Results generated by running a model." ;
rdfs:subClassOf prov:Entity, gcis:Dataset .
gcis:TraceableAccount a owl:Class ;
rdfs:label "Traceable Account" ;
skos:editoralNote "comment content is from: http://www.ipcc.ch/pdf/supporting-material/uncertainty-guidance-note.pdf" ;
rdfs:comment "A description of the evaluation of the type, amount, quality, and consistency of evidence and the degree of agreement, which together form the basis for a given finding." ;
rdfs:subClassOf prov:Entity .
gcis:ConfidenceAssertion a owl:Class ;
rdfs:label "Confidence Assertion" ;
rdfs:comment "The confidence assertion of a traceable account." ;
owl:equivalentClass
[ a owl:Class ;
owl:oneOf (gcis:VeryHigh gcis:High gcis:Medium gcis:Low)
] ;
rdfs:subClassOf prov:Entity .
gcis:ConfidenceLevel a owl:Class ;
rdfs:label " Level" ;
rdfs:comment "A parameter used to indicate the reliability of traceable accounts." ;
rdfs:subClassOf prov:Entity .
gcis:VeryHigh a gcis:ConfidenceLevel ;
rdfs:label "Very High" ;
rdfs:comment "Strong evidence (established theory, multiple sources, consistent results, well documented and accepted methods, etc.), high consensus." .
gcis:High a gcis:ConfidenceLevel ;
rdfs:label "High" ;
rdfs:comment "Moderate evidence (several sources, some consistency, methods vary and/or documentation limited, etc.), medium consensus." .
gcis:Medium a gcis:ConfidenceLevel ;
rdfs:label "Medium" ;
rdfs:comment "Suggestive evidence (a few sources, limited consistency, models incomplete, methods emerging, etc.), competing schools of thought." .
gcis:Low a gcis:ConfidenceLevel ;
rdfs:label "Low" ;
rdfs:comment "Inconclusive evidence (limited sources, extrapolations, inconsistent findings, poor documentation and/or methods not tested, etc.), disagreement or lack of opinions among experts." .
gcis:Calibration a owl:Class ;
rdfs:label "Calibration" ;
rdfs:comment "A comparison between measurements: comparing a measurement to an observed measurement or to a measurement that is deemed accurate." ;
rdfs:subClassOf prov:Entity .
gcis:hasTable a owl:ObjectProperty ;
rdfs:label "has table" ;
rdfs:comment "A publication may contain tables." ;
rdfs:domain gcis:Publication ;
rdfs:range gcis:Table ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:sourceDataset a owl:ObjectProperty ;
skos:editorialNote "The domain of gcis:sourceDataset covers various classes, so it is left as undefined." ;
rdfs:label "source dataset" ;
rdfs:comment "A figure, table, publication, etc. may be based on one or more datasets." ;
rdfs:range gcis:Dataset .
gcis:sourceAlgorithm a owl:ObjectProperty ;
rdfs:label "source algorithm" ;
rdfs:comment "A dataset may be based on one or more algorithms." ;
rdfs:domain gcis:Dataset ;
rdfs:range gcis:Algorithm .
gcis:hasSensor a owl:ObjectProperty ;
rdfs:label "has sensor" ;
rdfs:comment "An instrument may have one or more sensors." ;
rdfs:domain gcis:Instrument ;
rdfs:range gcis:Sensor ;
rdfs:subPropertyOf dcterms:hasPart .
gcis:inInstrument a owl:ObjectProperty ;
rdfs:label "in instrument" ;
rdfs:comment "A sensor may be deployed in one or more instruments." ;
rdfs:domain gcis:Sensor ;
rdfs:range gcis:Instrument ;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:targetSensor a owl:ObjectProperty ;
rdfs:label "target sensor" ;
rdfs:comment "A calibration is applied to its target sensors." ;
rdfs:domain gcis:Calibration ;
rdfs:range gcis:Sensor .
gcis:publicationStatus a owl:DatatypeProperty ;
rdfs:label "publication status" ;
rdfs:comment "The status of the publication of a document." ;
rdfs:domain gcis:Publication ;
rdfs:range xsd:string .
gcis:hasTraceableAccount a owl:ObjectProperty ;
rdfs:label "has traceable account" ;
rdfs:comment "A finding may have a traceable account." ;
rdfs:domain gcis:Finding ;
rdfs:range gcis:TraceableAccount .
gcis:confidence a owl:ObjectProperty ;
rdfs:label "has confidence" ;
rdfs:comment "A finding has a confidence assertion." ;
rdfs:domain gcis:Finding ;
rdfs:range gcis:ConfidenceAssertion .
gcis:subject a owl:ObjectProperty ;
rdfs:label "subject" ;
rdfs:comment "A publication, figure, message, dataset, etc. may use one or more concepts as subject." ;
rdfs:range skos:Concept ;
rdfs:subPropertyOf dcterms:subject .
gcis:hasFundingAgency a owl:ObjectProperty ;
skos:editorialNote "The domain of gcis:hasFundingAgency covers various classes, so it is left as undefined." ;
rdfs:label "has funding agency" ;
rdfs:comment "A project, software, instrument, etc. may be funded by an agent." ;
rdfs:range gcis:Agent .
gcis:hasInputDataset a owl:ObjectProperty ;
rdfs:label "has input dataset" ;
rdfs:comment "An activity may have input datasets." ;
rdfs:subPropertyOf prov:used ;
rdfs:range gcis:Dataset .
gcis:version a owl:DatatypeProperty ;
rdfs:label "version" ;
rdfs:subPropertyOf dbpprop:version .
gcis:hasSpatialResolution a owl:ObjectProperty ;
rdfs:label "has spatial resolution" ;
rdfs:comment "Description of the smallest quantity that is discernable in a geographic feature." ;
rdfs:range gcis:SpatialResolution .
gcis:hasTemporalResolution a owl:ObjectProperty ;
rdfs:label "has temporal resolution" ;
rdfs:comment "The frequency of an observation." ;
rdfs:range gcis:TemporalResolution .
gcis:wasProducedBy a owl:ObjectProperty ;
rdfs:label "was produced by" ;
rdfs:comment "A report was produced by an activity of report producing." ;
rdfs:domain gcis:Report ;
rdfs:range gcis:ReportGeneration ;
rdfs:subPropertyOf prov:wasGeneratedBy .
gcis:wasWrittenBy a owl:ObjectProperty ;
rdfs:label "was written by" ;
rdfs:comment "A chapter was writen by an activity of chapter writing." ;
rdfs:domain gcis:Chapter ;
rdfs:range gcis:ChapterWriting ;
rdfs:subPropertyOf prov:wasGeneratedBy .
gcis:wasPreparedBy a owl:ObjectProperty ;
rdfs:label "was prepared by" ;
rdfs:comment "A publication was prepared by an activity of publication preparation." ;
rdfs:domain gcis:Publication ;
rdfs:range gcis:PublicationPreparation ;
rdfs:subPropertyOf prov:wasGeneratedBy .
gcis:wasCapturedBy a owl:ObjectProperty ;
rdfs:label "was captured by" ;
rdfs:comment "A dataset was captured by an activity of dataset capturing." ;
rdfs:domain gcis:Dataset ;
rdfs:range gcis:DatasetCapture ;
rdfs:subPropertyOf prov:wasGeneratedBy .
gcis:wasCompiledBy a owl:ObjectProperty ;
rdfs:label "was compiled by" ;
rdfs:comment "A figure was compiled by an activity of figure compiling." ;
rdfs:subPropertyOf prov:wasGeneratedBy .
gcis:Project a owl:Class ;
rdfs:label "Project" ;
rdfs:comment "A piece of planned work that is designed to achieve a particular aim." ;
rdfs:subClassOf gcis:Agent .
gcis:Organization a owl:Class ;
rdfs:label "Organization" ;
rdfs:comment "An instititution such as an agency, a company, a society, a university, etc." ;
rdfs:subClassOf gcis:Agent , org:Organization , foaf:Organization , prov:Organization .
gcis:Person a owl:Class ;
rdfs:label "Person" ;
rdfs:comment "A human as an individual." ;
rdfs:subClassOf gcis:Agent , foaf:Person , prov:Person .
gcis:Group a owl:Class ;
rdfs:label "Group" ;
rdfs:comment "A number of individual agents that are connected." ;
rdfs:subClassOf gcis:Agent , foaf:Group .
gcis:SoftwareAgent a owl:Class ;
rdfs:label "Software Agent" ;
rdfs:comment "A software agent is a running software system." ;
rdfs:subClassOf gcis:Agent , prov:SoftwareAgent .
gcis:Agent a owl:Class ;
rdfs:label "Agent" ;
rdfs:comment "Someone or something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity." ;
rdfs:subClassOf prov:Agent , foaf:Agent .
gcis:Dataset a owl:Class ;
rdfs:label "Dataset" ;
rdfs:comment "Any organized collection of data or information that has a common theme. Examples include lists, tables, and databases, etc." ;
rdfs:subClassOf dctype:Dataset , prov:Entity .
gcis:Image a owl:Class ;
rdfs:label "Image" ;
rdfs:comment "A copy of something in the form of a visual representation. Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation, etc." ;
rdfs:subClassOf bibo:Image , gcis:Publication , prov:Entity .
gcis:Array a owl:Class ;
rdfs:label "Array" ;
rdfs:comment "A collection of numbers, signs or values arranged in rows and columns." ;
rdfs:subClassOf prov:Entity .
gcis:Software a owl:Class ;
rdfs:label "Software" ;
rdfs:comment "The programs, etc. used to operate a computer." ;
rdfs:subClassOf dctype:Software , prov:Entity .
gcis:Location a owl:Class ;
rdfs:label "Location" ;
rdfs:comment "A geographic place such as a city or non-geographic place such as a directory, row, or column." ;
rdfs:subClassOf prov:Location .
gcis:ImageCreation a owl:Class ;
rdfs:label "Image Creation" ;
rdfs:comment "An activity that creates images." ;
rdfs:subClassOf prov:Activity .
gcis:atLocation a owl:ObjectProperty ;
skos:editorialNote "The domain of gcis:atLocation covers various classes, so it is left as undefined." ;
rdfs:label "at location" ;
rdfs:comment "Something is at a geographic or non-geographic place." ;
rdfs:range gcis:Location ;
rdfs:subPropertyOf prov:atLocation .
gcis:chapterNumber a owl:DatatypeProperty ;
rdfs:label "chapter number" ;
rdfs:comment "A chapter may have a sequential number." ;
rdfs:domain gcis:Chapter ;
rdfs:range xsd:integer .
gcis:figureNumber a owl:DatatypeProperty ;
rdfs:label "figure number" ;
rdfs:comment "A figure may be numbered sequentially." ;
rdfs:domain gcis:Figure ;
rdfs:range xsd:string .
gcis:FindingNumber a owl:DatatypeProperty ;
rdfs:label "finding number" ;
rdfs:comment "A finding may be numbered sequentially." ;
rdfs:domain gcis:Finding ;
rdfs:range xsd:string .
gcis:findingStatement a owl:DatatypeProperty ;
rdfs:label "key finding" ;
rdfs:comment "The text of the Finding of a Highly Influential Scientific Assessment." ;
rdfs:domain gcis:Finding ;
rdfs:range xsd:string .
gcis:findingProcess a owl:DatatypeProperty ;
rdfs:label "finding process" ;
rdfs:comment "A finding contains a description of the process used in order to reach it." ;
rdfs:domain gcis:Finding ;
rdfs:range xsd:string .
gcis:descriptionOfEvidenceBase a owl:DatatypeProperty ;
rdfs:label "description of evidence base" ;
rdfs:comment "A finding contains additional information about the quality of the information used in reaching the Finding." ;
rdfs:domain gcis:Finding ;
rdfs:range xsd:string .
gcis:newInformationAndRemainingUncertainties a owl:DatatypeProperty ;
rdfs:label "new information and remaining uncertainties" ;
rdfs:comment "A finding contains a description of the new science developments over a specified timerange, which also includes information about remaining sources of Scientific uncertainty." ;
rdfs:domain gcis:Finding ;
rdfs:range xsd:string .
gcis:assessmentOfConfidenceBasedOnEvidence a owl:DatatypeProperty ;
rdfs:label "assessment of confidence based on evidence" ;
rdfs:comment "A finding contains a description of the level of confidence which the authors have in it." ;
rdfs:domain gcis:Finding ;
rdfs:range xsd:string .
gcis:hasURL a owl:DatatypeProperty ;
rdfs:label "has URL" ;
rdfs:comment "A resource may have a digital home accessible at a given address on the World Wide Web." ;
rdfs:range xsd:anyURI .
gcis:subOrganizationOf a owl:ObjectProperty ;
rdfs:label "sub-organization of" ;
rdfs:comment "An Organization is a component of another organization." ;
rdfs:domain gcis:Organization ;
rdfs:range gcis:Organization ;
rdfs:subPropertyOf org:subOrganizationOf , prov:actedOnBehalfOf .
gcis:hasPublisher a owl:ObjectProperty ;
rdfs:label "has publisher" ;
rdfs:comment "A publication has a publisher that produced it and made it available to the public." ;
rdfs:domain gcis:Publication ;
rdfs:range gcis:Agent ;
rdfs:subPropertyOf prov:wasAttributedTo .
gcis:used a owl:ObjectProperty ;
rdfs:label "used" ;
rdfs:comment "An activity uses entities when the activity is being undertaken." ;
rdfs:subPropertyOf prov:used .
gcis:hasCaption a owl:DatatypeProperty ;
rdfs:label "has caption" ;
rdfs:comment "A figure or table has a caption that explains or describes it." ;
rdfs:domain gcis:Figure , gcis:Table ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dcterms:description .
gcis:Mission a owl:Class ;
rdfs:label "Mission" ;
rdfs:comment "An official job with which individual(s) and/or groups are tasked." ;
rdfs:subClassOf prov:Entity .
gcis:Experiment a owl:Class ;
rdfs:label "Experiment" ;
rdfs:comment "A scientific test which is conducted to ascertain the response to an external event/stimulus." ;
rdfs:subClassOf prov:Entity .
gcis:Program a owl:Class ;
rdfs:label "Program" ;
rdfs:comment "A plan of things that will be done or included in the development of something." ;
rdfs:subClassOf prov:Entity .
gcis:Expedition a owl:Class ;
rdfs:label "Expedition" ;
rdfs:comment "An organized journey with a particular purpose." ;
rdfs:subClassOf prov:Entity .
gcis:Scenario a owl:Class ;
rdfs:label "Scenario" ;
rdfs:comment "Sets of assumptions used to help understand potential future conditions such as population growth, land use, and sea level rise. Scenarios are neither predictions nor forecasts. Scenarios are commonly used for planning purposes." ;
rdfs:subClassOf prov:Entity .
gcis:describesScenario a owl:ObjectProperty ;
rdfs:label "describes scenario" ;
rdfs:comment "A resource may describe one or more scenarios." ;
rdfs:range gcis:Scenario ;
owl:inverseOf gcis:scenarioDescribedIn .
gcis:scenarioDescribedIn a owl:ObjectProperty ;
rdfs:label "is described in" ;
rdfs:comment "A scenario is described in a resource." ;
rdfs:domain gcis:Scenario .
gcis:tableNumber a owl:DatatypeProperty ;
rdfs:label "table number" ;
rdfs:comment "The number of a table in a publication." ;
rdfs:domain gcis:Table ;
rdfs:range xsd:string .
gcis:byteSize a owl:DatatypeProperty ;
rdfs:label "byte size" ;
rdfs:comment "The size of a dataset in bytes." ;
rdfs:domain gcis:Dataset;
rdfs:range xsd:string .
gcis:contactPoint a owl:ObjectProperty ;
rdfs:label "contact point" ;
rdfs:comment "The point of contact for a dataset." ;
rdfs:domain gcis:Dataset ;
rdfs:range gcis:Agent .
gcis:extentTypeCode a owl:DatatypeProperty ;
rdfs:label "extent type code" ;
rdfs:comment "The extent type code of a spatial extent." ;
rdfs:domain gcis:SpatialExtents ;
rdfs:range xsd:string .
gcis:westBoundLongitude a owl:DatatypeProperty ;
rdfs:label "west bound longitude" ;
rdfs:comment "The value of west bound longitude." ;
rdfs:domain gcis:SpatialExtents ;
rdfs:range xsd:float .
gcis:eastBoundLongitude a owl:DatatypeProperty ;
rdfs:label "east bound longitude" ;
rdfs:comment "The value of east bound longitude." ;
rdfs:domain gcis:SpatialExtents ;
rdfs:range xsd:float .
gcis:southBoundLatitude a owl:DatatypeProperty ;
rdfs:label "south bound latitude" ;
rdfs:comment "the value of south bound latitude." ;
rdfs:domain gcis:SpatialExtents ;
rdfs:range xsd:float .
gcis:northBoundLatitude a owl:DatatypeProperty ;
rdfs:label "north bound latitude" ;
rdfs:comment "The value of north bound latitude." ;
rdfs:domain gcis:SpatialExtents ;
rdfs:range xsd:float .
gcis:startedAt a owl:DatatypeProperty ;
rdfs:label "started at" ;
rdfs:comment "The start date/time of a temporal extent." ;
rdfs:domain gcis:TemporalExtents ;
rdfs:range xsd:dateTime .
gcis:startDate a owl:DatatypeProperty ;
rdfs:label "start date" ;
rdfs:comment "The start date of a temporal extent" ;
rdfs:domain gcis:TemporalExtents ;
rdfs:range xsd:date .
gcis:endedAt a owl:DatatypeProperty ;
rdfs:label "ended at" ;
rdfs:comment "The end date/time of a temporal extent." ;
rdfs:domain gcis:TemporalExtents ;
rdfs:range xsd:dateTime .
gcis:endDate a owl:DatatypeProperty ;
rdfs:label "end date" ;
rdfs:comment "The end date of a temporalExtent" ;
rdfs:domain gcis:TemporalExtents ;
rdfs:range xsd:date .
gcis:resolution a owl:DatatypeProperty ;
rdfs:label "resolution" ;
rdfs:comment "The degree of fineness with which an image can be recorded or produced." ;
rdfs:domain gcis:SpatialResolution ;
rdfs:range xsd:string .
gcis:equivalentScale a owl:DatatypeProperty ;
rdfs:label "equivalent scale" ;
rdfs:comment "The equivalent scale of a graph." ;
rdfs:domain gcis:SpatialResolution ;
rdfs:range xsd:string .
gcis:hasTemporalUnit a owl:ObjectProperty ;
rdfs:label "has temporal unit" ;
rdfs:comment "A temporal resolution has one or more temporal units." ;
rdfs:domain gcis:TemporalResolution ;
rdfs:range gcis:TemporalUnit .
gcis:TemporalUnit a owl:Class ;
rdfs:label "Temporal Unit" ;
rdfs:comment "A collection of temporal units used for measuring time." ;
owl:equivalentClass
[ a owl:Class ;
owl:oneOf (gcis:unitSecond gcis:unitMinute gcis:unitHour gcis:unitDay gcis:unitWeek gcis:unitMonth gcis:unitYear)
] ;
rdfs:subClassOf prov:Entity .
gcis:UnitType a owl:Class ;
rdfs:label "Unit Type" ;
rdfs:comment "A type that allows only one value." ;
rdfs:subClassOf prov:Entity .
gcis:unitSecond a gcis:UnitType ;
rdfs:label "Unit Second" ;
rdfs:comment "Second is a basic temporal unit." .
gcis:unitMinute a gcis:UnitType ;
rdfs:label "Unit Minute" ;
rdfs:comment "A minute is 60 seconds." .
gcis:unitHour a gcis:UnitType ;
rdfs:label "Unit Hour" ;
rdfs:comment "An hour is 60 minutes." .
gcis:unitDay a gcis:UnitType ;
rdfs:label "Unit Day" ;
rdfs:comment "A day is 24 hours." .
gcis:unitWeek a gcis:UnitType ;
rdfs:label "Unit Week" ;
rdfs:comment "A week is seven days." .
gcis:unitMonth a gcis:UnitType ;
rdfs:label "Unit Month" ;
rdfs:comment "A month is 28 to 31 days." .
gcis:unitYear a gcis:UnitType ;
rdfs:label "Unit Year" ;
rdfs:comment "A year is 12 months." .
gcis:isTraceableAccountOf a owl:ObjectProperty ;
rdfs:label "is traceable account of" ;
rdfs:comment "A traceable account supports a finding." ;
owl:inverseOf gcis:hasTraceableAccount ;
rdfs:domain gcis:TraceableAccount ;
rdfs:range gcis:Finding .
gcis:isChapterOf a owl:ObjectProperty ;
rdfs:label "is chapter of" ;
rdfs:comment "A chapter is in a publication." ;
owl:inverseOf gcis:hasChapter ;
rdfs:domain gcis:Chapter ;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:isImageOf a owl:ObjectProperty ;
rdfs:label "is image of" ;
rdfs:comment "An image appears in one or more figures." ;
owl:inverseOf gcis:hasImage ;
rdfs:domain gcis:Image ;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:isArrayOf a owl:ObjectProperty ;
rdfs:label "is array of" ;
rdfs:comment "An array appears in one or more tables." ;
owl:inverseOf gcis:hasArray ;
rdfs:domain gcis:Array ;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:isFigureOf a owl:ObjectProperty ;
rdfs:label "is figure of" ;
rdfs:comment "A figure appears in a publication." ;
owl:inverseOf gcis:hasFigure ;
rdfs:domain gcis:Figure ;
rdfs:range gcis:Publication;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:isTableOf a owl:ObjectProperty ;
rdfs:label "is table of" ;
rdfs:comment "A table appears in a publication." ;
owl:inverseOf gcis:hasTable ;
rdfs:domain gcis:Table ;
rdfs:range gcis:Publication;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:isFindingOf a owl:ObjectProperty ;
rdfs:label "is finding of" ;
rdfs:comment "A finding is described and emphasized in a publication." ;
owl:inverseOf gcis:hasFinding ;
rdfs:domain gcis:Finding ;
rdfs:subPropertyOf dcterms:isPartOf .
gcis:isMemberOf a owl:ObjectProperty ;
rdfs:label "is member of" ;
rdfs:comment "The relationship that an agent belongs to another agent." ;
owl:inverseOf gcis:hasMember ;
rdfs:subPropertyOf prov:actedOnBehalfOf .
gcis:isAuthorOf a owl:ObjectProperty ;
rdfs:label "is author of" ;
rdfs:comment "An agent can be the author of one or more publications." ;
owl:inverseOf gcis:hasAuthor ;
rdfs:domain gcis:Agent;
rdfs:range gcis:Publication ;
rdfs:subPropertyOf prov:contributed .
gcis:isPublisherOf a owl:ObjectProperty ;
rdfs:label "is publisher of" ;
rdfs:comment "An agent can be the publisher of one or more publications." ;
owl:inverseOf gcis:hasPublisher ;
rdfs:domain gcis:Agent;
rdfs:range gcis:Publication ;
rdfs:subPropertyOf prov:contributed .
gcis:hasSubOrganization a owl:ObjectProperty ;
rdfs:label "has sub-organization" ;
rdfs:comment "Represents hierarchical containment of Organizations or OrganizationalUnits; indicates an organization which is a sub-part or child of this organization." ;
owl:inverseOf gcis:subOrganizationOf ;
rdfs:domain gcis:Organization ;
rdfs:range gcis:Organization ;
rdfs:subPropertyOf prov:hadDelegate ;
rdfs:subPropertyOf org:hasSubOrganization .
gcis:isSupportedBy a owl:ObjectProperty ;
rdfs:label "is supported by" ;
rdfs:comment "A finding may be supported by or depicted in a few resources, such as data, figures, models, and software, etc." ;
rdfs:domain gcis:Finding .
gcis:computingEnvironmentsUsed a owl:DatatypeProperty ;
rdfs:label "computing environments used" ;
rdfs:comment "Description of the computing environment(s) associated with an activity" ;
rdfs:domain prov:Activity ;
rdfs:range xsd:string .
gcis:descriptionOfOutputFiles a owl:DatatypeProperty ;
rdfs:label "description of output files" ;
rdfs:comment "Narrative description of one or more files generated by an activity" ;
rdfs:domain prov:Activity ;
rdfs:range xsd:string .
gcis:Book a owl:Class ;
rdfs:subClassOf gcis:Publication , bibo:Book , prov:Entity ;
rdfs:label "Book" ;
rdfs:comment "A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers." .
gcis:Journal a owl:Class ;
rdfs:subClassOf gcis:Publication , bibo:Journal , prov:Entity ;
rdfs:label "Journal" ;
rdfs:comment "A periodical of scholarly journal Articles." .
gcis:AcademicArticle a owl:Class ;
rdfs:subClassOf gcis:Publication , bibo:AcademicArticle , prov:Entity ;
rdfs:label "Academic Article" ;
rdfs:comment "A scholarly article, typically published in a journal." .
gcis:Indicator a owl:Class ;
rdfs:subClassOf gcis:Report ;
rdfs:label "Indicator" ;
rdfs:comment "Indicators are observations or calculations that can be used to track conditions and trends" .
gcis:Webpage a owl:Class ;
rdfs:subClassOf gcis:Publication , bibo:Webpage , prov:Entity ;
rdfs:label "Webpage" ;
rdfs:comment "A web page is an online document available (at least initially) on the World Wide Web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print." .
gcis:CryptographicHash a owl:Class;
rdfs:subClassOf prov:Entity ;
rdfs:label "Cryptographic Hash" ;
rdfs:comment "A cryptographic hash value computed for the purpose of authentication or verification of a digital entity" .
gcis:cryptographicHash a owl:ObjectProperty ;
rdfs:label "cryptographic hash" ;
rdfs:comment "A cryptographic hash value computed for this digital entity" ;
rdfs:domain prov:Entity ;
rdfs:range gcis:CryptographicHash .
gcis:hashFunction a owl:ObjectProperty ;
rdfs:label "hash function" ;
rdfs:comment "The function used to compute a hash value." ;
rdfs:domain gcis:CryptographicHash .
gcis:recommendedCitation a owl:DatatypeProperty ;
rdfs:label "recommended citation" ;
rdfs:comment "when citing this resource please use this recommended citation" ;
rdfs:domain prov:Entity ;
rdfs:range xsd:string .
gcis:derivedFromScenario a owl:ObjectProperty ;
rdfs:label "derived from scenario" ;
rdfs:comment "A model run output was derived from one or more scenarios that was used in the model run." ;
rdfs:domain gcis:ModelRunOutput ;
rdfs:range gcis:Scenario ;
rdfs:subPropertyOf prov:wasDerivedFrom .
gcis:derivedModelRunOutputs a owl:ObjectProperty ;
rdfs:label "derived model run outputs" ;
rdfs:comment "Outputs of a model run based on this scenario." ;
rdfs:domain gcis:Scenario ;
rdfs:range gcis:ModelRunOutput ;
owl:inverseOf gcis:derivedFromScenario ;
rdfs:subPropertyOf prov:hadDerivation .
gcis:contributedModel a owl:ObjectProperty ;
rdfs:label "contributed model" ;
rdfs:comment "A project contributed to the creation of one or more models." ;
rdfs:domain gcis:Project ;
rdfs:range gcis:Model ;
rdfs:subPropertyOf prov:contributed .