-
Notifications
You must be signed in to change notification settings - Fork 5
/
geo.owl
1852 lines (1296 loc) · 116 KB
/
geo.owl
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
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/geo.owl/"
xml:base="http://purl.obolibrary.org/obo/geo.owl/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/geo.owl">
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/bfo/2014-05-03/classes-only.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/ro/core.owl"/>
<obo:IAO_0000116>If you are wondering where the individuals that were previously in geo.owl have gone, they have been moved to other OWL files according to a modularization strategy that seeks to avoid compiling all possible geographical entities into one, giant, outsized file.
For example: nations and their dependencies are now in nation-and-dependency-instances.owl available at http://purl.obolibrary.org/obo/geo/nation-and-dependency-instances.owl
For a full list of PURLs, see the geo.yml file here: https://raw.githubusercontent.com/OBOFoundry/purl.obolibrary.org/master/config/geo.yml</obo:IAO_0000116>
<dc:contributor xml:lang="en">Amanda Hicks</dc:contributor>
<dc:contributor xml:lang="en">Katrina M. Donovan</dc:contributor>
<dc:contributor xml:lang="en">Mathias Brochhausen</dc:contributor>
<dc:creator xml:lang="en">William R. Hogan</dc:creator>
<dc:title xml:lang="en">Geographical Entity Ontology</dc:title>
<terms:license>https://creativecommons.org/licenses/by/4.0/</terms:license>
<rdfs:comment xml:lang="en">When citing the Geographical Entities Ontology (GEO), use the permanent URL of the ontology: http://purl.obolibrary.org/obo/geo.owl. When referencing a specific component of GEO such as a class, object property, or individual, use that component's Uniform Resource Identifier (URI).</rdfs:comment>
<owl:versionInfo xml:lang="en">production version 2016-03-26</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000179 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000179">
<rdfs:label xml:lang="en">BFO OWL specification label</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/BFO_0000180 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000180">
<rdfs:label xml:lang="en">BFO CLIF specification label</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/GEO_000000009 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000009">
<rdfs:label xml:lang="en">US State Two Digit Identifier</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000010 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000010">
<rdfs:label xml:lang="en">US State Two Letter Abbreviation</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000011 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000011">
<rdfs:label xml:lang="en">US State Ens Identifier</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000021 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000021">
<rdfs:label xml:lang="en">UN Numerical Code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000022 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000022">
<rdfs:label xml:lang="en">ISO 3166-1-alpha-3 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000023 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000023">
<rdfs:label xml:lang="en">ISO 3166-1-alpha-2 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000358 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000358">
<rdfs:label xml:lang="en">Proposed Apollo Location Code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000359 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000359">
<rdfs:label xml:lang="en">ISO 3166-2 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000035330 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000035330">
<obo:IAO_0000111 xml:lang="en">geonameid</obo:IAO_0000111>
<rdfs:comment xml:lang="en">integer id of record in geonames database</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">geonameid</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000035331 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000035331">
<obo:IAO_0000111 xml:lang="en">geonames admin1 code</obo:IAO_0000111>
<rdfs:comment xml:lang="en">fipscode (subject to change to iso code), see exceptions below, see file admin1Codes.txt for display names of this code; varchar(20)</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">admin1 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000035332 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000035332">
<obo:IAO_0000111 xml:lang="en">geonames admin2 code</obo:IAO_0000111>
<rdfs:comment xml:lang="en">code for the second administrative division, a county in the US, see file admin2Codes.txt; varchar(80)</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">admin2 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000035333 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000035333">
<obo:IAO_0000111 xml:lang="en">geonames admin3 code</obo:IAO_0000111>
<rdfs:comment xml:lang="en">code for third level administrative division, varchar(20)</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">admin3 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000035334 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000035334">
<obo:IAO_0000111 xml:lang="en">geonames admin4 code</obo:IAO_0000111>
<rdfs:comment xml:lang="en">code for fourth level administrative division, varchar(20)</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">admin4 code</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000035335 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000035335">
<obo:IAO_0000111 xml:lang="en">US Census Bureau geographical identifier</obo:IAO_0000111>
<obo:IAO_0000115 xml:lang="en">An annotation property to identify OWL 2 individuals that represent geographical entities with their appropriate US Census-designated geographical identifier.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Matthew Diller</obo:IAO_0000117>
<dc:contributor xml:lang="en">William R. Hogan</dc:contributor>
<rdfs:label xml:lang="en">US Census GEOID</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000111">
<rdfs:label xml:lang="en">editor preferred label</rdfs:label>
<rdfs:label>editor preferred term</rdfs:label>
<rdfs:label xml:lang="en">editor preferred term</rdfs:label>
<rdfs:label>editor preferred term~editor preferred label</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000112">
<rdfs:label xml:lang="en">example of usage</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000114">
<rdfs:label xml:lang="en">has curation status</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>definition</rdfs:label>
<rdfs:label xml:lang="en">definition</rdfs:label>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">textual definition</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000116">
<rdfs:label xml:lang="en">editor note</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000117">
<rdfs:label xml:lang="en">definition editor</rdfs:label>
<rdfs:label xml:lang="en">term editor</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000118">
<rdfs:label xml:lang="en">alternative term</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000119">
<rdfs:label xml:lang="en">definition source</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000232 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000232">
<rdfs:label xml:lang="en">curator note</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000412">
<rdfs:label xml:lang="en">imported from</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000600 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000600">
<rdfs:label xml:lang="en">elucidation</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000601 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000601">
<rdfs:label xml:lang="en">has associated axiom(nl)</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/IAO_0000602 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000602">
<rdfs:label xml:lang="en">has associated axiom(fol)</rdfs:label>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/OBI_0001886 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001886">
<rdfs:label xml:lang="en">NIAID GSCID-BRC alternative term</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<rdf:Description rdf:about="http://purl.org/dc/elements/1.1/source">
<rdfs:label>Source</rdfs:label>
<rdfs:label xml:lang="en-us">Source</rdfs:label>
</rdf:Description>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDefinition -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDefinition">
<rdfs:label xml:lang="en">has_definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBONamespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in_subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
<rdfs:label>label</rdfs:label>
</rdf:Description>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000075 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000075">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000328"/>
<obo:IAO_0000118 xml:lang="en">aggregate of</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">aggregate_of</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/omrse.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">is aggregate of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000083 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000083">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000123"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000006"/>
<obo:BFO_0000179>located-at-r_st</obo:BFO_0000179>
<obo:BFO_0000180>occupiesSpatialRegionAt</obo:BFO_0000180>
<obo:IAO_0000116>Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance level, relation. The BFO reading of the binary relation 'occupies spatial region at some time@en' is: exists t, exists_at(x,t) & exists_at(y,t) & 'occupies spatial region@en'(x,y,t)</obo:IAO_0000116>
<obo:IAO_0000116>BFO2 Reference: independent continuant</obo:IAO_0000116>
<obo:IAO_0000116>BFO2 Reference: spatial region</obo:IAO_0000116>
<obo:IAO_0000600 xml:lang="en">b occupies_spatial_region r at t means that r is a spatial region in which independent continuant b is exactly located (axiom label in BFO2 Reference: [041-002])</obo:IAO_0000600>
<obo:IAO_0000601 xml:lang="en">every region r is occupies_spatial_region r at all times. (axiom label in BFO2 Reference: [042-002])</obo:IAO_0000601>
<obo:IAO_0000601 xml:lang="en">if b occupies_spatial_region r at t & b continuant_part_of b at t, then there is some r which is continuant_part_of r at t such that b occupies_spatial_region r at t. (axiom label in BFO2 Reference: [043-001])</obo:IAO_0000601>
<obo:IAO_0000602>(forall (r t) (if (Region r) (occupiesSpatialRegionAt r r t))) // axiom label in BFO2 CLIF: [042-002] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x r t) (if (occupiesSpatialRegionAt x r t) (and (SpatialRegion r) (IndependentContinuant x)))) // axiom label in BFO2 CLIF: [041-002] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x y r_1 t) (if (and (occupiesSpatialRegionAt x r_1 t) (continuantPartOfAt y x t)) (exists (r_2) (and (continuantPartOfAt r_2 r_1 t) (occupiesSpatialRegionAt y r_2 t))))) // axiom label in BFO2 CLIF: [043-001] </obo:IAO_0000602>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">occupies spatial region at some time</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000110 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000110">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:BFO_0000179>c-has-part_at</obo:BFO_0000179>
<obo:BFO_0000180>hasContinuantPartAt</obo:BFO_0000180>
<obo:IAO_0000115>[copied from inverse property 'part of continuant at all times that whole exists'] forall(t) exists_at(y,t) -> exists_at(x,t) and 'part of continuant'(x,y,t)</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">b has_continuant_part c at t = Def. c continuant_part_of b at t. (axiom label in BFO2 Reference: [006-001])</obo:IAO_0000115>
<obo:IAO_0000116>Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance-level, relation. The BFO reading of the binary relation 'has continuant part at all times@en' is: forall(t) exists_at(x,t) -> exists_at(y,t) and 'has continuant part@en(x,y,t)'.</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'part of continuant at all times that whole exists'] This is a binary version of a ternary time-indexed, instance level, relation. Unlike the rest of the temporalized relations which temporally quantify over existence of the subject of the relation, this relation temporally quantifies over the existence of the object of the relation. The relation is provided tentatively, to assess whether the GO needs such a relation. It is inverse of 'has continuant part at all times'</obo:IAO_0000116>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/bfo.owl</obo:IAO_0000412>
<obo:IAO_0000602>(iff (hasContinuantPartAt a b t) (continuantPartOfAt b a t)) // axiom label in BFO2 CLIF: [006-001] </obo:IAO_0000602>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">has continuant part at all times</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000111 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000111">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000110"/>
<obo:BFO_0000179>c-has-ppart_at</obo:BFO_0000179>
<obo:BFO_0000180>hasProperContinuantPartAt</obo:BFO_0000180>
<obo:IAO_0000115 xml:lang="en">b has_proper_continuant_part c at t = Def. c proper_continuant_part_of b at t. [XXX-001</obo:IAO_0000115>
<obo:IAO_0000116>Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance-level, relation. The BFO reading of the binary relation 'has proper continuant part at all times@en' is: forall(t) exists_at(x,t) -> exists_at(y,t) and 'has proper continuant part@en(x,y,t)'.</obo:IAO_0000116>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/bfo.owl</obo:IAO_0000412>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">has proper continuant part at all times</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000123 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000123">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000006"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<obo:BFO_0000179>r-location-of_st</obo:BFO_0000179>
<obo:IAO_0000116>[copied from inverse property 'occupies spatial region at some time'] Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance level, relation. The BFO reading of the binary relation 'occupies spatial region at some time@en' is: exists t, exists_at(x,t) & exists_at(y,t) & 'occupies spatial region@en'(x,y,t)</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'occupies spatial region at some time'] BFO2 Reference: independent continuant</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'occupies spatial region at some time'] BFO2 Reference: spatial region</obo:IAO_0000116>
<obo:IAO_0000600>[copied from inverse property 'occupies spatial region at some time'] b occupies_spatial_region r at t means that r is a spatial region in which independent continuant b is exactly located (axiom label in BFO2 Reference: [041-002])</obo:IAO_0000600>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">has spatial occupant at some time</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000137 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000137">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000177"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000187"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<obo:BFO_0000179>c-ppart-of_at</obo:BFO_0000179>
<obo:BFO_0000180>properContinuantPartOfAt</obo:BFO_0000180>
<obo:IAO_0000115 xml:lang="en">b proper_continuant_part_of c at t =Def. b continuant_part_of c at t & b and c are not identical. (axiom label in BFO2 Reference: [004-001])</obo:IAO_0000115>
<obo:IAO_0000116>Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance-level, relation. The BFO reading of the binary relation 'proper part of continuant at all times@en' is: forall(t) exists_at(x,t) -> exists_at(y,t) and 'proper part of continuant@en(x,y,t)'.</obo:IAO_0000116>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/bfo.owl</obo:IAO_0000412>
<obo:IAO_0000602>(iff (properContinuantPartOfAt a b t) (and (continuantPartOfAt a b t) (not (= a b)))) // axiom label in BFO2 CLIF: [004-001] </obo:IAO_0000602>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">proper part of continuant at all times</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000177 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000177">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ReflexiveProperty"/>
<obo:BFO_0000179>c-part-of_at</obo:BFO_0000179>
<obo:BFO_0000180>continuantPartOfAt</obo:BFO_0000180>
<obo:IAO_0000112 xml:lang="en">Mary’s arm continuant_part_of Mary in the time of her life prior to her operation</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">the Northern hemisphere of the planet Earth is a part of the planet Earth at all times at which the planet Earth exists.</obo:IAO_0000112>
<obo:IAO_0000115>[copied from inverse property 'has continuant part at all times that part exists'] forall(t) exists_at(y,t) -> exists_at(x,t) and 'has continuant part'(x,y,t)</obo:IAO_0000115>
<obo:IAO_0000116>Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance-level, relation. The BFO reading of the binary relation 'part of continuant at all times@en' is: forall(t) exists_at(x,t) -> exists_at(y,t) and 'part of continuant@en(x,y,t)'.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">BFO 2 Reference: Immaterial entities are in some cases continuant parts of their material hosts. Thus the hold of a ship, for example, is a part of the ship; it may itself have parts, which may have names (used for example by ship stow planners, customs inspectors, and the like). Immaterial entities under both 1. and 2. can be of zero, one, two or three dimensions. We define:a(immaterial entity)[Definition: a is an immaterial entity = Def. a is an independent continuant that has no material entities as parts. (axiom label in BFO2 Reference: [028-001])</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">BFO 2 Reference: a (continuant or occurrent) part of itself. We appreciate that this is counterintuitive for some users, since it implies for example that President Obama is a part of himself. However it brings benefits in simplifying the logical formalism, and it captures an important feature of identity, namely that it is the limit case of mereological inclusion.</obo:IAO_0000116>
<obo:IAO_0000116>BFO2 Reference: continuant</obo:IAO_0000116>
<obo:IAO_0000116>BFO2 Reference: continuantThe range for ‘t’ (as in all cases throughout this document unless otherwise specified) is: temporal region.</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'has continuant part at all times that part exists'] This is a binary version of a ternary time-indexed, instance level, relation. Unlike the rest of the temporalized relations which temporally quantify over existence of the subject of the relation, this relation temporally quantifies over the existence of the object of the relation. The relation is provided tentatively, to assess whether the GO needs such a relation. It is inverse of 'part of continuant at all times'</obo:IAO_0000116>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/bfo.owl</obo:IAO_0000412>
<obo:IAO_0000600 xml:lang="en">b continuant_part_of c at t =Def. b is a part of c at t & t is a time & b and c are continuants. (axiom label in BFO2 Reference: [002-001])</obo:IAO_0000600>
<obo:IAO_0000601 xml:lang="en">continuant_part_of is antisymmetric. (axiom label in BFO2 Reference: [120-001])</obo:IAO_0000601>
<obo:IAO_0000601 xml:lang="en">continuant_part_of is reflexive (every continuant entity is a continuant_part_of itself). (axiom label in BFO2 Reference: [111-002])</obo:IAO_0000601>
<obo:IAO_0000601 xml:lang="en">continuant_part_of is transitive. (axiom label in BFO2 Reference: [110-001])</obo:IAO_0000601>
<obo:IAO_0000601 xml:lang="en">continuant_part_of satisfies unique product. (axiom label in BFO2 Reference: [122-001])</obo:IAO_0000601>
<obo:IAO_0000601 xml:lang="en">continuant_part_of satisfies weak supplementation. (axiom label in BFO2 Reference: [121-001])</obo:IAO_0000601>
<obo:IAO_0000601 xml:lang="en">if b continuant_part_of c at t and b is an independent continuant, then b is located_in c at t. (axiom label in BFO2 Reference: [047-002])</obo:IAO_0000601>
<obo:IAO_0000602>(forall (x t) (if (Continuant x) (continuantPartOfAt x x t))) // axiom label in BFO2 CLIF: [111-002] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x y t) (if (and (continuantPartOfAt x y t) (IndependentContinuant x)) (locatedInAt x y t))) // axiom label in BFO2 CLIF: [047-002] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x y t) (if (and (continuantPartOfAt x y t) (continuantPartOfAt y x t)) (= x y))) // axiom label in BFO2 CLIF: [120-001] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x y t) (if (and (continuantPartOfAt x y t) (not (= x y))) (exists (z) (and (continuantPartOfAt z y t) (not (exists (w) (and (continuantPartOfAt w x t) (continuantPartOfAt w z t)))))))) // axiom label in BFO2 CLIF: [121-001] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x y t) (if (exists (v) (and (continuantPartOfAt v x t) (continuantPartOfAt v y t))) (exists (z) (forall (u w) (iff (iff (continuantPartOfAt w u t) (and (continuantPartOfAt w x t) (continuantPartOfAt w y t))) (= z u)))))) // axiom label in BFO2 CLIF: [122-001] </obo:IAO_0000602>
<obo:IAO_0000602>(forall (x y z t) (if (and (continuantPartOfAt x y t) (continuantPartOfAt y z t)) (continuantPartOfAt x z t))) // axiom label in BFO2 CLIF: [110-001] </obo:IAO_0000602>
<obo:IAO_0000602>(iff (ImmaterialEntity a) (and (IndependentContinuant a) (not (exists (b t) (and (MaterialEntity b) (continuantPartOfAt b a t)))))) // axiom label in BFO2 CLIF: [028-001] </obo:IAO_0000602>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">part of continuant at all times</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000187 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000187">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:BFO_0000179>c-has-part-object_at</obo:BFO_0000179>
<obo:IAO_0000112>[copied from inverse property 'part of continuant at all times'] Mary’s arm continuant_part_of Mary in the time of her life prior to her operation</obo:IAO_0000112>
<obo:IAO_0000112>[copied from inverse property 'part of continuant at all times'] the Northern hemisphere of the planet Earth is a part of the planet Earth at all times at which the planet Earth exists.</obo:IAO_0000112>
<obo:IAO_0000115>forall(t) exists_at(y,t) -> exists_at(x,t) and 'has continuant part'(x,y,t)</obo:IAO_0000115>
<obo:IAO_0000116>This is a binary version of a ternary time-indexed, instance level, relation. Unlike the rest of the temporalized relations which temporally quantify over existence of the subject of the relation, this relation temporally quantifies over the existence of the object of the relation. The relation is provided tentatively, to assess whether the GO needs such a relation. It is inverse of 'part of continuant at all times'</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'part of continuant at all times'] Alan Ruttenberg: This is a binary version of a ternary time-indexed, instance-level, relation. The BFO reading of the binary relation 'part of continuant at all times@en' is: forall(t) exists_at(x,t) -> exists_at(y,t) and 'part of continuant@en(x,y,t)'.</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'part of continuant at all times'] BFO 2 Reference: Immaterial entities are in some cases continuant parts of their material hosts. Thus the hold of a ship, for example, is a part of the ship; it may itself have parts, which may have names (used for example by ship stow planners, customs inspectors, and the like). Immaterial entities under both 1. and 2. can be of zero, one, two or three dimensions. We define:a(immaterial entity)[Definition: a is an immaterial entity = Def. a is an independent continuant that has no material entities as parts. (axiom label in BFO2 Reference: [028-001])</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'part of continuant at all times'] BFO 2 Reference: a (continuant or occurrent) part of itself. We appreciate that this is counterintuitive for some users, since it implies for example that President Obama is a part of himself. However it brings benefits in simplifying the logical formalism, and it captures an important feature of identity, namely that it is the limit case of mereological inclusion.</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'part of continuant at all times'] BFO2 Reference: continuant</obo:IAO_0000116>
<obo:IAO_0000116>[copied from inverse property 'part of continuant at all times'] BFO2 Reference: continuantThe range for ‘t’ (as in all cases throughout this document unless otherwise specified) is: temporal region.</obo:IAO_0000116>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/bfo.owl</obo:IAO_0000412>
<obo:IAO_0000600>[copied from inverse property 'part of continuant at all times'] b continuant_part_of c at t =Def. b is a part of c at t & t is a time & b and c are continuants. (axiom label in BFO2 Reference: [002-001])</obo:IAO_0000600>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">has continuant part at all times that part exists</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000328 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000328">
<rdfs:label xml:lang="en">is in aggregate</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000329 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000329">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/GEO_000000400"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/GEO_000000400"/>
<obo:IAO_0000115 xml:lang="en">A governing organization G1 is subordinate to another governing organization G2 iff there is some authority possessed by G2 that is not possessed by G1 and G1's jurisdiction falls within the relevant jurisdiction of G2.</obo:IAO_0000115>
<rdfs:comment>
'is subordinate authority of'
Domain: governing organization
Range: governing organization
Formal properties: transitive, anti-symmetric, irreflexive
Natural language definition: A governing organization G1 is subordinate to another governing organization G2 iff there is some authority possessed by G2 that is not possessed by G1 and G1 falls within the relevant jurisdiction of G2.</rdfs:comment>
<rdfs:label xml:lang="en">is subordinate authority of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/GEO_000000336 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000000336">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/GEO_000000400"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/GEO_000000375"/>
<rdfs:comment xml:lang="en">It is not intended to be maximal, in the sense that if a has_jurisdiction_in b, and b is not part of c, then a NOT has_jurisdiction_in c.
in other words, it is perfectly fine to say:
a disjoint b
c has_jurisdiction_in a
c has_jurisdiction_in b
otherwise, we'd end up creating some mereological sum of all the islands, contiguous land masses, etc. of the United States, calling it "United States territory", asserting United States has_jurisdiction_in United States territory, then figuring out all the parts of that territory like islands, etc. We'd end up doing the same thing for every sovereign state, major administrative subdivision (at least those like Hawaii that are multiple), etc. Seems like an unnecessary duplication of entities.</rdfs:comment>
<rdfs:comment xml:lang="en">a governmental organization has jurisdiction in particular territories (areas of land), which means that it can make and enforce laws that govern peoples living in those territories.</rdfs:comment>
<rdfs:comment xml:lang="en">if a has_jurisdiction_in b, then a has_jurisdiction_in all parts of b.</rdfs:comment>
<rdfs:label xml:lang="en">has jurisdiction in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000039 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000039">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<obo:IAO_0000111 xml:lang="en">has measurement unit label</obo:IAO_0000111>
<obo:IAO_0000115>A relation between a value specification and its unit of measurement.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000112 xml:lang="en">This document is about information artifacts and their representations</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">is_about is a (currently) primitive relation that relates an information artifact to an entity.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of "mentions" relation. Weaken the is_about relationship to be primitive.
We will try to build it back up by elaborating the various subproperties that are more precisely defined.
Some currently missing phenomena that should be considered "about" are predications - "The only person who knows the answer is sitting beside me" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.</obo:IAO_0000116>
<obo:IAO_0000117 xml:lang="en">person:Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Smith, Ceusters, Ruttenberg, 2000 years of philosophy</obo:IAO_0000119>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/iao.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">is about</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000293 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000293">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<obo:IAO_0000111 xml:lang="en">has_specified_input</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">see is_input_of example_of_usage</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">A relation between a planned process and a continuant participating in that process that is not created during the process. The presence of the continuant during the process is explicitly specified in the plan specification which the process realizes the concretization of.</obo:IAO_0000115>
<obo:IAO_0000116 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works.</obo:IAO_0000116>
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Larry Hunter</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melanie Coutot</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">has_specified_input</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000295 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000295">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000056"/>
<obo:IAO_0000111 xml:lang="en">is_specified_input_of</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">some Autologous EBV(Epstein-Barr virus)-transformed B-LCL (B lymphocyte cell line) is_input_for instance of Chromum Release Assay described at https://wiki.cbil.upenn.edu/obiwiki/index.php/Chromium_Release_assay</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">A relation between a planned process and a continuant participating in that process that is not created during the process. The presence of the continuant during the process is explicitly specified in the plan specification which the process realizes the concretization of.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">is_specified_input_of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000299 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000299">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<obo:IAO_0000111 xml:lang="en">has_specified_output</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">PERSON: Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Larry Hunter</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Melanie Courtot</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">has_specified_output</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000312 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000312">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000056"/>
<obo:IAO_0000111 xml:lang="en">is_specified_output_of</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Bjoern Peters</obo:IAO_0000117>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">is_specified_output_of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0001938 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001938">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111>has value specification</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115>A relation between an information content entity and a value specification that specifies its value.</obo:IAO_0000115>
<obo:IAO_0000117>PERSON: James A. Overton</obo:IAO_0000117>
<obo:IAO_0000119>OBI</obo:IAO_0000119>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label>has value specification</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">participates in</obo:IAO_0000111>
<obo:IAO_0000118 xml:lang="en">participates_in</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">participates in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<obo:IAO_0000111 xml:lang="en">has participant</obo:IAO_0000111>
<obo:IAO_0000118 xml:lang="en">has_participant</obo:IAO_0000118>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">has participant</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000004 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000004">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/IAO_0000032"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<obo:IAO_0000115>A relation between a scalar measurement data item and a number that quantifies it.</obo:IAO_0000115>
<obo:IAO_0000116>The range should probably not be restricted to "float". It makes sense to set it to "real". However we do not know how this change will affect SPARQL queries, so we have left the range as-is for now.</obo:IAO_0000116>
<obo:IAO_0000412 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/obi.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">has measurement value</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000004"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000027"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
<!-- http://purl.obolibrary.org/obo/GEO_000000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000001">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000115 xml:lang="en">An organization that governs the people living in a particular geographical region or aggregate of geographical regions. The geographical region it governs can change over time (such as the westward expansion of the United States and the addition of Hawaii)</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">William R. Hogan</obo:IAO_0000117>
<rdfs:comment xml:lang="en">In some cases, geopolitical entities possess uninhabited geographical regions. However, it is that case that it controls the movement of people in and out of those regions, and its laws apply to those regions.</rdfs:comment>
<rdfs:label xml:lang="en">geopolitical entity</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000002">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000075"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GEO_000000391"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GEO_000000400"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<obo:IAO_0000111 xml:lang="en">obsolete aggregate of governmental organizations</obo:IAO_0000111>
<obo:IAO_0000115 xml:lang="en">An aggregate of geopoliticial entities. Examples include the group of states of the United States, the nations of North America, and so on.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">William R. Hogan</obo:IAO_0000117>
<rdfs:comment xml:lang="en">taken over by GEO_0000000401</rdfs:comment>
<rdfs:label xml:lang="en">obsolete group of governmental organizations</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000003">
<rdfs:subClassOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"/>
<obo:IAO_0000115 xml:lang="en">A geopolitical entity that is self contained and recognizes no higher political authority than itself.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">William R. Hogan</obo:IAO_0000117>
<rdfs:label xml:lang="en">nation</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000004">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GEO_000000400"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/GEO_000000329"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GEO_000000396"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000400"/>
<obo:IAO_0000115 xml:lang="en">a governmental organization that has a local, regional, or territorial government that recognizes a sovereign state as its higher political authority</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">William R. Hogan</obo:IAO_0000117>
<rdfs:label xml:lang="en">subnational entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000004"/>
<obo:IAO_0000115 xml:lang="en">A subnational entity that is the primary organizational member of a nation, is subject to the full set of laws of the nation, enjoys all the privileges established under the laws of the nation, is not a member of any other geopolitical entity, and itself governs a part of the geographical region governed by the nation.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">William R. Hogan</obo:IAO_0000117>
<rdfs:comment xml:lang="en">examples: Northern Ireland, Florida</rdfs:comment>
<rdfs:label xml:lang="en">major administrative subdivision</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000004"/>
<obo:IAO_0000115 xml:lang="en">A subnational entity that does not possess full political independence or sovereignty as a sovereign state, but remains politically outside of the controlling state and controls a geographical region that is outside the controlling state's integral region.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">William R. Hogan</obo:IAO_0000117>
<rdfs:comment xml:lang="en">Typically, the common feature is that the dependency does not conduct foreign affairs, and relegates this authority to the sovereign state. But otherwise, it is largely or completely autonomous relative to the administrative subdivisions. Examples include Puerto Rico (U.S.), Guam (U.S.), Greenland (Denmark), French Polynesia (France), and Falkland Islands (United Kingdom). </rdfs:comment>
<rdfs:label xml:lang="en">geopolitical dependency</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000007">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:complementOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000005"/>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000075"/>
<owl:allValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GEO_000000005"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000075"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">2</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/GEO_000000005"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000337"/>
<obo:IAO_0000115 xml:lang="en">An aggregate of governmental organizations that is not itself a major administrative subdivision and whose members are only major administrative subdivisions that have some feature in common.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<rdfs:comment xml:lang="en">Examples: all the major administrative subdivisions of the United States (which is different from the U.S. itself), all the major administrative subdivisions with a bicameral legislature, all the major administrative subdivisions with a judiciary, etc.</rdfs:comment>
<rdfs:label xml:lang="en">aggregate of major administrative subdivisions</rdfs:label>
<rdfs:label xml:lang="en">group of major administrative subdivisions</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000008">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:complementOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000006"/>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000075"/>
<owl:allValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GEO_000000006"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000075"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">2</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/GEO_000000006"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000337"/>
<obo:IAO_0000115 xml:lang="en">An aggregate of governmental organizations that is not itself a geopolitical dependency and whose members are only geopolitical dependencies that have some feature in common.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<rdfs:comment xml:lang="en">Examples: all the dependencies of the United States, all of the dependencies whose territory is located in the Carribean Sea, French Overseas Collectivities, Biritish Crown Dependencies.</rdfs:comment>
<rdfs:label xml:lang="en">aggregate of dependencies</rdfs:label>
<rdfs:label xml:lang="en">group of dependencies</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000334 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000000334">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000375"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000137"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GEO_000000374"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en">subcontinental land mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000000335 -->