-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbodies-of-water.owl
2313 lines (1685 loc) · 117 KB
/
bodies-of-water.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/bodies-of-water.owl/"
xml:base="http://purl.obolibrary.org/obo/geo/bodies-of-water.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/bodies-of-water.owl">
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/geo/nation-geography.owl"/>
<dc:creator>Amanda Hicks</dc:creator>
<dc:title xml:lang="en">Geographic Entities Ontology - Bodies of Water</dc:title>
<rdfs:comment xml:lang="en">This is an extension of the Geograpic Entities Ontology Nation Geography that models bodies of water. This version uses the International Hydrographic Organization's standards for Limits of Oceans and Seas 3rd Edition (1953) for names, bondaries, and topographical relations.</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GEO_000055477 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/GEO_000055477">
<rdfs:label xml:lang="en">IHC identifier</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>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>editor 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/RO_0001025 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001025"/>
<!-- http://purl.obolibrary.org/obo/RO_0002220 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002220"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym">
<rdfs:label>has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<rdf:Description rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label>database_cross_reference</rdfs:label>
</rdf:Description>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<rdf:Description rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label>has_exact_synonym</rdfs:label>
</rdf:Description>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<rdf:Description rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label>has_narrow_synonym</rdfs:label>
</rdf:Description>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBONamespace -->
<rdf:Description rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace">
<rdfs:label>has_obo_namespace</rdfs:label>
</rdf:Description>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label>has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<rdf:Description rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label>in_subset</rdfs:label>
</rdf:Description>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/RO_0002150 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002150">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/ENVO_00000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000000">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000813"/>
<obo:IAO_0000115 xml:lang="en">An astrononmical body part which delimited by physical discontinuities with its surroundings.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Geographic_feature</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>macroscopic spatial feature</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:comment>This class is being depopulated and will be filled only with inferred subclasses. Please do not use this for direct annotation, favouring instead a more descriptive subclass.</rdfs:comment>
<rdfs:label>geographic feature</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000012">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000000"/>
<obo:IAO_0000115>A geographical feature associated with water.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:131</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:280</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:711</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:761</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:824</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:825</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:826</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:827</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:828</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:829</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.OVF</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>MA:ma</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym>fluvial feature</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:label>hydrographic feature</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00001999"/>
<obo:IAO_0000115>A marine water body which is constitutes the majority of an astronomical body's hydrosphere.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:ocean</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:1019</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:943</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.OCN</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>LTER:695</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Ocean</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21102</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Ocean</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://vocab.lternet.edu/vocab/vocab/index.php?tema=695&/oceans</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym>ocean region</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset>envoMarine</oboInOwl:inSubset>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:label>ocean</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00001999"/>
<obo:IAO_0000115>A large expanse of saline water usually connected with an ocean.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>EcoLexicon:sea</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:233</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:830</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.SEA</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21103</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Sea</oboInOwl:hasDbXref>
<oboInOwl:hasNarrowSynonym>channel</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>closed sea</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>marginal sea</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>open sea</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>open sound</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>open water</oboInOwl:hasNarrowSynonym>
<oboInOwl:inSubset>envoMarine</oboInOwl:inSubset>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:label>sea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000617"/>
<obo:IAO_0000115>A body of water or other liquid of considerable size contained in a depression on a landmass.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:lake</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:221</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:704</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:909</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.LK</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.LKS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>LTER:278</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SPIRE:Lake_or_pond</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Lake</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21114</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21115</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Lake</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://vocab.lternet.edu/vocab/vocab/index.php?tema=278&/lakes</oboInOwl:hasDbXref>
<oboInOwl:hasNarrowSynonym>catch basin</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>open water</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>tarn</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasRelatedSynonym>broad</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>llyn</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>loch</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>lochan</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>lough</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>mere</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>mortlake</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>pasteuer lake</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:label>lake</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000618"/>
<obo:IAO_0000115>A flowing body of water.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:brook</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:course</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:culvert</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:gully</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:ravine</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:spillway</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:waterway</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:105</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.NRWS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.RCH</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.WTRC</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:S.SPLY</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:feature</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Getty:TGN</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21110</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21131</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21133</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21137</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21163</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21499</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Watercourse</oboInOwl:hasDbXref>
<oboInOwl:hasNarrowSynonym>culvert</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>dredged channel</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>fork</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>gulch</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>gully</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>gut</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>gutter</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>kill</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>lode</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>narrows</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>overflow channel</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>passage</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>pup</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>race</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>ravine</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>reach</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>rill</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>rivulet</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>run</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>runnel</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>seachannel</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>seaway</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>spillway</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>stream</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>tideway</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>wash</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>water gap</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasRelatedSynonym>awawa</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>barranca</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>beck</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>branch</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>brook</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>course</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>draw</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>moat</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>narrows</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>narrows (hydrographic)</oboInOwl:hasRelatedSynonym>
<rdfs:label>watercourse</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000137"/>
<obo:IAO_0000115>An area of water bordered by land on three sides.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:bay</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:190</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:232</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:235</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.BAY</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.BAYS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.BGHT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Bay</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21121</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21123</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21127</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Bay</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>ENVO</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>bahia</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>embayment</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>firth</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>inlet</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sea loch</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sea lough</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>ENVO:00000032</oboInOwl:id>
<rdfs:label>bay</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000063 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000063">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000685"/>
<obo:IAO_0000115>An accumulation of water of varying size.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasBroadSynonym>hydrographic feature</oboInOwl:hasBroadSynonym>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:waterbody</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:131</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:280</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:827</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Getty:TGN</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:BodyOfWater</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21100</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21101</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Body_of_water</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Water_body</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>aquatic feature</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>bodies of water</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>body of water</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>waterbody</oboInOwl:hasExactSynonym>
<rdfs:comment xml:lang="en">The term body of water most often refers to large accumulations of water, such as oceans, seas, and lakes, but it includes smaller pools of water such as ponds, wetlands, or more rarely, puddles. A body of water does not have to be still or contained; Rivers, streams, canals, and other geographical features where water moves from one place to another are also considered bodies of water.</rdfs:comment>
<rdfs:label>water body</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000137 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000137">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000475"/>
<obo:IAO_0000115>An opening of the sea into the land.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>FTT:463</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21128</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>ENVO</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>coastal inlet</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>ENVO:00000137</oboInOwl:id>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:label>coastal inlet</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000191 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000191">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01001784"/>
<obo:IAO_0000115 xml:lang="en">A part of an astronomical body which is primarily composed of solid material.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:landform</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:landforms</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:754</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:96</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Landform</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21400</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21401</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Landform</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym>geological feature</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>landform</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>physiographic feature</oboInOwl:hasRelatedSynonym>
<rdfs:label>solid astronomical body part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000309 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000309">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01001886"/>
<obo:IAO_0000115>A landform sunken or depressed below the surrounding area.</obo:IAO_0000115>
<obo:IAO_0000116>Clarify that this pertains to the planetary crust and create superclass for general topological depressions. https://github.com/EnvironmentOntology/envo/issues/486</obo:IAO_0000116>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasBroadSynonym xml:lang="en">depression</oboInOwl:hasBroadSynonym>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:depression</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:175</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:215</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:216</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:T.DPR</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:T.PAN</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:T.PANS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:feature</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Getty:TGN</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Depression</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21454</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21497</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21521</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Depression_%28geology%29</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym>barrier basin</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>depression</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>non tidal basin</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>pan</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>pan (geologic)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>pans</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>tidal basin</oboInOwl:hasRelatedSynonym>
<rdfs:label>depressed landform</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000394 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000394">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000395"/>
<obo:IAO_0000115>A narrow channel of water that connects two larger bodies of water, and thus lies between two land masses.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasBroadSynonym>channel</oboInOwl:hasBroadSynonym>
<oboInOwl:hasBroadSynonym>watercourse</oboInOwl:hasBroadSynonym>
<oboInOwl:hasDbXref>ADL:FTT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:strait</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:233</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:470</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.STRT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Strait</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21132</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Strait</oboInOwl:hasDbXref>
<rdfs:label>strait</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000395 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000395">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000309"/>
<obo:IAO_0000115>A depressed landform which physically confines a river, slough or ocean strait, and which consists of a bed and banks.</obo:IAO_0000115>
<obo:IAO_0000116>We need a more general channel definition, the current is only for water course channels. We need to refactor the semantics of channels, tunnels and conduits, in a similar way to uberon anatomical channels http://purl.obolibrary.org/obo/UBERON_0004111. See https://github.com/EnvironmentOntology/envo/issues/147</obo:IAO_0000116>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>EcoLexicon:channel</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>EcoLexicon:sea_channel</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:1192</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:233</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:461</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:462</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:463</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:464</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:465</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:466</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:468</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:469</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:470</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.CHN</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:U.SCNU</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:U.SCSU</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Channel</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21137</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:23451</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Channel_%28geography%29</oboInOwl:hasDbXref>
<rdfs:label>channel of a watercourse</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00000475 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00000475">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000012"/>
<obo:IAO_0000115>An opening of the sea into the land, or of a lake into its shore.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasDbXref>EcoLexicon:inlet</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:233</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FTT:463</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.GULF</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Geonames:H.INLT</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>SWEETRealm:Inlet</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TGN:21128</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>USGS:SDTS</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Inlet</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym>anse</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>arm</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>firth</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>ria</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:label>inlet</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_00001999 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_00001999">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000617"/>
<obo:IAO_0000115 xml:lang="en">A lentic water body which is composed primarily of marine water.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:hasExactSynonym>body of marine water</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>marine waterbody</oboInOwl:hasExactSynonym>
<rdfs:label>marine water body</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01000617 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01000617">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000063"/>
<obo:IAO_0000115>A lentic water body is a water body in which the accumulated water, in its totality, has very little to no directed flow.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">lentic water body</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01000618 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01000618">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000063"/>
<obo:IAO_0000115>A lotic water body is a water body in which the accumulated water, in its totality, is flowing.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">lotic water body</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01000685 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01000685">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01001476"/>
<obo:IAO_0000115>A mass of water.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<rdfs:label xml:lang="en">water mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01000813 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01000813">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000115>A material part of an astronomical body.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Also note that some astronomical body parts (ABPs) may have fiat boundaries: if there's strong debate about where an ABP begins or ends (over and above fuzzy boundaries), with different official classifications setting different thresholds or limits, axiomatise the class with fiat boundaries of the appropriate dimension.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">Note that material entities may have immaterial entities (e.g. sites) as parts.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="en">This class includes material parts of astronomical bodies. Immaterial parts, such as magnetospheres, are represented as sites under the influence of magnetic fields.Please post countercases in the ENVO tracker for revision of this hierarchy if needed.</obo:IAO_0000116>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:inSubset>envoAstro</oboInOwl:inSubset>
<oboInOwl:inSubset>envoPolar</oboInOwl:inSubset>
<rdfs:comment xml:lang="en">Material parts of astronomical bodies generally have boundaries formed by discontinuities in qualities, composition, or other physical characterisitcs. These boundaries are sometimes sharp, and sometimes diffuse, with different classification systems and communities declaring varying thresholds (e.g. for where a shoreline, forest, or other entity begins and ends). However, some boundaries are declared by fiat - that is, by arbitrary human convention or decree - particularly by regulatory or other authorities and communities of practice. The classes in this hierarchy attempt to offer generalisable definitions that allow multiple classfiication systems to map to and interoperate through. If desired, we can create classes that declare thresholds used by a given authority or community under the more generic ones, annotated with source information.</rdfs:comment>
<rdfs:label xml:lang="en">astronomical body part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01001476 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01001476">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01001477"/>
<obo:IAO_0000115 xml:lang="en">A liquid astronomical body part which is continuous and is delimited by physical discontinuities or non-liquid boundaries.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:created_by rdf:resource="https://orcid.org/0000-0002-4366-3088"/>
<rdfs:label xml:lang="en">body of liquid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01001477 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01001477">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01001479"/>
<obo:IAO_0000115 xml:lang="en">A part of an astronomical body which is primarily composed of liquid material.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:created_by rdf:resource="https://orcid.org/0000-0002-4366-3088"/>
<rdfs:label xml:lang="en">liquid astronomical body part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01001479 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01001479">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000813"/>
<obo:IAO_0000115 xml:lang="en">A part of an astronomical body which is primarily composed of fluid.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<oboInOwl:created_by rdf:resource="https://orcid.org/0000-0002-4366-3088"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-10-04T13:59:22Z</oboInOwl:creation_date>
<oboInOwl:hasDbXref rdf:resource="https://en.wikipedia.org/wiki/Fluid"/>
<rdfs:label xml:lang="en">fluid astronomical body part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01001784 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01001784">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_01000813"/>
<obo:IAO_0000115 xml:lang="en">A part of an astronomical body which is composed of a continuous medium bearing liquid, gaseous, and solid material in variable quantities.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<dc:creator rdf:resource="https://orcid.org/0000-0002-4366-3088"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-10-17T08:36:00Z</dc:date>
<oboInOwl:hasDbXref>https://en.wikipedia.org/wiki/Landform</oboInOwl:hasDbXref>
<rdfs:label xml:lang="en">compound astronomical body part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ENVO_01001886 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ENVO_01001886">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000191"/>
<obo:IAO_0000115 xml:lang="en">A solid astronomical body part which has been formed from and is composed primarily of the matter of that astronomical body.</obo:IAO_0000115>
<obo:IAO_0000412>http://purl.obolibrary.org/obo/envo/releases/2024-07-01/envo.owl</obo:IAO_0000412>
<dc:creator rdf:resource="https://orcid.org/0000-0002-4366-3088"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-05-15T09:40:37Z</dc:date>
<oboInOwl:hasDbXref rdf:resource="https://en.wikipedia.org/wiki/Landform"/>
<rdfs:comment xml:lang="en">Landforms may be natural or anthropogenic. This term has often has loose usage when referencing entities which are either subterranean or submerged below water bodies. In some cases, oceans themselves are considered landforms. Here, we have provided subclasses to resolve this ambiguity, but place oceans and other water bodies elsewhere.In later revisions, this hiearchy is likely to be reordered based on the formation processes of the entities within it.</rdfs:comment>
<rdfs:label xml:lang="en">landform</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000055554 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000055554">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000373"/>
<obo:IAO_0000115 xml:lang="en">a body of water that fills a well-marked indentation whose penetration is in such proportion to the width of its mouth as to contain land locked waters and constitute more than a mere curvature of the coast</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">http://hd.iho.int/en/index.php/bay</obo:IAO_0000119>
<obo:IAO_0100001>http://purl.obolibrary.org/obo/ENVO_00000032</obo:IAO_0100001>
<rdfs:label xml:lang="en">obsolete bay</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000055556 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000055556">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000137"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000137"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GEO_000083897"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GEO_000083898"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A coastal inlet that is a proper continuant part at all times of a sea or ocean and that fills an indentation extending into the land, usually larger than a bay</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">http://hd.iho.int/en/index.php/gulf</obo:IAO_0000119>
<rdfs:label xml:lang="en">gulf</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000055557 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000055557">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000000373"/>
<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_000000373"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000117 xml:lang="en">Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">A body of water that is the deepest part of a stream, bay or strait through which the main current flows and that is deep enough for navigation through an area otherwise not navigable</obo:IAO_0000119>
<obo:IAO_0000119 xml:lang="en">http://hd.iho.int/en/index.php/channel</obo:IAO_0000119>
<obo:IAO_0100001>http://purl.obolibrary.org/obo/ENVO_00000395</obo:IAO_0100001>
<rdfs:label xml:lang="en">obsolete channel</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000055558 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000055558">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000055557"/>
<obo:IAO_0000117>Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">hole</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">pass</obo:IAO_0000118>
<obo:IAO_0000119>A narrow navigable channel, especially one through reefs or islands</obo:IAO_0000119>
<obo:IAO_0000119>http://hd.iho.int/en/index.php/passage</obo:IAO_0000119>
<obo:IAO_0100001>http://purl.obolibrary.org/obo/ENVO_00000029</obo:IAO_0100001>
<rdfs:label xml:lang="en">obsolete passage</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GEO_000055559 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GEO_000055559">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GEO_000055558"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002150"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">2</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/GEO_000000373"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">a passage connecting two larger bodies of water</obo:IAO_0000115>
<obo:IAO_0000117>Amanda Hicks</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">http://hd.iho.int/en/index.php/strait</obo:IAO_0000119>
<obo:IAO_0100001>http://purl.obolibrary.org/obo/ENVO_00000394</obo:IAO_0100001>
<rdfs:label xml:lang="en">obsolete strait</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GEO_000000344 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GEO_000000344">
<obo:IAO_0000118 xml:lang="en">Antarctic continent</obo:IAO_0000118>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/GEO_000000346 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000000346"/>
<!-- http://purl.obolibrary.org/obo/GEO_000000347 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000000347"/>
<!-- http://purl.obolibrary.org/obo/GEO_000055466 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055466">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/GEO_000055556"/>
<obo:BFO_0000137 rdf:resource="http://purl.obolibrary.org/obo/GEO_000083915"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000550"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000704"/>
<obo:GEO_000055477>1a</obo:GEO_000055477>
<rdfs:label xml:lang="en">Gulf of Bothnia</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055467 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055467">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/GEO_000055556"/>
<obo:BFO_0000137 rdf:resource="http://purl.obolibrary.org/obo/GEO_000083915"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000683"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000699"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000704"/>
<obo:GEO_000055477>1b</obo:GEO_000055477>
<rdfs:label xml:lang="en">Gulf of Finland</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055468 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055468">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/GEO_000055556"/>
<obo:BFO_0000137 rdf:resource="http://purl.obolibrary.org/obo/GEO_000083915"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000570"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000683"/>
<rdfs:label xml:lang="en">Gulf of Riga</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055469 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055469">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/GEO_000000373"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000083915"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000550"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000677"/>
<obo:GEO_000055477>2</obo:GEO_000055477>
<rdfs:label xml:lang="en">Kattegat, Sound and Belts</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055470 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055470">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000394"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055469"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000550"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000659"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000677"/>
<rdfs:label xml:lang="en">Skagerrak</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055471 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055471">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000016"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000699"/>
<obo:GEO_000055477>8</obo:GEO_000055477>
<rdfs:label xml:lang="en">White Sea</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055472 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055472">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000016"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000083914"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000699"/>
<rdfs:label xml:lang="en">Kara Sea</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055473 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055473">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000016"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055472"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000699"/>
<obo:GEO_000055477>10</obo:GEO_000055477>
<obo:IAO_0000118 xml:lang="en">Nordenskjoeld Sea</obo:IAO_0000118>
<rdfs:label xml:lang="en">Laptev Sea</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055474 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055474">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000016"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055473"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000347"/>
<obo:GEO_000055477>11</obo:GEO_000055477>
<rdfs:label xml:lang="en">East Siberian Sea</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055475 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055475">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000016"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055474"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000347"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000699"/>
<obo:GEO_000055477>12</obo:GEO_000055477>
<obo:IAO_0000118 xml:lang="en">Chuckchi Sea</obo:IAO_0000118>
<rdfs:label xml:lang="en">Chukchi Sea</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055476 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055476">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000016"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000347"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000646"/>
<obo:GEO_000055477>13</obo:GEO_000055477>
<rdfs:label xml:lang="en">Beaufort Sea</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055478 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055478">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000032"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055560"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000646"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000677"/>
<obo:GEO_000055477>14a</obo:GEO_000055477>
<rdfs:label xml:lang="en">Baffin Bay</rdfs:label>
</owl:NamedIndividual>
<!-- http://purl.obolibrary.org/obo/GEO_000055479 -->
<owl:NamedIndividual rdf:about="http://purl.obolibrary.org/obo/GEO_000055479">
<rdf:type rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000394"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055478"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055480"/>
<obo:RO_0002150 rdf:resource="http://purl.obolibrary.org/obo/GEO_000055560"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000646"/>
<obo:RO_0002220 rdf:resource="http://purl.obolibrary.org/obo/GEO_000000677"/>
<obo:GEO_000055477>15</obo:GEO_000055477>
<rdfs:label xml:lang="en">Davis Strait</rdfs:label>