-
Notifications
You must be signed in to change notification settings - Fork 1
/
GeoImageOntology.owl
2228 lines (2223 loc) · 137 KB
/
GeoImageOntology.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"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.inf.ufrgs.br/bdi/ontologies/GeoImageOntology"
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:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="http://www.inf.ufrgs.br/bdi/ontologies/GeoImageOntology">
<Prefix name="" IRI="http://www.inf.ufrgs.br/bdi/ontologies/GeoImageOntology"/>
<Prefix name="dc" IRI="http://purl.org/dc/elements/1.1/"/>
<Prefix name="obo" IRI="http://purl.obolibrary.org/obo/"/>
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="foaf" IRI="http://xmlns.com/foaf/0.1/"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Prefix name="terms" IRI="http://purl.org/dc/terms/"/>
<Prefix name="protege" IRI="http://protege.stanford.edu/plugins/owl/protege#"/>
<Prefix name="oboInOwl" IRI="http://www.geneontology.org/formats/oboInOwl#"/>
<Import>http://purl.obolibrary.org/obo/iao/dev/iao-edit.owl</Import>
<Import>http://purl.obolibrary.org/obo/bfo/2.0/bfo.owl</Import>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:contributor"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Cassiana Michelin</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:contributor"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Bruno Firnkes</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:contributor"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Eduardo S. L. Gastal</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:contributor"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Luan Fonseca Garcia</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:contributor"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Mara Abel</Literal>
</Annotation>
<Declaration>
<Class IRI="#UFRGS:GeoImage_seismic_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_geophysical_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_caliper_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_lithostratigraphic_chart"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_sem_image"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_topographic_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_proportional_symbol_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_seismic_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_gravimetric_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_well_core_photograph"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_dot_distribution_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_stereogram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_satellite_image"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_bathymetric_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_compositional_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_outcrop_photograph"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_spontaneous_potential_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_geothermal_gradient_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_ternary_diagram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_topographic_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_chronostratigraphic_chart"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_amplitute_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_lithologic_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_compositional_diagram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_3d_block_diagram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_lithological_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_geological_chart"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_contour_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_geological_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_neutron_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_structural_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_point_location_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_lithostratigraphic_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_bouguer_anomaly_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_resistivity_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_cartogram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_stratigraphic_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_sketch"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_stratigraphic_cross_section"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_lithofacies_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_sonic_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_hand_sample_image"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_rose_diagram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_diffractogram"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_imaging_log"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_density_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_flow_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_facies_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_reference_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_geological_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_qualitative_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_Photomicrograph"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_aerial_photography"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_dasymetric_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_altimetric_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_choropleth_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_isopach_map"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_gamma_ray_profile"/>
</Declaration>
<Declaration>
<Class IRI="#UFRGS:GeoImage_quantitative_profile"/>
</Declaration>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_3d_block_diagram"/>
<Class abbreviatedIRI="obo:IAO_0000309"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_Photomicrograph"/>
<Class abbreviatedIRI="obo:IAO_0000185"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_aerial_photography"/>
<Class abbreviatedIRI="obo:IAO_0000185"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_altimetric_map"/>
<Class IRI="#UFRGS:GeoImage_topographic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_amplitute_map"/>
<Class IRI="#UFRGS:GeoImage_contour_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_bathymetric_map"/>
<Class IRI="#UFRGS:GeoImage_topographic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_bouguer_anomaly_map"/>
<Class IRI="#UFRGS:GeoImage_choropleth_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_caliper_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_cartogram"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_choropleth_map"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_chronostratigraphic_chart"/>
<Class IRI="#UFRGS:GeoImage_geological_chart"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_compositional_diagram"/>
<Class abbreviatedIRI="obo:IAO_0000309"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_compositional_map"/>
<Class IRI="#UFRGS:GeoImage_choropleth_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_contour_map"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
<Class abbreviatedIRI="obo:IAO_0000309"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_dasymetric_map"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_density_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_diffractogram"/>
<Class abbreviatedIRI="obo:IAO_0000038"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_dot_distribution_map"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_facies_map"/>
<Class IRI="#UFRGS:GeoImage_dasymetric_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_flow_map"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_gamma_ray_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_geological_chart"/>
<Class abbreviatedIRI="obo:IAO_0000309"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_geological_cross_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_geological_map"/>
<Class IRI="#UFRGS:GeoImage_choropleth_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_geophysical_cross_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_geothermal_gradient_map"/>
<Class IRI="#UFRGS:GeoImage_contour_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_gravimetric_cross_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_hand_sample_image"/>
<Class abbreviatedIRI="obo:IAO_0000185"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_imaging_log"/>
<Class abbreviatedIRI="obo:IAO_0000101"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_isopach_map"/>
<Class IRI="#UFRGS:GeoImage_contour_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_lithofacies_map"/>
<Class IRI="#UFRGS:GeoImage_choropleth_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_lithologic_profile"/>
<Class IRI="#UFRGS:GeoImage_qualitative_profile"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_lithological_cross_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_lithostratigraphic_chart"/>
<Class IRI="#UFRGS:GeoImage_geological_chart"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_lithostratigraphic_cross_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_map"/>
<Class abbreviatedIRI="obo:IAO_0000309"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_neutron_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_outcrop_photograph"/>
<Class abbreviatedIRI="obo:IAO_0000185"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_point_location_map"/>
<Class IRI="#UFRGS:GeoImage_dot_distribution_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_profile"/>
<Class abbreviatedIRI="obo:IAO_0000038"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_proportional_symbol_map"/>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_qualitative_profile"/>
<Class IRI="#UFRGS:GeoImage_profile"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_quantitative_profile"/>
<Class IRI="#UFRGS:GeoImage_profile"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_reference_map"/>
<Class IRI="#UFRGS:GeoImage_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_resistivity_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_rose_diagram"/>
<Class abbreviatedIRI="obo:IAO_0000179"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_satellite_image"/>
<Class abbreviatedIRI="obo:IAO_0000101"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_seismic_profile"/>
<Class IRI="#UFRGS:GeoImage_qualitative_profile"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_seismic_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_sem_image"/>
<Class abbreviatedIRI="obo:IAO_0000101"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_sketch"/>
<Class abbreviatedIRI="obo:IAO_0000309"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_sonic_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_spontaneous_potential_profile"/>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_stereogram"/>
<Class abbreviatedIRI="obo:IAO_0000038"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_stratigraphic_cross_section"/>
<Class IRI="#UFRGS:GeoImage_cross_section"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_stratigraphic_profile"/>
<Class IRI="#UFRGS:GeoImage_qualitative_profile"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_structural_map"/>
<Class IRI="#UFRGS:GeoImage_dasymetric_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_ternary_diagram"/>
<Class abbreviatedIRI="obo:IAO_0000038"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_thematic_map"/>
<Class IRI="#UFRGS:GeoImage_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_topographic_map"/>
<Class IRI="#UFRGS:GeoImage_contour_map"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_topographic_profile"/>
<Class IRI="#UFRGS:GeoImage_quantitative_profile"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_well_core_photograph"/>
<Class abbreviatedIRI="obo:IAO_0000185"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#UFRGS:GeoImage_wireline_well_log"/>
<Class IRI="#UFRGS:GeoImage_quantitative_profile"/>
</SubClassOf>
<DisjointClasses>
<Class IRI="#UFRGS:GeoImage_Photomicrograph"/>
<Class IRI="#UFRGS:GeoImage_satellite_image"/>
</DisjointClasses>
<DisjointClasses>
<Annotation>
<AnnotationProperty abbreviatedIRI="rdf:type"/>
<AbbreviatedIRI>owl:AllDisjointClasses</AbbreviatedIRI>
</Annotation>
<Class IRI="#UFRGS:GeoImage_Photomicrograph"/>
<Class IRI="#UFRGS:GeoImage_satellite_image"/>
<Class IRI="#UFRGS:GeoImage_sem_image"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#UFRGS:GeoImage_altimetric_map"/>
<Class IRI="#UFRGS:GeoImage_bathymetric_map"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#UFRGS:GeoImage_outcrop_photograph"/>
<Class IRI="#UFRGS:GeoImage_well_core_photograph"/>
</DisjointClasses>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000037</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um gráfico de pontos é uma representação gráfica onde cada observação é representada por um único ponto posicionado em coordenadas definidas por valores da observação em certas dimensões.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000037</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">gráfico de pontos</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000038</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um diagrama que apresenta uma ou mais tuplas de informação através do mapeamento de tais tuplas em um espaço bidimensional de maneira arbitrária.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000038</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">gráfico</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000057</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">gráfico de contornos</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000079</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um gráfico de densidades é uma representação gráfica onde a cor de cada pixel é definida em função do número de observações (data points) próximas à posição do pixel.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000079</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">gráfico de densidades</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000101</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">imagem</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000179</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um histograma é a representação gráfica em colunas ou em barras (retângulos) de um conjunto de dados previamente tabulado e dividido em classes uniformes ou não uniformes.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<AbbreviatedIRI>obo:IAO_0000179</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">WEB: https://pt.wikipedia.org/wiki/Histograma</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000179</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">histograma</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000180</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um heatmap é uma representação gráfica onde os valores de um certo campo escalar são mapeados para cores em uma figura bidimensional.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000180</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">heatmap</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000181</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um diagrama de Venn mostra todas possíveis relações lógicas entre uma coleção finita de conjuntos.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000181</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">diagrama de Venn</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000183</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um dendrograma é um diagrama gráfico no formato de árvore frequentemente utilizado para ilustrar a organização de grupos (clusters) produzidos por um algoritmo de agrupamento (clustering).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000183</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">dendrograma</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000184</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um gráfico de dispersão (scatter plot) utiliza coordenadas Cartesianas para exibir valores de um conjunto de dados. Os dados são exibidos como uma coleção de pontos, cada um com o valor de uma variável determinando a posição no eixo horizontal e o valor da outra variável determinando a posição no eixo vertical (em caso de duas variáveis).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<AbbreviatedIRI>obo:IAO_0000184</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">WEB: https://pt.wikipedia.org/wiki/Gr%C3%A1fico_de_dispers%C3%A3o</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000184</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">gráfico de dispersão</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000185</AbbreviatedIRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">image obtained throught the techique of light capture using an image sensor or a light sensitive material
This category excludes infrared, ultrason, electronic scan and other kinds of wave capture. </Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000185</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">imagem obtida através da captura de luz usando um sensor de imagem ou um material sensivel a luz, como um filme. Esta categoria EXCLUI infravermelho. ultrason, varredura de elétrons e captura de outras ondas, exceto luz. </Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<AbbreviatedIRI>obo:IAO_0000185</AbbreviatedIRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">https://en.wikipedia.org/wiki/Photography</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000185</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">fotografia</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000309</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Uma figura que expressa uma ou mais proposições.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000309</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">diagrama</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<AbbreviatedIRI>obo:IAO_0000573</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um gráfico de linha é um gráfico criado através da conexão de vários pontos utilizando segmentos de linhas.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<AbbreviatedIRI>obo:IAO_0000573</AbbreviatedIRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">gráfico de linha</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A representation of an imaginary rectangular block of the earth's crust (representing geological and topographic features) in what appears to be a three-dimensional perspective, showing a surface area at the top and including one or more (usually two) vertical cross sections.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Uma representação de um bloco retangular imaginário da crosta terrestre (representando características geológicas e topográficas) no que parece ser uma perspectiva tridimensional, mostrando uma área de superfície no topo e incluindo uma ou mais (geralmente duas) seções transversais verticais.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000118"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">geological model</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000118"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">modelo geológico</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Glossary of Geology. Klaus K.E Neundorf, James P. Mehl Jr., Julia A. Jackson</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">3d block diagram</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_3d_block_diagram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">bloco diagrama</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_Photomicrograph</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A photograph taken through a microscope or similar device to show a magnified image of an object.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_Photomicrograph</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Uma fotografia obtida através de um microscópio ou dispositivo similar para mostrar uma visão aumentada de um objeto.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_Photomicrograph</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">https://en.wikipedia.org/wiki/Micrograph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_Photomicrograph</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">fotomicrografia</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_Photomicrograph</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">photomicrograph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_aerial_photography</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">fotografia a partir de uma aeronave ou outro objeto voador.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_aerial_photography</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">photograph from an aircraft or other flying object.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_aerial_photography</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">https://en.wikipedia.org/wiki/Aerial_photography</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_aerial_photography</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">aerial photography</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_aerial_photography</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">fotografia aérea</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_altimetric_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">a contour map with heights indicated by outlines (isobaths) drawn at regular intervals.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_altimetric_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">um mapa de contorno com alturas indicadas por contornos(isóbatas) traçados em intervalos regulares.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_altimetric_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">altimetric map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_altimetric_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa altimétrico</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_amplitute_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A display of amplitude measurements on a slice on the horizon.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_amplitute_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Uma exibição de medições de amplitude em uma fatia no horizonte.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_amplitute_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Glossary of Geology. Klaus K.E Neundorf, James P. Mehl Jr., Julia A. Jackson</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_amplitute_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">amplitude map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_amplitute_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa de amplitude</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_bathymetric_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A contour map of the bottom of a body of water (such as the seabed) with depths indicated by outlines (isobaths) drawn at regular intervals.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_bathymetric_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">um mapa de contorno do fundo de um corpo de água (como o fundo do mar) com profundidades indicadas por contornos(isóbatas) traçados em intervalos regulares.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_bathymetric_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Glossary of Geology, Klaus K. E. Neuendorf, James P. Mehl Jr. and Julia A. Jackson</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_bathymetric_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">bathymetric map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_bathymetric_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa batimétrico</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_bouguer_anomaly_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Map that shows a measure of gravity that is correct for topography (elevation) and latitude, but not for isostasis (subsurface rock density).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_bouguer_anomaly_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Mapa que mostra uma medida de gravidade que é correta para a topografia(elevação) e latitude, mas não para a isostasia (densidade de rochas subsuperficiais).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_bouguer_anomaly_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Dictionary of Petroleum Exploration, Drilling, & Production, Norman J. Hyne</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_bouguer_anomaly_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">bourguer anomaly map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_bouguer_anomaly_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa de anomalia bouguer</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_caliper_profile</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">O registro produzido por um paquímetro carregado por mola que se ajusta continuamente ao tamanho de um poço quando ele é puxado para a superfície. O perfil é uma medida direta do diâmetro do poço em função da profundidade.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_caliper_profile</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">The record produced by a spring-loaded caliper that continually adjusts itself to the size of a borehole as it is pulled to the surface. The log is a direct measure of the diameter of the borehole as a function of depth.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_caliper_profile</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Dictionary of Earth Sciences, Michael Allaby</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_caliper_profile</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">caliper profile</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_caliper_profile</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">perfil caliper</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_cartogram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A map that purposely distorts geographic space based on values of a theme.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_cartogram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um mapa que distorce propositalmente o espaço geográfico com base nos valores de um tema.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_cartogram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">https://en.wikipedia.org/wiki/Thematic_map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_cartogram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">cartogram</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_cartogram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">cartograma</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_choropleth_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A thematic map in which areas are shaded or patterned in proportion to the measurement of the statistical variable being displayed on the map.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_choropleth_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um mapa temático no qual as áreas são sombreadas ou padronizadas na proporção da medida da variável estatística exibida no mapa.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_choropleth_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">https://en.wikipedia.org/wiki/Choropleth_map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_choropleth_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">choropleth map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_choropleth_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa coroplético</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_chronostratigraphic_chart</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Exposição gráfica, com tempo geológico ao longo do eixo vertical e distância referente a uma seção de referência no eixo horizontal, para demonstrar idades relativas e extensão geográfica de estratos ou unidades estratigráficas de uma determinada área.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_chronostratigraphic_chart</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Graphical display with geological time along the vertical axis and distance from a reference section on the horizontal axis to demonstrate relative ages and geographic extent of strata or stratigraphic units within a given area.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_chronostratigraphic_chart</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">http://dicionariodopetroleo.com.br/</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_chronostratigraphic_chart</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">carta cronoestratigráfica</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_chronostratigraphic_chart</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">chronostratigraphic chart</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_compositional_diagram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">diagram representing the spatial distribution of mineral composition in a rock sample.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_compositional_diagram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">diagrama que representa a distribuição espacial da composição mineral em uma amostra de rocha.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000118"/>
<IRI>#UFRGS:GeoImage_compositional_diagram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa composicional de amostra</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_compositional_diagram</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">compositional diagram</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_compositional_diagram</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">diagrama composicional</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_compositional_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">a map that represents the geographical distribution of mineral compositions.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_compositional_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa que representa a distribuição geográfica de composições minerais.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_compositional_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">compositional map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_compositional_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">mapa composicional</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_contour_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A map that depicts continuous phenomena. Each line-bounded area on this type of map represents a region with the same value.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000115"/>
<IRI>#UFRGS:GeoImage_contour_map</IRI>
<Literal xml:lang="pt" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Um mapa que descreve fenômenos contínuos. Cada área delimitada por linhas neste tipo de mapa representa uma região com o mesmo valor.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="obo:IAO_0000119"/>
<IRI>#UFRGS:GeoImage_contour_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">https://en.wikipedia.org/wiki/Thematic_map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_contour_map</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">contour map</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>#UFRGS:GeoImage_contour_map</IRI>