-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMineInspectionOntology.owl
954 lines (529 loc) · 59.2 KB
/
MineInspectionOntology.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
Prefix: : <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyJuly16>
Prefix: dc: <http://purl.org/dc/elements/1.1/>
Prefix: owl: <http://www.w3.org/2002/07/owl#>
Prefix: rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Prefix: rdfs: <http://www.w3.org/2000/01/rdf-schema#>
Prefix: untitled-ontology-106: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/untitled-ontology-106#>
Prefix: xml: <http://www.w3.org/XML/1998/namespace>
Prefix: xsd: <http://www.w3.org/2001/XMLSchema#>
Ontology: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester>
AnnotationProperty: rdfs:comment
Datatype: rdf:PlainLiteral
Datatype: rdf:XMLLiteral
Datatype: rdfs:Literal
Datatype: xsd:Name
Datatype: xsd:dateTime
Datatype: xsd:integer
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#check>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionMine>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasAccident>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasInspection>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasKMInspection>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KMInspection>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasKnowledgeProcessesInspection>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasKnowledgeTechnologyInspection>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMineSubSite>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningProject>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ProjectMining>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningProperty>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PropiertyMining>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningStage>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningTypes>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningTypes>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasResultsInspection>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSite>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#isAccessibleThrough>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InternetOfRoboticThings>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#meetsRegulatory>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#mustCumply>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningTypes>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#occurs>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Accident>
Range:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#performInspectionTo>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#visitMineSite>
ObjectProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#visitMineSubSite>
DataProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ActNumber>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Range:
xsd:integer
DataProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DateCreation>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
xsd:dateTime
SubPropertyOf:
owl:topDataProperty
DataProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#FinalDate>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Range:
xsd:dateTime
DataProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Identifier>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
Range:
xsd:Name
DataProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InitDate>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Range:
xsd:dateTime
SubPropertyOf:
owl:topDataProperty
DataProperty: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Name>
Domain:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Range:
rdfs:Literal
DataProperty: owl:topDataProperty
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Abandoned>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Accident>
Annotations:
rdfs:comment "Is unplanned event that can result in injury or ill health of people, and/or damage to or loss of property, plants, materials, machinery, processes or the environment, and business opportunity . An accident is an unforeseen and unplanned event or circumstance, often with lack of intention or necessity. It usually implies a generally negative outcome which might have been avoided or prevented. For the accident classification we use the ISO 19434:2017 standard, a classification of mine accidents established according to origin or causes, type of accident and its results or consequences on people."
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Active>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningStage> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Exploitation>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#OperationalStatus>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#mustCumply> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#EnvironmentalRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#mustCumply> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LegalsRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#mustCumply> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SafetyandHygieneRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#mustCumply> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SocialSecurityRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#mustCumply> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TechnicalRegulatory>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#BusinessModelInspection>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KMInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Causes>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Accident>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Closure>
Annotations:
rdfs:comment "The closure plan must be approved by a variety of mining stakeholders, including government and community members. Considerations when planning for closure include: protecting public health and safety, addressing environmental damage, returning the land to its original state or an acceptable new use, and sustaining social and economic benefits brought by the mine. The succeeding custodian, the party responsible for the land after the mine closes, should establish an agreement with the mining company early in the life cycle of the mine, to develop a closure plan that minimizes risks and liabilities."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Consequences>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Accident>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#CorrectiveMeasures>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>
Annotations:
rdfs:comment "Infrastructure as a service (IaaS) is a form of cloud computing that provides virtualized computing resources over the internet.",
rdfs:comment "Infrastructure as a service (IaaS) is a form of cloud computing that provides virtualized computing resources over the internet. Is the basic layer in cloud computing model."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceInspection>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KMInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DecisionMakingSupport>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KMInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Development>
Annotations:
rdfs:comment "The development stage usually takes 4-12 years to open an ore deposit for production, and may cost anywhere from $1 million to over $1 billion to complete depending on the type of mine. Development involves extensive pre-development planning and paperwork. Budget and financial reports are prepared and permits are requested. Reports regarding potential impacts on the environment and nearby communities are generated. Plans are assessed regarding the: 1) the mining process/technology that will be used, 2) building of access roads for transportation, 3) identification of resources such as power and water sources, and 4) construction of ore processing facilities and disposal areas for waste. At this point, tens of millions to hundreds of millions of dollars may have been invested in the project, but it may fail to open if the pre-development requirements are not met, including acceptance by the community. At this stage, just enough development of the mine site is performed to ensure that it will be able to be productive for the life of the mine, without later interruption.
Plans are made for the appropriate type of mining that will be performed. There are three major types of mining, surface mining, underground mining, and solution mining; their use depends on the type of ore and where it is located, as well as issues of safety, technology, economics, and environmental impacts."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DocumentaryEvaluation>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#EnvironmentalRegulatory>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Evidences>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Exploitation>
Annotations:
rdfs:comment "Exploitation or Extraction.
In the extraction stage the mineral is removed from the earth in large quantities as the mine begins producing. This stage is typically what we envision when we think of mining. Some exploration and development may continue at this stage, as well. The extraction stage can take from 5-30 years to complete, although many mines have been open for more than 100 years, and may cost anywhere from a few million dollars to hundreds of millions of dollars a year depending on the size of the mine and its location."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Exploration>
Annotations:
rdfs:comment "In mining exploration, experts use additional techniques to determine the possible size and value of the mineral deposit discovered during prospecting. Depending on the ownership of the land, a Mineral Rights Lease, a contractual arrangement that allows the holder to explore/exploit an area that contains minerals, may be required. Samples that are collected by drilling undergo various analyses by geologists and metallurgists to determine the richness and extent of the mineral, both vertically and horizontally. Such analyses of geological confidence and technical and economic evaluation allow experts to label the deposit as a “mineral resource” and/or an “ore reserve,” to better establish the economic value of the deposit and to estimate mining costs."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#FinalClosure>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Finding>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InSituMining>
Annotations:
rdfs:comment "In-situ mining, primarily used in uranium mining, involves dissolving the existing mineral resource and then processing it on the surface without moving rock from the ground."
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Inactive>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InclusionofOtherDataSources>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
SubClassOf:
owl:Thing
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionMine>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InternetOfRoboticThings>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Irregular>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KMInspection>
Annotations:
rdfs:comment "Knowledge Management Inspection, describes the elements that make up the general ontology such as: the business model, the governance model and the elements that support decision-making.
The mining inspection has knowledge management through the transformation of the knowledge acquired during the inspections and the experience of those who carry it out. That is why this process is described from the knowledge management, which allows describing the elements that make up the knowledge within the mining inspection processes and the relationships between them for the creation of the ontology."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
Annotations:
rdfs:comment "The knowledge process inspections describes the elements that make up the domain ontology: Mine Inspection, Mining Project, Mining Stage and Mining Property. These elements are described in detail in the next section."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>
Annotations:
rdfs:comment "Describe the elements that make up the task ontology. These elements are Software as a Service, Infrastructure as a Service, Data as a Service and Platform as a Service. This technological model was taking from Abdulla et al., 2011. The technological elements that support the knowledge layer include: knowledge bases (as organizational memory and semantic repository), information systems (like learning management systems, knowledge management content, knowledge-based systems, decision support systems, data mining, etc.). The information retrieval system, document management and workflow management support organizational memory."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionKnowledgeModel>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LackofEvidence>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LargeScaleMining>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningTypes>
DisjointWith:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SmallScaleMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LegalsRegulatory>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MediumScaleMining>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningTypes>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Annotations:
rdfs:comment "The sites for exploitation of ore and production for mineral raw materials, and is a discrete production system targeted for the development of resources. A mine site is defined as a mining concession recognized by a government through an appropriate license (permit) type. A mine site will often have several subsites where mining takes place and which are differentiated for traceability."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>
Annotations:
rdfs:comment "There are four main mining methods: underground, open surface (pit), placer, and in-situ mining."
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InSituMining>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PlacerMining>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SurfaceMining>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#UndergroundMining>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningMethods> only
(<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InSituMining> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PlacerMining> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SurfaceMining> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#UndergroundMining>)
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningTypes>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningTypes> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LargeScaleMining>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningTypes> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SmallScaleMining>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMiningTypes> only
(<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LargeScaleMining> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SmallScaleMining>)
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#NoOperationalStatus>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> only <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Abandoned>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> only <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#FinalClosure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> only <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Irregular>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> only <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PartialClosure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> only <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TemporaryClosure>
DisjointWith:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#OperationalStatus>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#OperationalStatus>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Irregular>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbySanction>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> min 1 <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Active>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> min 1 <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Inactive>
DisjointWith:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#NoOperationalStatus>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbyProvisionalMeasure>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbySanction>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PartialClosure>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Penalties>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PlacerMining>
Annotations:
rdfs:comment "Placer mining is used in river channels, beach sands, or other environments to sift valuable metals from sediments."
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ProjectMining>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PropiertyMining>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Prospecting>
Annotations:
rdfs:comment "Prospecting is the first stage of the geological analysis of a territory. It is the search for minerals, fossils, precious metals or mineral specimens, and is also known as fossicking.
Prospecting is the process of searching the region for mineral deposits.
Modern prospecting uses a variety of geological methods. Geology experts use a direct method to discover surface mineral deposits by examining the area visually. Geophysics experts use an indirect method to identify underground mineral deposits by detecting rock alterations under the surface. Geochemistry can also be used to analyze samples of soil, rock, and water."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Reclamation>
Annotations:
rdfs:comment "The mining organization begins planning for mine closure and reclamation early on; even before a mine is allowed to open, a reclamation plan must be set in place for its closure. In these reclamation plans the mining operator describes the processes it will use to attempt to restore or redevelop the land that has been mined to a more natural or economically usable state. This can include removing buildings and roads as well as covering up and re-vegetating rock piles. Federal and state regulations require mining companies to post funding for closure before the mining project begins. This is to ensure that reclamation is completed at the end of the mining closure (Arms, 2004). Once the mine has been depleted or is no longer economically feasible to continue mining, the mining operators must contact local and state agencies to close the mine, and must comply with their respective regulations.
The closure plan must be approved by a variety of mining stakeholders, including government and community members. Considerations when planning for closure include: protecting public health and safety, addressing environmental damage, returning the land to its original state or an acceptable new use, and sustaining social and economic benefits brought by the mine. The succeeding custodian, the party responsible for the land after the mine closes, should establish an agreement with the mining company early in the life cycle of the mine, to develop a closure plan that minimizes risks and liabilities.
The cost of closing a mine depends on the age, location, type, and size of mine, amount of waste, geological characteristics, and type of mineral being extracted."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#EnvironmentalRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LegalsRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SafetyandHygieneRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SocialSecurityRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TechnicalRegulatory>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasRegulatory> only
(<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#EnvironmentalRegulatory> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LegalsRegulatory> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SafetyandHygieneRegulatory> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SocialSecurityRegulatory> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TechnicalRegulatory>)
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ResultsInspection>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InspectionMine>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SafetyandHygieneRegulatory>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SmallScaleMining>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningTypes>
DisjointWith:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LargeScaleMining>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SocialSecurityRegulatory>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StageMining>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSite>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#NoOperationalStatus>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#OperationalStatus>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSite> only
(<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#NoOperationalStatus> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#OperationalStatus>)
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Abandoned>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Active>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#FinalClosure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Inactive>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Irregular>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbyProvisionalMeasure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbySanction>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PartialClosure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> some <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TemporaryClosure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasStatusMineSubSite> only
(<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Abandoned> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Active> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#FinalClosure> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Inactive> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Irregular> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbyProvisionalMeasure> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbySanction> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PartialClosure> or <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TemporaryClosure>)
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SurfaceMining>
Annotations:
rdfs:comment "Surface mining, including strip mining, open-pit mining and mountaintop removal mining, is a broad category of mining in which soil and rock overlying the mineral deposit (the overburden) are removed."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TechnicalRegulatory>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Regulatory>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TemporaryClosure>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#StatusMineSubSite>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Type>
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Accident>
Class: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#UndergroundMining>
Annotations:
rdfs:comment "Underground mining consists of digging tunnels or shafts into the earth to reach buried ore deposits. Ore, for processing, and waste rock, for disposal, are brought to the surface through the tunnels and shafts. Sub-surface mining can be classified by the type of access shafts used, and the extraction method or the technique used to reach the mineral deposit."@en
SubClassOf:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MiningMethods>
Class: owl:Thing
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#AWSElasticBeanstalk>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#AmazonWebServices>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ApacheStratos>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#CiscoMetapod>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#CiscoWebEx>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Concur>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataLake>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InternetOfRoboticThings>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataWarehouse>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InternetOfRoboticThings>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Database>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InternetOfRoboticThings>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DigitalOcean>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Dropbox>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Force.com>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#GoToMeeting>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#GoogleAppEngine>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#GoogleApps>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#GoogleComputeEngine>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Heroku>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LaEscondida>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSite>
Facts:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMineSubSite> <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LagunaSeca>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasMineSubSite> <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LosColorados>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Name> ""
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LagunaSeca>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
Facts:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasAccident> <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#RockFall>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasResultsInspection> <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TunnelClosure>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Name> ""
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Linode>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LosColorados>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MineSubSite>
Facts:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasResultsInspection> <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LosColorados>,
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Name> ""
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#MicrosoftAzure>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataAnaliticsSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#OpenShift>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceSolutions>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#RockFall>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Causes>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Salesforce>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TunnelClosure>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Consequences>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TunnelingAccident>
Types:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Accident>
Facts:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#hasResultsInspection> <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TunnelClosure>
Individual: <http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#WindowsAzure>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Abandoned>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Active>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#FinalClosure>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Inactive>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Irregular>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbyProvisionalMeasure>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#ParalyzedbySanction>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PartialClosure>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TemporaryClosure>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#BusinessModelInspection>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DataGovernanceInspection>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DecisionMakingSupport>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Causes>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Consequences>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Type>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Closure>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Development>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Exploitation>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Exploration>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Prospecting>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Reclamation>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#CorrectiveMeasures>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#DocumentaryEvaluation>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Evidences>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Finding>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InclusionofOtherDataSources>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LackofEvidence>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#Penalties>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#EnvironmentalRegulatory>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#LegalsRegulatory>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SafetyandHygieneRegulatory>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SocialSecurityRegulatory>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#TechnicalRegulatory>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#InSituMining>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#PlacerMining>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#SurfaceMining>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#UndergroundMining>
DisjointClasses:
<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KMInspection>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeProcessesInspection>,<http://www.semanticweb.org/amunoz/ontologies/2020/6/7/InspectionOntologyOWLManchester#KnowledgeTechnologyInspection>