This repository has been archived by the owner on Mar 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontent.json
1045 lines (1044 loc) · 35 KB
/
content.json
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
{
"id": "",
"title": {
"de": "Inhalte",
"en": "Content"
},
"children": [
{
"id": "",
"title": {
"de": "DAI - Objektdatenbank",
"en": "DAI - Objectdatabase"
},
"children": [
{
"id": "emagines",
"title": {
"de": "Emagines",
"en": "Emagines"
}
},
{
"id": "fotoistanbul",
"title": {
"de": "Fotothek DAI Istanbul",
"en": "DAI Istanbul photo archive"
}
},
{
"id": "fotokairo",
"title": {
"de": "Fotothek DAI Kairo",
"en": "DAI Cairo photo archive"
}
},
{
"id": "fotomadrid",
"title": {
"de": "Fotothek DAI Madrid",
"en": "DAI Madrid photo archive"
}
},
{
"id": "kaak",
"title": {
"de": "Die Archive der KAAK",
"en":"Archives of the KAAK"
},
"hidden": true
},
{
"id": "fotorom",
"title": {
"de": "Fotothek DAI Rom",
"en": "DAI Rome photo archive"
},
"children": [
{
"id": "fotoromcategories",
"title": {
"de": "Die Kategorien der Fotothek des DAI Rom",
"en": "Categories of the DAI Rome's photo archive"
}
},
{
"id": "skulpturnegdairom",
"title": {
"de": "Skulpturennegative DAI Rom",
"en": "Sculpture Negatives of the DAI Rome"
}
},
{
"id": "nachlassroeder",
"title": {
"de": "Nachlass Josef Röder",
"en": "Scholarly bequests of Josef Röder"
}
},
{
"id": "invbuecherrom",
"title": {
"de": "Inventarbücher",
"en": "Inventory registers"
}
},
{
"id": "imagegrid",
"title": {
"de": "Image Grid",
"en": "Image Grid"
}
}
]
},
{
"id": "fotoarchivdaiberlin",
"title": {
"de": "Fotoarchiv der Zentrale des DAI in Berlin",
"en": "DAI Head Office photo archive"
}
},
{
"id": "gadara",
"title": {
"de": "Fotoarchiv Gadara",
"en": "Gadara photo archive"
}
},
{
"id": "gadara_interactive_map",
"title": {
"de": "Interaktiver Übersichtsplan des Grabungsgeländes in Gadara",
"en": "#"
}
},
{
"id": "daiorient",
"title": {
"de": "Fotothek DAI Orientabteilung",
"en":"Photo archive of the Orient Department"
}
}
]
},
{
"id": "idaibookbrowser",
"title": {
"de": "iDAI.bookbrowser",
"en": "iDAI.bookbrowser",
"it": "iDAI.bookbrowser"
},
"children": [
{
"id": "rezeptionantike",
"title": {
"de": "Rezeption der Antike im semantischen Netz",
"en": "Reception of Antiquity in a Semantic Network"
}
},
{
"id": "antikzeichnung",
"title": {
"de": "Die Antike in Zeichnung, Plan und Bauaufnahme",
"en": "The Antiquity in Drawing, Plan and Architectural Survey"
},
"hidden": true
},
{
"id": "handzeichnungen",
"title": {
"de": "Die Antike in Zeichnung, Plan und Bauaufnahme",
"en": "The Antiquity in Drawing, Plan and Architectural Survey"
}
},
{
"id": "handzeichnungen_map",
"title": {
"de": "Die Antike in Zeichnung, große Karte",
"en": "The Antiquity in Drawing, big map"
},
"hidden": true
},
{
"id": "gelehrtenbriefe",
"title": {
"de": "Gelehrte, Ausgräber und Kunsthändler",
"en": "Scholars, Excavators and Art Dealers",
"it": "L’Instituto di Corrispondenza Archeologica "
}
},
{
"id": "athenDigital",
"title": {
"de": "AthenDigital: Das Nachlassarchiv",
"en": "AthensDigital: Archive of bequests"
}
}
]
},
{
"id": "monumentbrowser",
"title": {
"de": "Monumentbrowser",
"en": "Monument Browser",
"it": "Browser dei monumenti"
},
"children": [
{
"id": "arapacis",
"title": {
"de": "Ara Pacis",
"en": "Ara Pacis",
"it": "Ara Pacis"
}
},
{
"id": "pergaltarbrowser",
"title": {
"de": "Pergamonaltarbrowser",
"en": "Pergamon Altar Browser",
"it": "Altare di Pergamo"
}
},
{
"id": "corpusantsark",
"title": {
"de": "Corpus der Antiken Sarkophage",
"en": "Corpus of Ancient Sarcophagi"
}
},
{
"id": "traianssaeule",
"title": {
"de": "Trajanssäule",
"en": "Trajan’s Column",
"it": "Colonna Traiana"
}
},
{
"id": "mercatorplan",
"title": {
"de": "Kölnplan des Arnold Mercator",
"en": "Mercator’s Map of Cologne"
}
}
]
},
{
"id": "",
"title": {
"de": "Sammlungen",
"en": "Collections",
"it": "Collezioni"
},
"children": [
{
"id": "antiksammlberlin",
"title": {
"de": "Antikensammlung der Staatlichen Museen zu Berlin",
"en": "Antiquities Collection of the Berlin State Museums",
"it": "Collezione di antichità del Museo statale di Berlino"
}
},
{
"id": "skulpberlinantik",
"title": {
"de": "Die Skulpturen der Berliner Antikensammlung",
"en": "Berlin Sculpture-Network - contextualization and translation of ancient sculpture",
"it": "Le sculture della Berliner Antikensammlung"
}
},
{
"id": "berlinsamml",
"title": {
"de": "Katalog der Gipsabgüsse nach griechisch-römischen Skulpturen in Berliner Sammlungen",
"en": "Image database of the Cast Collection of Ancient Sculpture in Berlin",
"it": "Database delle immagini della Collezione di riproduzioni di scultura antica di Berlino"
}
},
{
"id": "sammlakakunst",
"title": {
"de": "Abgußsammlung Bonn",
"en": "Plaster Cast Collection Bonn",
"it": "Collezione dei calchi di sculture antiche Bonn"
}
},
{
"id": "sammlsaarbr",
"title": {
"de": "Abgußsammlung Saarbrücken",
"en": "Cast collection Saarbrücken"
}
},
{
"id": "schlossfulda",
"title": {
"de": "Schloß Fasanerie (Adolphseck) bei Fulda",
"en": "Fasanerie Castle (Adolphseck) near Fulda"
}
},
{
"id": "gipsleipzigsamml",
"title": {
"de": "Antikenmuseum der Universität Leipzig",
"en": "Museum of Antiquities of the Leipzig University"
}
},
{
"id": "oppenheim",
"title": {
"de": "Die Fotosammlung Max von Oppenheim",
"en": "The Max von Oppenheim photo collection"
}
},
{
"id": "stendal",
"title": {
"de": "Gemälde- und Grafiksammlung Stendal",
"en": "The Stendal Collection of Paintings and Drawings"
}
},
{
"id": "katalogskulpthess",
"title": {
"de": "Archäologisches Museum Thessaloniki",
"en": "Archaeological Museum of Thessaloniki"
}
},
{
"id": "kossack",
"title": {
"de": "Nachlass Georg Kossack",
"en": "Bequests of Georg Kossack"
}
},
{
"id": "villaWolkonsky",
"title": {
"de": "Die Antikensammlung der Villa Wolkonsky (Rom)",
"en": "The Antiquities Collection of Villa Wolkonsky (Rome)",
"it": "La collezione di antichità della Villa Wolkonsky (Roma)"
}
},
{
"id": "antikeplastik",
"title": {
"de": "Antike Plastik 5.0://",
"en": "Antike Plastik 5.0://"
}
},
{
"id": "fotothekmuenchen",
"title": {
"de": "Fotothek München",
"en": "Fotothek Munich"
},
"hidden": false
},
{
"id": "hinkel",
"title": {
"de": "Das Archiv von Friedrich W. Hinkel",
"en": "The Archive of Friedrich W. Hinkel",
"ar": "أرشيف فريدريخ ڤ. هِنكل بشكلٍ رقمي"
}
},
{
"id": "hinkel_ams",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": "نظام AMS"
},
"hidden": true
},
{
"id": "hinkel_foto-dia",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": "مجموعة الصور والشرائح الشفّافة"
},
"hidden": true
},
{
"id": "hinkel_karteikarten",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": "بطاقات الفهرسة"
},
"hidden": true
},
{
"id": "hinkel_karten",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": "الخرائط الطوبوغرافية"
},
"hidden": true
},
{
"id": "hinkel_map",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": "Hinkel"
},
"hidden": true
},
{
"id": "hinkel_wms",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": " مجموعات المواد العلمية (WMS) الموجودة في أرشيف فريدريخ ڤ. هِنكل"
},
"hidden": true
},
{
"id": "hinkel_zeichnungen",
"title": {
"de": "Hinkel",
"en": "Hinkel",
"ar": "الرسومات:"
},
"hidden": true
},
{
"id": "koester",
"title": {
"de": "Das Milet Archiv von Reinhard Köster",
"en": "The Milet Archive of Reinhard Köster"
}
},
{
"id": "tuna_el_gebel",
"title": {
"de": "Feiern mit den Toten. Raumkonzepte und Bestattungsrituale in der Petosiris-Nekropole von Tuna el-Gebel",
"en": "Celebrating with the dead. Room concepts and funerary rituals in the Petosiris necropolis of Tuna el-Gebel"
}
},
{
"id": "abguesseMuenchen",
"title": {
"de": "Münchener Abguss Sammlung",
"en": "Plaster Cast Collection Munich"
}
},
{
"id": "teheran_digital",
"title": {
"de": "Das Archiv der Außenstelle Teheran des Deutschen Archäologischen Instituts",
"en": "The Archive of the Tehran branch of the German Archaeological Institute"
}
}
]
},
{
"id": "",
"title": {
"de": "Sonstige Projekte",
"en": "Other Projects",
"it": "Altri progetti"
},
"children": [
{
"id": "ariadne",
"title": {
"de": "ARIADNE - The Way Forward to Digital Archaeology in Europe",
"en": "ARIADNE - The Way Forward to Digital Archaeology in Europe"
}
},
{
"id": "steindorff",
"title": {
"de": "Der Ägyptologe Georg Steindorff: Ein Briefnachlass und dessen wissenschaftsgeschichtliche Erforschung",
"en": "The egyptologist Georg Steindorff: A heritage in letters and its scientific exploration"
}
},
{
"id": "syrher",
"title": {
"de": "Syrian Heritage Archive Project",
"en": "Syrian Heritage Archive Project",
"ar": "إنشاء سجلّ حضاري رقمي لسورية"
}
},
{
"id": "nara",
"title": {
"de": "North African Research Archive (NARA)",
"en": "North African Research Archive (NARA)",
"fr": "North African Research Archive (NARA)"
}
},
{
"id": "rakob",
"title": {
"de": "Nachlass von Friedrich Rakob",
"en": "Friedrich Rakob’s Bequest",
"fr": "Fonds Friedrich Rakob"
}
},
{
"id": "analysearachne",
"title": {
"de": "Analyse zur Arachne-Nutzung",
"en": "Analyse zur Arachne-Nutzung",
"it": "Analisi dell'utilizzo di Arachne"
}
},
{
"id": "afrarchcologne",
"title": {
"de": "African Archaeology Archive Cologne",
"en": "African Archaeology Archive Cologne",
"it": "Archivio archeologico africano di Colonia"
}
},
{
"id": "preussdenk",
"title": {
"de": "Die preußische Denkmalpflege in der Provinz Brandenburg/Berlin",
"en": "Prussian monuments in the province of Brandenburg/Berlin between 1860/70 and 1918"
}
},
{
"id": "carare",
"title": {
"de": "CARARE",
"en": "CARARE"
}
},
{
"id": "chronoi",
"title": {
"de": "Chronoi: Multilingualismus der Zeit",
"en": "Chronoi: the multilignualism of time"
}
},
{
"id": "databasepausanias",
"title": {
"de": "Datenbank - Bildwerke bei Pausanias",
"en": "Database “Images in Pausanias”"
}
},
{
"id": "rwwa",
"title": {
"de": "Rheinisch-Westfälisches Wirtschaftsarchiv",
"en": "Foundation of the Rhine-Westphalian Economy Archive"
}
},
{
"id": "cilopac",
"title": {
"de": "CIL Open Access",
"en": "CIL Open Access"
}
},
{
"id": "spacodices",
"title": {
"de": "Spanische Codices",
"en": "Spanish Codices"
}
},
{
"id": "hellespont",
"title": {
"de": "Das Hellespont-Projekt",
"en": "The Hellespont Project"
}
},
{
"id": "grako",
"title": {
"de": "Werkstätten vormoderner Wirtschaftsräume",
"en": "Craft production sites of pre-modern economies"
}
},
{
"id": "jtfourplace",
"title": {
"de": "Our Place: Our Place in the World",
"en": "Our Place: Our Place in the World"
}
},
{
"id": "ceramegypt",
"title": {
"en": "CeramEgypt – Pottery production and consumption in Ptolemaic-Roman Egypt"
}
},
{
"id": "siracusa_citta_e_mura",
"title": {
"de": "Siracusa - La città e le sue mura",
"en": "Siracusa - La città e le sue mura",
"it": "Siracusa - La città e le sue mura"
}
},
{
"id": "casadelfauno",
"title": {
"de": "Casa del Fauno"
},
"hidden": true
},
{
"id": "palmyra-gis",
"title": {
"de": "Palmyra GIS - Digitaler Kulturerhalt in Syrien"
},
"hidden": true
},
{
"id": "tuna",
"title": {
"de": "Grabbauten in Tuna el-Gebel"
},
"hidden": true
}
]
},
{
"id": "",
"title": {
"de": "Digitale Publikationen",
"en": "Digital publications",
"it": "Pubblicazioni digitali"
},
"children": [
{
"id": "wohnkulturOstia",
"title": {
"de": "Wohnkultur im spätantiken Ostia",
"en": "The culture of living in Late Antique Ostia"
}
},
{
"id": "basilaemil",
"title": {
"de": "Die Basilica Aemilia",
"en": "The Basilica Aemilia",
"it": "La basilica Aemilia"
}
},
{
"id": "kanatha",
"title": {
"de": "Die Heiligtümer in Kanatha",
"en": "Sanctuaries in Kanatha"
}
},
{
"id": "claracstart",
"title": {
"de": "Clarac, Musée de sculpture",
"en": "Clarac, Musée de sculpture"
}
},
{
"id": "museomaff",
"title": {
"de": "Das Museo Maffeiano als Online-Edition",
"en": "The Museo Maffeiano online-edition"
}
},
{
"id": "corpusantsark",
"title": {
"de": "Corpus der Antiken Sarkophage",
"en": "Corpus of Ancient Sarcophagi"
}
},
{
"id": "corpusminmyk",
"title": {
"de": "Corpus der minoischen und mykenischen Siegel",
"en": "Corpus of Minoan and Mycenaean Seals",
"it": "Corpus dei sigilli minoici e micenei"
}
},
{
"id": "langwiss",
"title": {
"de": "Jörn Lang, “Mit Wissen geschmückt?”. Zur bildlichen Rezeption griechischer Dichter und Denker in der römischen Lebenswelt (Wiesbaden 2012)",
"en": "Jörn Lang,Figurative Reception of Greek Poets and Philosophers"
}
},
{
"id": "roseterra",
"title": {
"de": "H. Rose, Die römischen Terrakottamasken in den Nordwestprovinzen. MAR XXXVII (2006)",
"en": "H. Rose, Roman Terracotta Masks in the Northwestern Provinces (Die römischen Terrakottamasken in den Nordwestprovinzen. MAR XXXVII)"
}
},
{
"id": "katalogskulpthess",
"title": {
"de": "Katalog der Skulpturen im Archäologischen Museum von Thessaloniki",
"en": "Katalog der Skulpturen im Archäologischen Museum von Thessaloniki"
}
},
{
"id": "hafen",
"title": {
"de": "Torsten Bendschus – Stefan Feuser, Bilder und Vorstellungen römischer Hafenanlagen. Gattungsübergreifende Dokumentation und kontextualisierte Analyse römischer Hafendarstellungen",
"en": "Torsten Bendschus – Stefan Feuser, Images and Imaginations of Roman Harbors. Documentation and contextualized analysis of Roman harbor depictions"
}
},
{
"id": "centurions",
"title": {
"de": "U. Stockinger, Dressed to Drill. The Evidence of Funerary Monuments on Roman Centurions‘ Equipment. Journal of Roman Military Equipment Studies 18, 2017",
"en": "U. Stockinger, Dressed to Drill. The Evidence of Funerary Monuments on Roman Centurions‘ Equipment. Journal of Roman Military Equipment Studies 18, 2017"
}
},
{
"id": "spornsiegel",
"title": {
"de": "K. Sporn (Hrsg.), Spiegel Europas. Die Antikensammlung im Suermondt-Ludwig-Museum",
"en": "K. Sporn (ed.), Spiegel Europas. Die Antikensammlung im Suermondt-Ludwig-Museum"
}
},
{
"id": "resafa",
"title": {
"de": "C. Hof, Die Stadtmauer, Resafa 9, 1, Resafa – Sergiupolis/Rusafat Hisham (Wiesbaden 2020). Digitale Supplemente",
"en": "C. Hof, Die Stadtmauer, Resafa 9, 1, Resafa – Sergiupolis/Rusafat Hisham (Wiesbaden 2020). Digitale Supplemente"
}
}
]
},
{
"id": "",
"title": {
"de": "Digitale Kataloge",
"en": "Digital catalogs",
"it": "cataloghi digitali"
},
"children": [
{
"id": "paliliastart",
"title": {
"de": "Palilia",
"en": "Palilia",
"it": "Palilia"
},
"children": [
{
"id": "palilia20",
"title": {
"de": "Palilia 20: Alexandra W. Busch, Militär in Rom. Militärische und paramilitärische Einheiten im kaiserzeitlichen Stadtbild (2012)",
"en": "Palilia 20: Alexandra W. Busch, Military in Rome. Military and paramilitary units in the imperial cityscape (2012)",
"it": "Palilia 20: Alexandra W. Busch, Militär in Rom. Militärische und paramilitärische Einheiten im kaiserzeitlichen Stadtbild (2012)"
}
},
{
"id": "lippsbasilica",
"title": {
"de": "Palilia 24: Johannes Lipps, Die Basilica Aemilia am Forum Romanum. Der kaiserzeitliche Bau und seine Ornamentik (Diss. Köln 2008)",
"en": "Palilia 24: Johannes Lipps, The Basilica Aemilia on the Forum Romanum. The building and its ornamentation in Imperial times (Dissertation, Cologne 2008)"
}
},
{
"id": "palilia25",
"title": {
"de": "Palilia 25: M. Tombrägel, Die republikanischen Otiumvillen von Tivoli (Wiesbaden 2012) ",
"en": "Palilia 25: M. Tombrägel, The Republican otium-villas at Tivoli (Wiesbaden 2012)",
"it": "Palilia 25: M. Tombrägel, Die republikanischen Otiumvillen von Tivoli (Wiesbaden 2012)"
}
},
{
"id": "palilia26",
"title": {
"de": "Palilia 26: Wolfgang Ehrhardt, Dekorations- und Wohnkontext. Beseitigung, Restaurierung und Konservierung von Wandbemalungen in den kampanischen Antikenstätten",
"en": "Palilia 26: Wolfgang Ehrhardt, Decorative and residential context. Removal, restoration and preservation of wall paintings in the Campanian antique sites",
"it": "Palilia 26: Wolfgang Ehrhardt, Dekorations- und Wohnkontext. Beseitigung, Restaurierung und Konservierung von Wandbemalungen in den kampanischen Antikenstätten"
}
},
{
"id": "palilia32",
"title": {
"de": "Palilia 32: D. Doepner, ›Große Statuetten‹ in Medma (Kalabrien) (Wiesbaden 2020). Erweiterter Online-Katalog"
}
},
{
"id": "palilia33"
},
{
"id": "sonderschriften23"
}
]
},
{
"id": "rmstart",
"title": {
"de": "Mitteilungen des Deutschen Archäologischen Instituts, Römische Abteilung",
"en": "Communications from the German Archaeological Institute, Roman Department",
"it": "Dichiarazioni dell'Istituto Archeologico tedesco, Dipartimento di Roma"
},
"children": [
{
"id": "rm121",
"title": {
"de": "Band 121, 2015: I bolli laterizi delle residenze imperiali sul Palatino a Roma",
"en": "Volume 121, 2015: I bolli laterizi delle residenze imperiali sul Palatino a Roma",
"it": "Volume 121, 2015: I bolli laterizi delle residenze imperiali sul Palatino a Roma"
}
},
{
"id": "rm125minervamedica",
"title": {
"de": "Band 125, 2019: Eva Staurenghi, Le ricerche di Friedrich Wilhelm Deichmann e dell'Istituto Archeologico Germanico di Roma sul cosiddetto Tempio di Minerva Medica nell'ambito del progetto degli Spätrömische Rundbauten von Rom und Latium",
"it": "Volume 125, 2019: Eva Staurenghi, Le ricerche di Friedrich Wilhelm Deichmann e dell'Istituto Archeologico Germanico di Roma sul cosiddetto Tempio di Minerva Medica nell'ambito del progetto degli Spätrömische Rundbauten von Rom und Latium"
}
},
{
"id": "rm125vignacodini",
"title": {
"de": "Band 125, 2019: Antonello Vilella, Inedite (e dimenticate) iscrizioni parietali dal colombario di Vigna Codini III",
"it": "Volume 125, 2019: Antonello Vilella, Inedite (e dimenticate) iscrizioni parietali dal colombario di Vigna Codini III"
}
},
{
"id": "rm127_Pasieka-Franceschini",
"title": {
"de": "RM 127.2021: M. Franceschini – Paul P. Pasieka, 'da niuna cura accompagnato fuori che quella di scoprire antiche cose'. Nuovi dati sugli scavi Campanari a Vulci (Rapporti di scavo inediti, 09.11.1835–28.05.1836)",
"it": "RM 127.2021: M. Franceschini – Paul P. Pasieka, 'da niuna cura accompagnato fuori che quella di scoprire antiche cose'. Nuovi dati sugli scavi Campanari a Vulci (Rapporti di scavo inediti, 09.11.1835–28.05.1836)"
}
}
]
},
{
"id": "pergamenischeforschungen17",
"title": {
"de": "S. Kielau, Terrakotten aus Pergamon. Tonfiguren und -objekte aus der Wohnstadt am Südhang der Akropolis und von weiteren Fundorten, PF 17 (Berlin 2018). Erweiterter Online-Katalog",
"en": "S. Kielau, Terrakotten aus Pergamon. Tonfiguren und -objekte aus der Wohnstadt am Südhang der Akropolis und von weiteren Fundorten, PF 17 (Berlin 2018). Erweiterter Online-Katalog"
},
"hidden": false
},
{
"id": "pergamenischeforschungen19",
"title": {
"de": "E. Laufer, Architektur unter den Attaliden. Pergamon und die Städte zwischen herrscherlichem Bauengagement und Lokaltradition, PF 19 (Berlin 2021). Online-Katalog",
"en": "E. Laufer, Architektur unter den Attaliden. Pergamon und die Städte zwischen herrscherlichem Bauengagement und Lokaltradition, PF 19 (Berlin 2021). Online-Katalog"
},
"hidden": true
},
{
"id": "ayamonte",
"title": {
"de": "Die Phönizische Nekropole von Ayamonte",
"en": "The Phoenician Necropolis of Ayamonte",
"es": "La necrópolis fenico di Ayamonte"
},
"hidden": true
},
{
"id": "databaseaksum1906",
"title": {
"de": "Die Deutsche Aksum-Expedition 1906"
},
"hidden": true
},
{
"id": "naher",
"title": {
"de": "North Africa Heritage Archive"
},
"hidden": true
},
{
"id": "faak16",
"title": {
"de": "C. Mader, Sea Shells in the Mountains and Llamas on the Coast: The Economy of the Paracas Culture (800 to 200 BC) in Southern Peru",
"en": "C. Mader, Sea Shells in the Mountains and Llamas on the Coast: The Economy of the Paracas Culture (800 to 200 BC) in Southern Peru"
},
"hidden": false
},
{
"id": "faak18",
"title": {
"de": "L. Gilabert Sansalvador, La bóveda en la arquitectura maya (Bonn 2021). Catálogo de bóvedas mayas",
"en": "L. Gilabert Sansalvador, La bóveda en la arquitectura maya (Bonn 2021). Catálogo de bóvedas mayas",
"es": "L. Gilabert Sansalvador, La bóveda en la arquitectura maya (Bonn 2021). Catálogo de bóvedas mayas"
},
"hidden": false
},
{
"id": "AA_2019_1",
"title": {
"de": "A. Schachner, Die Ausgrabungen in Boğazköy-Ḫattuša 2018, AA 2019/1, § 1–147. Supplement",
"en": "A. Schachner, The Excavations at Boğazköy-Ḫattuša in 2018, AA 2019/1, § 1–147. Supplement"
},
"hidden": false
},
{
"id": "AA_2019_2",
"title": {
"de": "A. Schachner, Die Ausgrabungen in Boğazköy-Ḫattuša 2019, AA 2020/1, § 1–111. Supplement",
"en": "A. Schachner, The Excavations at Boğazköy-Ḫattuša in 2019, AA 2020/1, § 1–111. Supplement"
},
"hidden": false
},
{
"id": "JOGA_2020_Pruemers",
"title": {
"de": "H. Prümers, The original of Max Uhle´s map of Pachacamac in Quito, JoGA, § 1–33. Supplement",
"en": "H. Prümers, The original of Max Uhle´s map of Pachacamac in Quito, JoGA, § 1–33. Supplement"
},
"hidden": false
},
{
"id": "JOGA_2020_Fecher",
"title": {
"de": "F. Fecher et al., The ceramic finds from Guadalupe, Honduras: Optimizing archaeological documentation with a combination of digital and analog techniques, JoGA, § 1–53. Supplement",
"en": "F. Fecher et al., The ceramic finds from Guadalupe, Honduras: Optimizing archaeological documentation with a combination of digital and analog techniques, JoGA, § 1–53. Supplement"
},
"hidden": false
},
{
"id": "JOGA_2020_Lange",
"title": {
"de": "P. Lange, Das Nepal Temple Project: Archäologie eines Hindu-Tempels, JoGA, § 1–29. Supplement",
"en": "P. Lange, Das Nepal Temple Project: Archäologie eines Hindu-Tempels, JoGA, § 1–29. Supplement"
},
"hidden": false
},
{
"id": "E-FB-2020-2-Rosenow",
"title": {
"de": "D. Rosenow, Dahschur, Ägypten – Die Arbeiten der Herbstkampagne 2019 und Frühjahrskampagne 2020, eDAI-F 2020-2, § 1–18. Digital Supplement",
"en": "D. Rosenow, Dahschur, Ägypten – Die Arbeiten der Herbstkampagne 2019 und Frühjahrskampagne 2020, eDAI-F 2020-2, § 1–18. Digital Supplement"
},
"hidden": false
},
{
"id": "inden1",
"title": {
"de": "R. Kuper, Inden 1. Eine Siedlung der Rössener Kultur im Rheinland. Felddokumentation 1965-67"
},
"hidden": false
},
{
"id": "mar41",
"title": {
"de": "MAR 41: A. Reinhardt, Reproduktion und Bild. Zur Wiederholung und Vervielfältigung von Reliefs in römischer Zeit, MAR XLI (Wiesbaden 2019). Online-Katalog"
},
"hidden": false
},
{
"id": "milet_V4",
"title": {
"de": "Milet V 4: G. P. Schaus, Funde aus Milet Teil 4, Laconian and Chian Fine Ware Pottery at Miletus. Milet V 4 (Wiesbaden 2020). Digitaler Katalog",
"en": "Milet V 4: G. P. Schaus, Funde aus Milet Teil 4, Laconian and Chian Fine Ware Pottery at Miletus. Milet V 4 (Wiesbaden 2020). Digital Catalog"
},
"hidden": false
},
{
"id": "mumienmasken",
"title": {
"de": "A. Müller, Ägyptens schöne Gesichter. Die Mumienmasken der römischen Kaiserzeit und ihre Funktion im Totenritual, AF 39 (Wiesbaden 2021). Datenbank-Katalog",
"de": "A. Müller, Ägyptens schöne Gesichter. Die Mumienmasken der römischen Kaiserzeit und ihre Funktion im Totenritual, AF 39 (Wiesbaden 2021). Database-Catalog"
},
"hidden": false
},
{
"id": "blankenheim",
"title": {
"de": "P. Noelke – N. Hanel - P. Pauly, Die Antiken der Grafen von Manderscheid-Blankenheim. Kontext, Schicksal und Kommentierung einer rheinischen Sammlung der Zeit des Humanismus (Onlinekatalog).",
"en": "P. Noelke – N. Hanel - P. Pauly, Die Antiken der Grafen von Manderscheid-Blankenheim. Kontext, Schicksal und Kommentierung einer rheinischen Sammlung der Zeit des Humanismus (Onlinekatalog)."
},
"hidden": false
},
{
"id": "boha29",
"title": {
"de": "S. Herbordt – A. von Wickede, Kleinfunde aus der Oberstadt von Hattusa. Das zentrale Tempelviertel und die Tempelviertel am Königs- und Löwentor, Boğazköy-Ḫattuša 29 (Berlin 2021). Erweiterter Online-Katalog",
"en": "S. Herbordt – A. von Wickede, Kleinfunde aus der Oberstadt von Hattusa. Das zentrale Tempelviertel und die Tempelviertel am Königs- und Löwentor, Boğazköy-Ḫattuša 29 (Berlin 2021). Extended Online-Catalog"
},
"hidden": false
},
{
"id": "avp17_engels",
"title": {
"de": "B. Engels, Das Grottenheiligtum am Osthang von Pergamon. Eine Mikrostudie zur späthellenistischen Kultpraxis, Altertümer von Pergamon 17 (Berlin 2022). Erweiterter Online-Katalog",
"en": "B. Engels, Das Grottenheiligtum am Osthang von Pergamon. Eine Mikrostudie zur späthellenistischen Kultpraxis, Altertümer von Pergamon 17 (Berlin 2022). Extended Online-Catalog"
},
"hidden": false
}
]
},
{
"id": "",
"title": {
"de": "Wissenschaftliche Qualifikationsarbeiten",
"en": "Dissertations/academic final papers",
"it": "Tesi di laurea e di dottorato"
},
"children": [
{
"id": "roseterra",
"title": {
"de": "H. Rose, Die römischen Terrakottamasken in den Nordwestprovinzen. MAR XXXVII (2006)",
"en": "H. Rose, Roman Terracotta Masks in the Northwestern Provinces (Die römischen Terrakottamasken in den Nordwestprovinzen. MAR XXXVII)"
}
},
{
"id": "lipps",
"title": {
"de": "Lipps"
},