-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcifindspots_part_full.ttl
1585 lines (1410 loc) · 88.5 KB
/
cifindspots_part_full.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix geocrs: <http://www.opengis.net/ont/crs/> .
@prefix geocrsaxis: <http://www.opengis.net/ont/crs/cs/axis/> .
@prefix geocrsdatum: <http://www.opengis.net/ont/crs/datum/> .
@prefix geocrsgeod: <http://www.opengis.net/ont/crs/geod/> .
@prefix geocrsisbody: <http://www.opengis.net/ont/crs/isbody/> .
@prefix geocrsmeridian: <http://www.opengis.net/ont/crs/primeMeridian/> .
@prefix geoepsg: <http://www.opengis.net/def/crs/EPSG/0/> .
@prefix om: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov1: <http://www.w3.org/ns/prov-o/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix suni: <http://www.github.com/sparqlunicorn#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
suni:04e561e8-3672-478c-b117-6ad439c589be a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:dubious"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Tufarella Area"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q1438;http://openstreetmap.org/relation/40218> ;
suni:relatedtohow "fsl:partlyMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.7906 40.7616)"^^xsd:string ;
geo:hasGeometry suni:04e561e8-3672-478c-b117-6ad439c589be_geom .
suni:0b575106-41b3-4027-a177-a2e13293271b a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Copecchia"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 4371325110"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q3690987;http://openstreetmap.org/node/4371325110> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.7662 40.7198)"^^xsd:string ;
geo:hasGeometry suni:0b575106-41b3-4027-a177-a2e13293271b_geom .
suni:0e64abf6-5313-4a91-970f-ba4116312dac a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Pucara"^^xsd:string ;
suni:literature "Civetta et al., 1997"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://openstreetmap.org/node/716485183> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.6459 40.6783)"^^xsd:string ;
geo:hasGeometry suni:0e64abf6-5313-4a91-970f-ba4116312dac_geom .
suni:0fa57f68-19aa-4f0d-8b37-76d6bbe3e030 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Monticchio (Bagni)"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q593338> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(15.5699 40.9490)"^^xsd:string ;
geo:hasGeometry suni:0fa57f68-19aa-4f0d-8b37-76d6bbe3e030_geom .
suni:26edc892-dcc1-493e-ada7-4cd73fb4abaa a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Orlovat"^^xsd:string ;
suni:literature "Obreht, I. et al. (2017), Fig. 1;Obreht, I. et al. (2015)"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using GeoNamessGoogle Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/787391> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(20.5809 45.2417)"^^xsd:string ;
geo:hasGeometry suni:26edc892-dcc1-493e-ada7-4cd73fb4abaa_geom .
suni:284e54a0-2e15-4efa-afe3-90a5138b8d11 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Torregaveta"^^xsd:string ;
suni:literature "Pappalardo et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q47352348> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.0477 40.8111) "^^xsd:string ;
geo:hasGeometry suni:284e54a0-2e15-4efa-afe3-90a5138b8d11_geom .
suni:32618a3e-9306-4897-9122-9d6ef66c97dd a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Batajnica"^^xsd:string ;
suni:literature "Obreht, I. et al. (2017), Fig. 1;Buggle, B. et al. (2013);Buggle, B. et al. (2014)"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using GeoNamessGoogle Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/792838> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(20.2802 44.9032)"^^xsd:string ;
geo:hasGeometry suni:32618a3e-9306-4897-9122-9d6ef66c97dd_geom .
suni:35f53e25-2987-4e3f-beb6-473d691e2457 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Serino"^^xsd:string ;
suni:literature "Fedele et al., 2008;Giaccio et al., 2008;Lowe et al., 2012"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q55113> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.8706 40.8567)"^^xsd:string ;
geo:hasGeometry suni:35f53e25-2987-4e3f-beb6-473d691e2457_geom .
suni:38118ef2-f8b8-48cc-9833-b718132f80ff a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:low"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Tenaghi Philippon (Greece)"^^xsd:string ;
suni:literature "Lowe et al., 2012;Wulf et al., 2018"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://openstreetmap.org/node/299298568> ;
suni:relatedtohow "fsl:dubiousMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(24.2274 40.9794)"^^xsd:string ;
geo:hasGeometry suni:38118ef2-f8b8-48cc-9833-b718132f80ff_geom .
suni:38f989d2-ae5f-49a7-875d-3cb5025b681a a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Pozzuoli Bay"^^xsd:string ;
suni:literature "Orsi et al., 1996"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q386701;http://openstreetmap.org/relation/8222525> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Bight "^^xsd:string ;
suni:wkt "POINT(14.0890 40.8215)"^^xsd:string ;
geo:hasGeometry suni:38f989d2-ae5f-49a7-875d-3cb5025b681a_geom .
suni:3ba8194d-e14a-4daf-9400-bfca8ee283b7 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper and found on OpenStreetMap"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Crvena Stiljena (Montenegro)"^^xsd:string ;
suni:literature "Morley & Woodward, 2011"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 10879170567"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://openstreetmap.org/node/10879170567;http://wikidata.org/entity/Q121418883> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave;fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(18.4815 42.7790) "^^xsd:string ;
geo:hasGeometry suni:3ba8194d-e14a-4daf-9400-bfca8ee283b7_geom .
suni:3d7cd4a7-d402-4bd4-aae7-b4fc7b1b1196 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Cuma"^^xsd:string ;
suni:literature "Pappalardo et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 4371325110"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q243456> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.0560 40.8381) "^^xsd:string ;
geo:hasGeometry suni:3d7cd4a7-d402-4bd4-aae7-b4fc7b1b1196_geom .
suni:40efd813-2bf3-42df-8772-d03523531c55 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Sant‘ Agata dei due Golfi"^^xsd:string ;
suni:literature "Civetta et al., 1997"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 705576753"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q1860399;http://openstreetmap.org/node/705576753> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.3733 40.6070)"^^xsd:string ;
geo:hasGeometry suni:40efd813-2bf3-42df-8772-d03523531c55_geom .
suni:44ff90bf-a0cb-4171-8252-b6f91fd4e8ee a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:low"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Murge Plateau"^^xsd:string ;
suni:literature "Giaccio et al., 2008"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/3174898> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Plateau"^^xsd:string ;
suni:wkt "POINT(16.2833 41.0047)"^^xsd:string ;
geo:hasGeometry suni:44ff90bf-a0cb-4171-8252-b6f91fd4e8ee_geom .
suni:45ada15f-34cd-40e5-9b17-54d4c29f4af7 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Naples"^^xsd:string ;
suni:literature "Orsi et al., 1996"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/3172391> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.2080 40.8537)"^^xsd:string ;
geo:hasGeometry suni:45ada15f-34cd-40e5-9b17-54d4c29f4af7_geom .
suni:4858e193-fb19-467f-9688-6a70211b0f9d a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Dunaszekcső"^^xsd:string ;
suni:literature "Obreht, I. et al. (2017), Fig. 1;Újvári, G. Et al. (2016)"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using GeoNamessGoogle Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/3053454> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(18.7587 46.0874)"^^xsd:string ;
geo:hasGeometry suni:4858e193-fb19-467f-9688-6a70211b0f9d_geom .
suni:4b5b0bd0-96c0-4146-a40e-475c2074411f a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Trefola"^^xsd:string ;
suni:literature "Pappalardo et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://www.openstreetmap.org/node/4225662539> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.1486 40.8926)"^^xsd:string ;
geo:hasGeometry suni:4b5b0bd0-96c0-4146-a40e-475c2074411f_geom .
suni:505ac950-ecad-424d-9f22-2ac722eaf069 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Toplitsa Cave (Bulgaria)"^^xsd:string ;
suni:literature "Tsanova et al., 2021"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Tsanova et al., 2021, p.2"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q61788595;http://openstreetmap.org/node/11109379095> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave;fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(24.0053 43.1907)"^^xsd:string ;
geo:hasGeometry suni:505ac950-ecad-424d-9f22-2ac722eaf069_geom .
suni:511fe6f8-1593-452b-a308-83a7457e1aa0 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Paglicci Cave"^^xsd:string ;
suni:literature "Giaccio et al., 2008"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 2293681037"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q3777010;http://openstreetmap.org/node/2293681037> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave;fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(15.6150 41.6541)"^^xsd:string ;
geo:hasGeometry suni:511fe6f8-1593-452b-a308-83a7457e1aa0_geom .
suni:59b63e96-da17-43e5-b28f-bed74ef1c667 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:dubious"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Bratul Borcea (Romania)"^^xsd:string ;
suni:literature "Pötter et al., 2021"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/684225> ;
suni:relatedtohow "fsl:dubiousMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(27.3271 44.1891)"^^xsd:string ;
geo:hasGeometry suni:59b63e96-da17-43e5-b28f-bed74ef1c667_geom .
suni:5b01d480-6bf5-4747-a402-3d3d801d0481 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Casola"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://www.openstreetmap.org/node/68580470> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.5259 40.6993)"^^xsd:string ;
geo:hasGeometry suni:5b01d480-6bf5-4747-a402-3d3d801d0481_geom .
suni:5b99fefc-a7aa-4d5e-b8aa-d178f33d7627 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:representative"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Dobrogea (Romania)"^^xsd:string ;
suni:literature "Fitzsimmons et al., 2014; Fitzsimmons et al.,2013"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/679193> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Plateau"^^xsd:string ;
suni:wkt "POINT(28.2329 43.9996)"^^xsd:string ;
geo:hasGeometry suni:5b99fefc-a7aa-4d5e-b8aa-d178f33d7627_geom .
suni:63dac21d-69f7-4da0-a11f-dbe3af89c787 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Rasova"^^xsd:string ;
suni:literature "Obreht, I. et al. (2017), Fig. 1;Zeeden, C. et al. (2018)"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using GeoNamessGoogle Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/669148> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(27.9347 44.2462)"^^xsd:string ;
geo:hasGeometry suni:63dac21d-69f7-4da0-a11f-dbe3af89c787_geom .
suni:6656fdc3-3326-4470-8900-b8977af384be a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Lake Ohrid (Albania)"^^xsd:string ;
suni:literature "Leicher et al., 2019, 2016"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q156258;https://www.openstreetmap.org/relation/2905270> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Lake"^^xsd:string ;
suni:wkt "POINT(20.6749 40.9874)"^^xsd:string ;
geo:hasGeometry suni:6656fdc3-3326-4470-8900-b8977af384be_geom .
suni:66bd22f2-b37a-44d4-bfaf-d981ff435fe7 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Sant‘ Angelo a Scala"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 68567290"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q55100;http://openstreetmap.org/node/68567290> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.7402 40.9746)"^^xsd:string ;
geo:hasGeometry suni:66bd22f2-b37a-44d4-bfaf-d981ff435fe7_geom .
suni:69b86dc3-d2a9-4dd7-a1ca-055c27247d84 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Gulf of Naples"^^xsd:string ;
suni:literature "Arienzo et al., 2009"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 4371325110"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/3172393> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Bight "^^xsd:string ;
suni:wkt "POINT(14.2559 40.7192)"^^xsd:string ;
geo:hasGeometry suni:69b86dc3-d2a9-4dd7-a1ca-055c27247d84_geom .
suni:6a7e9260-0006-4ac4-bd23-ca2ce4816f86 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:dubious"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Voscone Area"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q1438;http://openstreetmap.org/relation/40218> ;
suni:relatedtohow "fsl:partlyMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.5194 40.8005)"^^xsd:string ;
geo:hasGeometry suni:6a7e9260-0006-4ac4-bd23-ca2ce4816f86_geom .
suni:723a3d7f-7e39-4bc3-9f61-f23ef357a42f a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "San Marco"^^xsd:string ;
suni:literature "Civetta et al., 1997"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q58849> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.3381 41.0369)"^^xsd:string ;
geo:hasGeometry suni:723a3d7f-7e39-4bc3-9f61-f23ef357a42f_geom .
suni:79e3a8d3-1639-4c11-802d-d282181da31e a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Lake Ohrid (Macedonia)"^^xsd:string ;
suni:literature "Leicher et al., 2019; Leicher et al., 2016"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q156258;https://www.openstreetmap.org/relation/2905270> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Lake"^^xsd:string ;
suni:wkt "POINT(20.7409 41.0467)"^^xsd:string ;
geo:hasGeometry suni:79e3a8d3-1639-4c11-802d-d282181da31e_geom .
suni:7bb229e5-d76c-4d3f-95c5-2ee508ad26a5 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Kozarnika Cave (Bulgaria)"^^xsd:string ;
suni:literature "Lowe et al., 2012"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q2037533;http://openstreetmap.org/node/8814442373> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave"^^xsd:string ;
suni:wkt "POINT(22.7024 43.6519)"^^xsd:string ;
geo:hasGeometry suni:7bb229e5-d76c-4d3f-95c5-2ee508ad26a5_geom .
suni:7e61a9ab-ace6-4bc0-b346-5f238e4fd1b4 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Klissoura (Greece)"^^xsd:string ;
suni:literature "Lowe et al., 2012"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q21468911> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(21.4672 40.5361)"^^xsd:string ;
geo:hasGeometry suni:7e61a9ab-ace6-4bc0-b346-5f238e4fd1b4_geom .
suni:80e8067c-83bb-4c12-bfdf-3a2f69586cb6 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:low"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Lower Danube Basin (Romania)"^^xsd:string ;
suni:literature "Obreht et al., 2017"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps and Obdreht et al (2017), Fig. 1"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://sws.geonames.org/791630> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Plateau"^^xsd:string ;
suni:wkt "POINT(25.2920 43.6550)"^^xsd:string ;
geo:hasGeometry suni:80e8067c-83bb-4c12-bfdf-3a2f69586cb6_geom .
suni:8f5e2c5d-adb6-48d1-8862-7cbfcf789c69 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Phlegraean Fields"^^xsd:string ;
suni:literature "Orsi et al., 1996;Fedele et al., 2003"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 4948370721"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q755123;http://openstreetmap.org/node/10879170567> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Supervolcano"^^xsd:string ;
suni:wkt "POINT(14.1402 40.8275) "^^xsd:string ;
geo:hasGeometry suni:8f5e2c5d-adb6-48d1-8862-7cbfcf789c69_geom .
suni:93a9ab84-dd31-49c1-bec9-55e2fb2db6fe a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Monticchio Lakes"^^xsd:string ;
suni:literature "Brauer et al., 2000;Fedele et al., 2003"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://www.openstreetmap.org/relation/15802545> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Lake"^^xsd:string ;
suni:wkt "POINT (15.6098 40.9319)"^^xsd:string ;
geo:hasGeometry suni:93a9ab84-dd31-49c1-bec9-55e2fb2db6fe_geom .
suni:99aa8699-e8f3-439c-bbc4-dc0ce9875297 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Vico Equense"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q72732> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.4273 40.6622)"^^xsd:string ;
geo:hasGeometry suni:99aa8699-e8f3-439c-bbc4-dc0ce9875297_geom .
suni:9b4a2b53-ef11-49e8-bc1b-ff57b97c507e a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Punta Marmolite"^^xsd:string ;
suni:literature "Pappalardo et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q72443> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.1489 40.8888)"^^xsd:string ;
geo:hasGeometry suni:9b4a2b53-ef11-49e8-bc1b-ff57b97c507e_geom .
suni:9e652ceb-382c-4ee1-aa48-fcc0077dbeab a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Massaquano (Naples)"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q3850928> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.4476 40.6619)"^^xsd:string ;
geo:hasGeometry suni:9e652ceb-382c-4ee1-aa48-fcc0077dbeab_geom .
suni:9eb0f685-9fd8-4d3e-b948-41d561e74c65 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Stalać"^^xsd:string ;
suni:literature "Obreht, I. et al. (2017), Fig. 1;Obreht, I. et al. (2016)"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using GeoNamessGoogle Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/838724> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(21.4058 43.6728)"^^xsd:string ;
geo:hasGeometry suni:9eb0f685-9fd8-4d3e-b948-41d561e74c65_geom .
suni:a0c4bf81-ae3a-4b77-b1f5-c47917917cda a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Haua-Fteah (Libya)"^^xsd:string ;
suni:literature "Lowe et al., 2012"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 7778324735"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q25226810;http://openstreetmap.org/node/7778324735> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave;fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(22.0516 32.9002)"^^xsd:string ;
geo:hasGeometry suni:a0c4bf81-ae3a-4b77-b1f5-c47917917cda_geom .
suni:a28ee4f2-3460-4ee3-8f60-25ad48649adb a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Temnata Cave (Bulgaria)"^^xsd:string ;
suni:literature "Fedele et al., 2008, 2003;Fitzsimmons et al., 2013;Giaccio et al., 2008"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://sws.geonames.org/726486;http://openstreetmap.org/node/369821847;http://wikidata.org/entity/Q12296153> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave"^^xsd:string ;
suni:wkt "POINT(23.3848 43.0892)"^^xsd:string ;
geo:hasGeometry suni:a28ee4f2-3460-4ee3-8f60-25ad48649adb_geom .
suni:a459cf43-0ddb-4bfb-8d7c-4c76e9a17c5e a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Lago Patria (Naples)"^^xsd:string ;
suni:literature "Civetta et al., 1997;Scandone et al., 1991"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 4371325110"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/9881928> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.0366 40.9260)"^^xsd:string ;
geo:hasGeometry suni:a459cf43-0ddb-4bfb-8d7c-4c76e9a17c5e_geom .
suni:acc0cc13-f0e4-474f-b29f-a10b5ea109ac a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Tabula Traiana (Serbia)"^^xsd:string ;
suni:literature "Boric et al., 2012;Lowe et al., 2012"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q2091689;https://www.openstreetmap.org/node/1918839400> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(22.3094 44.6568)"^^xsd:string ;
geo:hasGeometry suni:acc0cc13-f0e4-474f-b29f-a10b5ea109ac_geom .
suni:adb3ba5a-5672-4774-b548-13baceb65a83 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Pacognano"^^xsd:string ;
suni:literature "Civetta et al., 1997;Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://www.openstreetmap.org/node/5381436704> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.4347 40.6484)"^^xsd:string ;
geo:hasGeometry suni:adb3ba5a-5672-4774-b548-13baceb65a83_geom .
suni:agent a owl:ObjectProperty ;
rdfs:domain suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 .
suni:b38bd519-1cd9-4152-a38d-f4075fbd2c7d a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Kostenki (Russia)"^^xsd:string ;
suni:literature "Fedele et al., 2003"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q2070357> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(39.0473 51.3858) "^^xsd:string ;
geo:hasGeometry suni:b38bd519-1cd9-4152-a38d-f4075fbd2c7d_geom .
suni:b6bb1f3d-9e75-4541-be41-623b6b36fd8c a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Ponti Rossi (Naples)"^^xsd:string ;
suni:literature "Civetta et al., 1997;Giaccio et al., 2008;Pappalardo et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/3172391> ;
suni:relatedtohow "fsl:partlyMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(14.2594 40.8731)"^^xsd:string ;
geo:hasGeometry suni:b6bb1f3d-9e75-4541-be41-623b6b36fd8c_geom .
suni:b710cf7b-b54e-465b-b2c8-d000c22e9c1a a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Villa di Briano (Naples)"^^xsd:string ;
suni:literature "Civetta et al., 1997"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q58927> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.1607 41.0000)"^^xsd:string ;
geo:hasGeometry suni:b710cf7b-b54e-465b-b2c8-d000c22e9c1a_geom .
suni:b7dc5af7-1550-49fc-a5a7-f509144759c7 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Starza"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://www.openstreetmap.org/node/8710500139> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.7567 41.0075)"^^xsd:string ;
geo:hasGeometry suni:b7dc5af7-1550-49fc-a5a7-f509144759c7_geom .
suni:b8f4b797-2878-4bb6-861c-950ef0ba30e2 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:low"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Titel Pleateau (Serbia)"^^xsd:string ;
suni:literature "Baykal et al., 2018"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q3391916> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(20.3026 45.2034)"^^xsd:string ;
geo:hasGeometry suni:b8f4b797-2878-4bb6-861c-950ef0ba30e2_geom .
suni:ba7cec11-bbcd-4be2-a784-4868c9827db7 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Balta Alba (Romania)"^^xsd:string ;
suni:literature "Pötter et al., 2021"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/685575> ;
suni:relatedtohow "fsl:spatialCloseMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(27.2478 45.3037)"^^xsd:string ;
geo:hasGeometry suni:ba7cec11-bbcd-4be2-a784-4868c9827db7_geom .
suni:beb78f3c-7d16-463c-bee3-27a515064f74 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:representative"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Kostenki-Borshchevo (Russia)"^^xsd:string ;
suni:literature "Fedele et al., 2008;Giaccio et al., 2008"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://en.wikipedia.org/wiki/Kostyonki%E2%80%93Borshchyovo> ;
suni:relatedtohow "fsl:dubiousMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:ArchaeologicalSite"^^xsd:string ;
suni:wkt "POINT(39.0517 51.3858)"^^xsd:string ;
geo:hasGeometry suni:beb78f3c-7d16-463c-bee3-27a515064f74_geom .
suni:c0617563-544a-4d26-9822-b6bda5a1e0f9 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Kisiljevo (Serbia)"^^xsd:string ;
suni:literature "Baykal et al., 2018"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/789504> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:UnknownCategory"^^xsd:string ;
suni:wkt "POINT(21.3912 44.7397)"^^xsd:string ;
geo:hasGeometry suni:c0617563-544a-4d26-9822-b6bda5a1e0f9_geom .
suni:c1eafd40-7aa8-49eb-abfc-df9b1b4969ff a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Lake Prespa"^^xsd:string ;
suni:literature "Obreht, I. et al. (2017), Fig. 1;Panagiotopoulos, K. (2014)"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using GeoNamessGoogle Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <https://sws.geonames.org/786766> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Lake"^^xsd:string ;
suni:wkt "POINT(21.0000 40.9167)"^^xsd:string ;
geo:hasGeometry suni:c1eafd40-7aa8-49eb-abfc-df9b1b4969ff_geom .
suni:c271fda7-a6e8-47d6-a2f0-309268f0cb02 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0000-0002-3246-3531> ;
suni:certainty "fsl:high"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Castelcivita Cave"^^xsd:string ;
suni:literature "Fedele et al., 2008;Giaccio et al., 2008"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using OSM Node 337519639"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q3777120;http://openstreetmap.org/node/337519639> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Cave"^^xsd:string ;
suni:wkt "POINT(15.2092 40.4956)"^^xsd:string ;
geo:hasGeometry suni:c271fda7-a6e8-47d6-a2f0-309268f0cb02_geom .
suni:c434e049-c2ab-4308-8d6b-b3247b5ffba0 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "Fitzsimmons et al. (2014), p.76: “In this paper we investigate [...] the site of Urluia Quarry on the Dobrogea loess plateau [...], some 15 km south of the Danube River. The site immediately overlies the Quaternary-uplifted Cretaceous-Tertiary-age limestone basement rocks (Munteanu et al., 2008), which were the target of earlier quarrying activities.”; Pötter et al. (2021), p.5: “The Urluia (URL) LPS is located in an abandoned limestone quarry on the limestone plateau of the Dobrogea (Fitzsimmons et al., 2013; Fitzsimmons and Hambach, 2014; Obreht et al., 2017).”"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Urluia (Romania)"^^xsd:string ;
suni:literature "Fitzsimmons et al., 2014;Fitzsimmons et al.,, 2013;Obreht et al., 2017;Pötter et al., 2021"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://sws.geonames.org/664132;http://openstreetmap.org/way/84975654> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(27.9021 44.0947)"^^xsd:string ;
geo:hasGeometry suni:c434e049-c2ab-4308-8d6b-b3247b5ffba0_geom .
suni:c7ea3548-2ccb-4255-923d-41e3c851c9e9 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Capezzano"^^xsd:string ;
suni:literature "Rosi et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q2610850> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:InhabitedPlace"^^xsd:string ;
suni:wkt "POINT(14.7680 40.7119)"^^xsd:string ;
geo:hasGeometry suni:c7ea3548-2ccb-4255-923d-41e3c851c9e9_geom .
suni:c870e052-4262-41b1-900a-b8904b193d4f a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:low"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Southern Ukraine"^^xsd:string ;
suni:literature "Fitzsimmons et al., 2013"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q2641546> ;
suni:relatedtohow "fsl:dubiousMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:ModernRegion"^^xsd:string ;
suni:wkt "POINT(31.8000 47.4300)"^^xsd:string ;
geo:hasGeometry suni:c870e052-4262-41b1-900a-b8904b193d4f_geom .
suni:cc589824-3386-4c74-963c-2d4858e0b351 a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;
suni:desc "CI findspot related from literature"^^xsd:string ;
suni:label "Monte Echia (Naples)"^^xsd:string ;
suni:literature "Pappalardo et al., 1999"^^xsd:string ;
suni:methoddesc "set a representative point based on scientific papers using Google Maps"^^xsd:string ;
suni:methodtype "fsl:Georeferencing"^^xsd:string ;
suni:relatedto <http://wikidata.org/entity/Q2794197> ;
suni:relatedtohow "skos:closeMatch"^^xsd:string ;
suni:source "fsl:PaperDesc"^^xsd:string ;
suni:sourcetype "fsl:Paper"^^xsd:string ;
suni:spatialtype "fsl:Mountain"^^xsd:string ;
suni:wkt "POINT(14.2479 40.8312)"^^xsd:string ;
geo:hasGeometry suni:cc589824-3386-4c74-963c-2d4858e0b351_geom .
suni:certainty a owl:DatatypeProperty ;
rdfs:domain suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
rdfs:range xsd:string .
suni:certaintyinfo a owl:DatatypeProperty ;
rdfs:domain suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
rdfs:range xsd:string .
suni:cf7e743a-d8f4-4c27-b872-5994d2086f8b a suni:d1f06db3-dd8c-4b96-a360-f28909f76c65 ;
suni:agent <http://orcid.org/0009-0008-2877-3204> ;
suni:certainty "fsl:medium"^^xsd:string ;
suni:certaintyinfo "findspot mentioned in a scientific paper"^^xsd:string ;