-
Notifications
You must be signed in to change notification settings - Fork 0
/
tektonik.rdf
5174 lines (4785 loc) · 405 KB
/
tektonik.rdf
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" encoding="UTF-8"?>
<rdf:RDF
xmlns="https://lexic.swissgeol.ch/TectonicUnits/"
xmlns:grddl="http://www.w3.org/2003/g/data-view#"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
<skos:prefLabel xml:lang="en">TectonicUnits</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:topConceptOf rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Autochthonous North Alpine Foreland</skos:prefLabel>
<skos:prefLabel xml:lang="de">Autochthones Nordalpines Vorland</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Avant-pays nord-alpin autochtone</skos:prefLabel>
<skos:prefLabel xml:lang="it">Avampaese nordalpino autoctono</skos:prefLabel>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/BresseGraben"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Haute-SaonePlatform"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/UpperRhineGraben"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SouthGermanPlatform"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/TransitionZoneBetweenDetachedAndAutochthonousNorthAlpineForeland"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DetachedNorthAlpineForeland"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/BresseGraben">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Bresse Graben</skos:prefLabel>
<skos:prefLabel xml:lang="de">Bresse-Graben</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Graben de la Bresse</skos:prefLabel>
<skos:prefLabel xml:lang="it">Graben della Bresse</skos:prefLabel>
<skos:altLabel xml:lang="fr">fossé bressan</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Haute-SaonePlatform">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="de">Haute-Saône-Tafel</skos:prefLabel>
<skos:prefLabel xml:lang="it">Altopiano della Haute-Saône</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Plateau de la Haute-Saône</skos:prefLabel>
<skos:prefLabel xml:lang="en">Haute-Saône Platform</skos:prefLabel>
<skos:altLabel xml:lang="de">autochthoner Tafeljura; Nordfranzösisches Schichtstufenland</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/UpperRhineGraben">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Upper Rhine Graben</skos:prefLabel>
<skos:prefLabel xml:lang="de">Oberrhein-Graben</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Graben du Haut Rhin</skos:prefLabel>
<skos:prefLabel xml:lang="it">Graben dell'Alto Reno</skos:prefLabel>
<skos:altLabel xml:lang="fr">fossé rhénan</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SouthGermanPlatform">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">South German Platform</skos:prefLabel>
<skos:prefLabel xml:lang="de">Süddeutsche Tafel</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Plateau de l'Allemagne méridionale</skos:prefLabel>
<skos:prefLabel xml:lang="it">Altopiano della Germania meridionale</skos:prefLabel>
<skos:altLabel xml:lang="de">autochthoner Tafeljura; Südwestdeutsches Schichtstufenland</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Hegau-BodenseeGraben"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/TransitionZoneBetweenDetachedAndAutochthonousNorthAlpineForeland">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Transition zone between Detached and Autochthonous North Alpine Foreland</skos:prefLabel>
<skos:prefLabel xml:lang="de">Übergangszone Abgeschert-Autochthones Vorlandplateau</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Zone de transition entre Avant-pays nord-alpin décolé et autochtone</skos:prefLabel>
<skos:prefLabel xml:lang="it">Zona di transizione tra l'Avampaese nordalpino distaccato e autoctono</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland"/>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DetachedNorthAlpineForeland"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/DetachedNorthAlpineForeland">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:topConceptOf rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Detached North Alpine Foreland</skos:prefLabel>
<skos:prefLabel xml:lang="de">Abgeschertes Nordalpines Vorland</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Avant-pays nord-alpin décollé</skos:prefLabel>
<skos:prefLabel xml:lang="it">Avampaese nordalpino distaccato</skos:prefLabel>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/TransitionZoneBetweenDetachedAndAutochthonousNorthAlpineForeland"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalFoldedJura"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineMolasse"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/InternalFoldedJuraAndForelandPlateau"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AutochthonousNorthAlpineForeland"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Hegau-BodenseeGraben">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Hegau-Bodensee Graben</skos:prefLabel>
<skos:prefLabel xml:lang="de">Hegau-Bodensee-Graben</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Graben du Hegau-Bodensee</skos:prefLabel>
<skos:prefLabel xml:lang="it">Graben del Hegau-Bodensee</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SouthGermanPlatform"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HegauVolcanicSuite"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/HegauVolcanicSuite">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Hegau Volcanic Suite</skos:prefLabel>
<skos:prefLabel xml:lang="de">Vulkanische Serie des Hegaus</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Série volcanique de l‘Hegau</skos:prefLabel>
<skos:prefLabel xml:lang="it">Serie vulcanica dell‘Hegau</skos:prefLabel>
<skos:altLabel xml:lang="de">Hegau-Provinz</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/CenozoicMagmaticRocks"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Hegau-BodenseeGraben"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/ExternalFoldedJura">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">External Folded Jura</skos:prefLabel>
<skos:prefLabel xml:lang="de">Externer Faltenjura</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Jura Plissé Externe</skos:prefLabel>
<skos:prefLabel xml:lang="it">Giura Piegato Esterno</skos:prefLabel>
<skos:altLabel xml:lang="fr">Jura externe</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DetachedNorthAlpineForeland"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Faisceaux"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Plateaux"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/InternalFoldedJuraAndForelandPlateau"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SubalpineMolasse">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Subalpine Molasse</skos:prefLabel>
<skos:prefLabel xml:lang="de">Subalpine Molasse</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Molasse Subalpine</skos:prefLabel>
<skos:prefLabel xml:lang="it">Molassa Subalpina</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DetachedNorthAlpineForeland"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Marbach-BerneckTriangleZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/InternalFoldedJuraAndForelandPlateau">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Internal Folded Jura and Foreland Plateau</skos:prefLabel>
<skos:prefLabel xml:lang="de">Interner Faltenjura und Vorlandplateau</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Jura Plissé Interne et Plateau de l'Avant-pays</skos:prefLabel>
<skos:prefLabel xml:lang="it">Giura Piegato Interno e Altopiano dell’Avampaese</skos:prefLabel>
<skos:altLabel xml:lang="fr">Jura interne; Haute-Chaîne; Plateau molassique</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DetachedNorthAlpineForeland"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalFoldedJura"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Faisceaux">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Faisceaux</skos:prefLabel>
<skos:prefLabel xml:lang="de">Faisceaux</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Faisceaux</skos:prefLabel>
<skos:prefLabel xml:lang="it">Faisceaux</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalFoldedJura"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Plateaux">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Plateaux</skos:prefLabel>
<skos:prefLabel xml:lang="de">Plateaus</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Plateaux</skos:prefLabel>
<skos:prefLabel xml:lang="it">Plateaux</skos:prefLabel>
<skos:altLabel xml:lang="de">abgescherter Tafeljura</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalFoldedJura"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Marbach-BerneckTriangleZone">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Marbach-Berneck Triangle Zone</skos:prefLabel>
<skos:prefLabel xml:lang="de">Marbach-Berneck-Dreieckzone</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Zone triangulaire de Marbach-Berneck</skos:prefLabel>
<skos:prefLabel xml:lang="it">Zona triangolare di Marbach-Berneck</skos:prefLabel>
<skos:altLabel xml:lang="de">Triangelzone</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineMolasse"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Subalpine Slice Complex</skos:prefLabel>
<skos:prefLabel xml:lang="de">Subalpiner Schuppenkomplex</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Complexe d'écailles de la Molasse Subalpine</skos:prefLabel>
<skos:prefLabel xml:lang="it">Complesso di scaglie della Molassa Subalpina</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineMolasse"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/BelmontSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Lutry-ThononSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Brecorens-LucingesSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/CullySlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LavauxSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MontPelerinSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Vevey-EvianSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Gerignoz-LaRocheSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/VaulruzSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Champotey-RamseraSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LaPattaz-LaHolenaSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/VillarvolardSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SeftigschwandSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GiebeleggSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SteffisburgSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SchangnauSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HornbueelSliceZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Blueme-BeichleSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/WolfseggSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/RalligenSliceZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HilfernSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HoehronenSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/StJostSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Rigi-RossbergSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GaebrisSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/KronbergSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/KronbergSouthernZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SchorhuettenbergSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Speer-StockbergSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ChraezerliSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HirschbergSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HoelzlibergSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/EichbergSlice"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/BelmontSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Belmont Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Belmont-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Belmont</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Belmont</skos:prefLabel>
<skos:altLabel xml:lang="fr">écaille de la Paudèze</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Lutry-ThononSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Lutry-Thonon Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Lutry-Thonon-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Lutry-Thonon</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Lutry-Thonon</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Brecorens-LucingesSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Brécorens-Lucinges Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Brécorens-Lucinges-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Brécorens-Lucinges</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Brécorens-Lucinges</skos:prefLabel>
<skos:altLabel xml:lang="fr">écaille de Bellevue</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/CullySlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Cully Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Cully-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Cully</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Cully</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/LavauxSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Lavaux Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Lavaux-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Lavaux</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Lavaux</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/MontPelerinSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Mont Pèlerin Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Mont-Pèlerin-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Mont Pèlerin</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Mont Pèlerin</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Vevey-EvianSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Vevey-Evian Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Vevey-Evian-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Vevey-Evian</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Vevey-Evian</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Gerignoz-LaRocheSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Gérignoz - La Roche Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Gérignoz-La-Roche-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Gérignoz - La Roche</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Gérignoz - La Roche</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/VaulruzSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Vaulruz Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Vaulruz-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Vaulruz</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Vaulruz</skos:prefLabel>
<skos:altLabel xml:lang="fr">écaille de Prévondavau</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Champotey-RamseraSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Champotey-Ramsera Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Champotey-Ramsera-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Champotey-Ramsera</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Champotey-Ramsera</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/LaPattaz-LaHolenaSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">La Pattaz - La Holena Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">La-Pattaz-La-Holena-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de La Pattaz - La Holena</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di La Pattaz - La Holena</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/VillarvolardSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Villarvolard Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Villarvolard-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Villarvolard</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Villarvolard</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SeftigschwandSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Seftigschwand Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Seftigschwand-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Seftigschwand</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Seftigschwand</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/GiebeleggSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Giebelegg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Giebelegg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de la Giebelegg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia della Giebelegg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SteffisburgSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Steffisburg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Steffisburg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Steffisburg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Steffisburg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SchangnauSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Schangnau Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Schangnau-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Schangnau</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Schangnau</skos:prefLabel>
<skos:altLabel xml:lang="de">Zulg-Hombach-Zone</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/HornbueelSliceZone">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Hornbüel Slice Zone</skos:prefLabel>
<skos:prefLabel xml:lang="de">Hornbüel-Schuppenzone</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Zone d'écailles du Hornbüel</skos:prefLabel>
<skos:prefLabel xml:lang="it">Zona di scaglie del Hornbüel</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Blueme-BeichleSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Blueme-Beichle Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Blueme-Beichle-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de la Blueme-Beichle</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia della Blueme-Beichle</skos:prefLabel>
<skos:altLabel xml:lang="de">Bäuchlen-Honegg-Schuppe; Beichlen-Farneren-Schuppe</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/WolfseggSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Wolfsegg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Wolfsegg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de la Wolfsegg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia della Wolfsegg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/RalligenSliceZone">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Ralligen Slice Zone</skos:prefLabel>
<skos:prefLabel xml:lang="de">Ralligen-Schuppenzone</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Zone d'écailles de Ralligen</skos:prefLabel>
<skos:prefLabel xml:lang="it">Zona di scaglie di Ralligen</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/HilfernSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Hilfern Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Hilfern-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de la Hilfern</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia della Hilfern</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/HoehronenSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Höhronen Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Höhronen-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Höhronen</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Höhronen</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/StJostSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">St. Jost Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">St.-Jost-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de St-Jost</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di St. Jost</skos:prefLabel>
<skos:altLabel xml:lang="de">Grindelegg-Schuppe</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Rigi-RossbergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Rigi-Rossberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Rigi-Rossberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Rigi-Rossberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Rigi-Rossberg</skos:prefLabel>
<skos:altLabel xml:lang="de">Morgarten-Schuppe</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/GaebrisSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Gäbris Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Gäbris-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Gäbris</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Gäbris</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/KronbergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Kronberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Kronberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Kronberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Kronberg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/KronbergSouthernZone">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">«Kronberg Southern Zone»</skos:prefLabel>
<skos:prefLabel xml:lang="de">«Zone Kronberg-Süd»</skos:prefLabel>
<skos:prefLabel xml:lang="fr">«Zone sud de Kronberg»</skos:prefLabel>
<skos:prefLabel xml:lang="it">«Zona sud del Kronberg»</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SchorhuettenbergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Schorhüttenberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Schorhüttenberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Schorhüttenberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia dello Schorhüttenberg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Speer-StockbergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Speer-Stockberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Speer-Stockberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Speer-Stockberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia dello Speer-Stockberg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/ChraezerliSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Chräzerli Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Chräzerli-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Chräzerli</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Chräzerli</skos:prefLabel>
<skos:altLabel xml:lang="de">Kräzerli-Schuppe</skos:altLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/HirschbergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Hirschberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Hirschberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Hirschberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Hirschberg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/HoelzlibergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Hölzliberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Hölzliberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille du Hölzliberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia del Hölzliberg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/EichbergSlice">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Eichberg Slice</skos:prefLabel>
<skos:prefLabel xml:lang="de">Eichberg-Schuppe</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Écaille de Eichberg</skos:prefLabel>
<skos:prefLabel xml:lang="it">Scaglia di Eichberg</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineSliceComplex"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Helvetic">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:topConceptOf rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Helvetic</skos:prefLabel>
<skos:prefLabel xml:lang="de">Helvetikum</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Helvétique</skos:prefLabel>
<skos:prefLabel xml:lang="it">Elvetico</skos:prefLabel>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/UpperHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Lower Helvetic tectonic subdomain comprises all the sedimentary and crystalline units below the Glarus (eastern Switzerland), Axen (central Switzerland), Diablerets and Wildhorn major thrusts (western Switzerland). It corresponds to the External Crystalline Massifs and what was formerly called the “Infrahelvetic complex” that includes imbricates with North Helvetic facies as well as sedimentary nappes with South Helvetic to Ultrahelvetic facies.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Lower Helvetic</skos:prefLabel>
<skos:prefLabel xml:lang="de">Unterhelvetikum</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Helvétique inférieur</skos:prefLabel>
<skos:prefLabel xml:lang="it">Elvetico inferiore</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Helvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SubalpineFlyschZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/BelledonneMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AiguillesRougesMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MontBlancMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AarMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ChainesSubalpinesNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MorclesNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ArdonNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DoldenhornNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GellihornNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/PlammisNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/JaegerchruezNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/KammlistockNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GriessstockNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ClaridenSliceComplex"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Fiseten-OrthaldenSlices"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/CavistrauNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Chropfsberg-PizalunSlices"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MaettentalMelange"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SchabellMelange"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/TschingelhoernerSlices"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/BlattengratNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SardonaNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/BadRagazNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/CalandaSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MarchegghornSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MiruttaSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/OrglenSlices"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/UpperHelvetic">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Upper Helvetic is a tectonic subdomain which encompasses the Helvetic Nappes s.s. (ontop of the main Helvetic Thrust, i.e. from west to east, with increasing displacement: Diablerets, Wildhorn, Axen and Glarus thrusts), as well as the overlying units of South Helvetic to Ultrahelvetic paleogeographic origin.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Upper Helvetic</skos:prefLabel>
<skos:prefLabel xml:lang="de">Oberhelvetikum</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Helvétique supérieur</skos:prefLabel>
<skos:prefLabel xml:lang="it">Elvetico superiore</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Helvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MontChetifNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/RoseletteNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/WildhornNappeComplex"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GlarusNappeComplex"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/AxenNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DrusbergNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/SaentisNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HohenemsNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/TavetschNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/IlanzNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GotthardNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/CamosciNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ScopiNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Piora-PeidenSliceComplex"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HabkernMelangeZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/IbergMelange"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/InternalEinsiedelnSlices"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/WildhausMelange"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LiebensteinNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/FlaescherbergNappe"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/PillonMelangeZone"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/BulleMelangeZone"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/SubalpineFlyschZone">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Subalpine Flysch Zone is a heterogeneous Lower Helvetic mélange zone, consisting of «wildflysch» and various elements of all sizes of North Helvetic, South Helvetic and Subbriançonnais origin. It extends along the front of the Alps in a narrow, almost continuous band from the Thunersee to the Toggenburg. It lies between the Subalpine Molasse and the Upper Helvetic Drusberg and Säntis nappes.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Subalpine Flysch Zone</skos:prefLabel>
<skos:prefLabel xml:lang="de">Subalpine Flysch-Zone</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Zone du Flysch subalpin</skos:prefLabel>
<skos:prefLabel xml:lang="it">Zona del Flysch subalpino</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalEinsiedelnSlices"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/BelledonneMassif">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Belledonne Massif is a Lower Helvetic External Massif of the French Alps. It is constituted of a pre-Variscan polycyclic basement (Precambrian to Early Cretaceous) intruded by Variscan granites and of a Mesozoic sedimentary cover. The Belledonne Massif is separated from the Aiguilles Rouges and Mont Blanc massifs by the axial depression of the Val Montjoie.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Belledonne Massif</skos:prefLabel>
<skos:prefLabel xml:lang="de">Belledonne-Massiv</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Massif de Belledonne</skos:prefLabel>
<skos:prefLabel xml:lang="it">Massiccio di Belledonne</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalBelledonneMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MiddleBelledonneMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/InternalBelledonneMassif"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/AiguillesRougesMassif">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Aiguilles Rouges Massif is a Lower Helvetic External Massif of the French and Western Swiss Alps. It is constituted of a pre-Variscan polycyclic basement (Precambrian to Early Cretaceous) intruded by Variscan granites, of Permo-Carboniferous metasediments and of a Mesozoic–Cenozoic sedimentary cover. The Aiguilles Rouges Massif is separated from the Belledonne Massif by the axial depression of the Val Montjoie and from the Mont Blanc Massif by a thin band of Mesozoic sediments often («Chamonix Syncline»).</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Aiguilles Rouges Massif</skos:prefLabel>
<skos:prefLabel xml:lang="de">Aiguilles-Rouges-Massiv</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Massif des Aiguilles Rouges</skos:prefLabel>
<skos:prefLabel xml:lang="it">Massiccio delle Aiguilles Rouges</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/MontBlancMassif">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Mont Blanc Massif, divided into an external and an internal part by a major fault, is a Lower Helvetic External Massif of the French and Western Swiss Alps. It is constituted of a pre-Variscan polycyclic basement (Precambrian to Early Cretaceous) intruded by Variscan granites and of a Mesozoic–Cenozoic sedimentary cover. The Mont Blanc Massif is separated from the Belledonne Massif by the axial depression of the Val Montjoie and from the Aiguilles Rouges Massif by a thin band of Mesozoic sediments often («Chamonix Syncline»).</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Mont Blanc Massif</skos:prefLabel>
<skos:prefLabel xml:lang="de">Mont-Blanc-Massiv</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Massif du Mont Blanc</skos:prefLabel>
<skos:prefLabel xml:lang="it">Massiccio del Monte Bianco</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalMontBlancMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/InternalMontBlancMassif"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/AarMassif">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Aar Massif is a Lower Helvetic External Massif of the central part of the Swiss Alps. It is constituted of a pre-Variscan to Variscan polycyclic metamorphic basement with Variscan intrusions, of Permo-Carboniferous grabens filled with volcano-sedimentary rocks and of an autochthonous to parautochthonous Mesozoic–Cenozoic sedimentary cover. It is subdivided by several faults into a large External Aar Massif and a thinner Internal Aar Massif to the south-east.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Aar Massif</skos:prefLabel>
<skos:prefLabel xml:lang="de">Aar-Massiv</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Massif de l'Aar</skos:prefLabel>
<skos:prefLabel xml:lang="it">Massiccio dell'Aare</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalAarMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GasternSubmassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Baldschieder-GletschSubmassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/Trun-PuntegliasSubmassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/KaminspitzSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/StelliSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/TschepSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/HochFulenSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/OrglenSlices_PartAarMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/CalandaSlice_PartAarMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MiruttaSlice_PartAarMassif"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/PizDartgasSlice"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/ChainesSubalpinesNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Chaines Subalpines Nappe is a Lower Helvetic tectonic nappe of the French Alps constituted by a succession of large folds with NW vergence to the north of the latitude of Annecy and with W vergence to the south. Its eastern contact is a thrust fault plunging NW over the Aiguilles Rouges and Belledonne massifs. It is overlain to the north by the Pillon Mélange Zone just below the Penninic Prealps, and overlies the southern end of the Subalpine Molasse to the west. The Chaines Subalpines Nappe is subdivided into several units by thrust faults. All these units are composed of Jurassic–Cenozoic sediments of North Helvetic origin, except the most external one, located south of Annecy, whose series is similar to that of the Internal Folded Jura.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Chaines Subalpines Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Chaines-Subalpines-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe des Chaines Subalpines</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda delle Chaines Subalpines</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/MorclesNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Morcles Nappe is a Lower Helvetic tectonic nappe of the French and Western Swiss Alps. It is constituted by a Jurassic–Cenozoic sedimentary series forming a large recumbent fold overlying the northeastern end of the Aiguilles Rouges Massif. This large fold, defined north of the bend that the Rhône forms at Martigny, extends south of the Rhône, in the Dents du Midi area.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Morcles Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Morcles-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe de Morcles</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda di Morcles</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/DoldenhornNappe"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ExternalMontBlancMassif"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/ArdonNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Ardon Nappe is a Lower Helvetic tectonic nappe of the Western Swiss Alps, situated on the north side of the Rhône between Ardon and the Mont Gond, below the Diablerets Thrust. It is rooted on the internal Mont Blanc Massif. This very thin unit is mainly constituted of Early Cretaceous sediments.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Ardon Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Ardon-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe d'Ardon</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda di Ardon</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/InternalMontBlancMassif"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/DoldenhornNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Doldenhorn Nappe is a Lower Helvetic tectonic nappe situated at the southwestern end of the Aar Massif, where the upper part of the External Aar Massif sedimentary cover is detached and forms a large-scale recumbent fold. Its inverted limb is intensely sheared and characterized by carbonate mylonites («Jungfrau Syncline»). This nappe is stratigraphically and structurally comparable to the Morcles Nappe.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Doldenhorn Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Doldenhorn-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe du Doldenhorn</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda del Doldenhorn</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:related rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/MorclesNappe"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/GellihornNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Gellihorn Nappe is a Lower Helvetic tectonic nappe of the Western Swiss Alps, constituted by a thin series of Late Jurassic to Paleogene limestones. It occupies the same structural position as the Plammis-Jägerchrüz couple, but does not show the same grade of metamorphism.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Gellihorn Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Gellihorn-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe du Gellihorn</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda del Gelihorn</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/PlammisNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Plammis Nappe is a Lower Helvetic tectonic nappe of the Western Swiss Alps, constituted by a Jurassic sedimentary series interpreted as the detached part of the autochthonous cover of the Internal Aar Massif (Baldschieder-Gletsch Submassif). On the slopes between Sierre and Gampel, the Plammis Nappe overlies the autochthonous cover of the External Aar Massif and the Doldenhorn Nappe. It is itself overlain by the Jägerchrüz Nappe.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Plammis Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Plammis-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe de Plammis</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda di Plammis</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/JaegerchruezNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Jägerchrüz Nappe is a Lower Helvetic tectonic nappe of the Western Swiss Alps, constituted by a Triassic–Paleogene sedimentary series overlying the Plammis Nappe and overlain by the Upper Helvetic Wildhorn Nappe Complex.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Jägerchrüz Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Jägerchrüz-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe du Jägerchrüz</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda del Jägerchrüz</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/KammlistockNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Kammlistock Nappe is one of several small Lower Helvetic tectonic units of the Klausenpass region, wedged between the sedimentary series of the Aar massif and the Axen Thrust. It is constituted by Late Jurassic to Paleogene sediments that were deposited further south than the autochthonous-parautochthonous sediments of the Aar Massif, but still in the North Helvetic realm.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Kammlistock Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Kammlistock-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe du Kammlistock</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda del Kammlistock</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/GriessstockNappe">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Griessstock Nappe is one of several small Lower Helvetic tectonic units of the Klausenpass region, wedged between the sedimentary series of the Aar massif and the Axen Thrust. It is constituted by Late Jurassic to Paleogene sediments (Quinten to Taveyannaz formations) that were deposited further south than the autochthonous-parautochthonous sediments of the Aar Massif, but still in the North Helvetic realm.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Griessstock Nappe</skos:prefLabel>
<skos:prefLabel xml:lang="de">Griessstock-Decke</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Nappe du Griessstock</skos:prefLabel>
<skos:prefLabel xml:lang="it">Falda del Griessstock</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/ClaridenSliceComplex">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Clariden Slice Complex is one of several small Lower Helvetic tectonic units of the Klausenpass region, wedged between the sedimentary series of the Aar massif and the Axen Thrust. It is constituted by Late Jurassic to Paleogene sediments that were deposited further south than the autochthonous-parautochthonous sediments of the Aar Massif, but still in the North Helvetic realm.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Clariden Slice Complex</skos:prefLabel>
<skos:prefLabel xml:lang="de">Clariden-Schuppenkomplex</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Complexe d'écailles du Clariden</skos:prefLabel>
<skos:prefLabel xml:lang="it">Complesso di scaglie del Clariden</skos:prefLabel>
<skos:broader rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LowerHelvetic"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/KlausenpassSlices"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/ChamerstockSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GeisstrittSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/StichplattenSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/GemsfairenSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/RotstockSlice"/>
<skos:narrower rdf:resource="https://lexic.swissgeol.ch/TectonicUnits/LangfirnSlice"/>
<status xmlns="http://www.w3.org/ns/adms#" rdf:resource="https://lexic.swissgeol.ch/active"/>
</rdf:Description>
<rdf:Description rdf:about="https://lexic.swissgeol.ch/TectonicUnits/Fiseten-OrthaldenSlices">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:isDefinedBy xml:lang="en">Gouffon Yves (Editor) (2024): Tectonic Map of Switzerland 1:500000, Explanatory notes. Federal Office of Topography swisstopo, Wabern</rdfs:isDefinedBy>
<skos:definition xml:lang="en">The Fiseten-Orthalden Slices are small Lower Helvetic tectonic units of the Klausenpass region, wedged between the sedimentary series of the Aar massif and the Axen Thrust. They are constituted by Late Jurassic to Paleogene sediments that were deposited further south than the autochthonous-parautochthonous sediments of the Aar Massif, but still in the North Helvetic realm.</skos:definition>
<skos:inScheme rdf:resource="https://lexic.swissgeol.ch/TectonicUnits"/>
<skos:prefLabel xml:lang="en">Fiseten-Orthalden Slices</skos:prefLabel>