-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2212 lines (2072 loc) · 119 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>PinkFloydinVenice LOD - Home</title>
<meta content="Linked Open Data project on Pink Floyd's 1989 iconic floating concert in Venice, Italy"
name="description">
<meta content="LOD, linked open data, Pink Floyd, DHDK, Digital Humanities" name="keywords">
<!-- Favicons -->
<link href="resources/imgs/icons/favicon_prism.ico" rel="icon">
<link href="resources/imgs/icons/apple-touch-icon.ico" rel="apple-touch-icon">
<!-- Bootstrap CSS -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<!-- Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Fonts and Styles -->
<link href="https://fonts.googleapis.com/css2?family=Vesper+Libre&display=swap" rel="stylesheet">
<style>
@font-face {
font-family: Floydian;
src: url('resources/font/floyd.TTF');
}
.pinkfloyd {
font-family: Floydian;
}
.secondaryfloyd {
font-family: 'Vesper Libre', serif;
}
.colorfloyd {
color: #E3A0C1;
}
.bgfloyd {
color: #EDBFD5
}
b {
font-weight: bold;
color: black;
}
</style>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="secondaryfloyd logo"><a href="index.html">Pink F<span class="colorfloyd">LO</span>y<span
class="colorfloyd">D</span> in Venice</a></h1>
<nav id="navbar" class="pinkfloyd navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">home</a></li>
<li class="dropdown"><a href="#idea"><span>The Project</span><i class="bi bi-chevron-down"></i></a>
<ul>
<li><a class="nav-link scrollto" href="#idea">Our idea</a></li>
<li><a class="nav-link scrollto" href="#items">Items</a></li>
<li><a class="nav-link scrollto" href="#e_r_model">E/R Model</a></li>
<li class="dropdown"><a class="nav-link scrollto" href="#scouting"><span>Metadata</span> <i
class="bi bi-chevron-right"></i></a>
<ul>
<li><a class="nav-link scrollto" href="#scouting">Scouting</a></li>
<li><a class="nav-link scrollto" href="#alignment">Alignment</a></li>
</ul>
</li>
<li class="dropdown"><a class="nav-link scrollto" href="#theoretical_model"><span>Models</span> <i
class="bi bi-chevron-right"></i></a>
<ul>
<li><a class="nav-link scrollto" href="#theoretical_model">Theoretical</a></li>
<li><a class="nav-link scrollto" href="#conceptual_model">Conceptual</a></li>
</ul>
</li>
<li class="dropdown"><a class="nav-link scrollto" href="#rdf_repr"><span>RDF Data</span> <i
class="bi bi-chevron-right"></i></a>
<ul>
<li><a class="nav-link scrollto" href="#rdf_repr">Representation</a></li>
<li><a class="nav-link scrollto" href="#rdf_viz">Visualization</a></li>
<li><a class="nav-link scrollto" href="uri.html">URIs</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="nav-link scrollto" href="aboutus.html">About us</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<div id="hero" class="hero route bg-image"
style="background-image: url(resources/imgs/photos/01%20background_lagoon.jpg)">
<div class="overlay-itro"></div>
<div class="hero-content display-table">
<div class="table-cell">
<div class="container">
<!--<p class="display-6 color-d">Hello, world!</p>-->
<h1 class="pinkfloyd hero-title mb-4"><span class="colorfloyd">Pink F<span
style="font-size: 150px;">lo</span>y<span style="font-size: 150px;">d</span><br> in Venice</span></h1>
<p class="secondaryfloyd colorfloyd hero-subtitle"><span class="typed"
data-typed-items="a linked open data project"></span></p>
<!-- <p class="pt-3"><a class="btn btn-primary btn js-scroll px-4" href="#about" role="button">Learn More</a></p> -->
</div>
</div>
</div>
</div>
<!-- End Hero Section -->
<main id="main">
<!-- ======= Idea Section ======= -->
<section id="idea" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div id="idea_description" class="col-lg-6">
<div class="col">
<div class="title-box-2">
<h3 class="pinkfloyd title-a title-left" style="height:50px">
Our idea
</h3>
</div>
<div class="secondaryfloyd">
<p class="lead">
In <b>1989</b>, in occasion of one of Venice's most important festivals, the "Festa del
Redentore",
celebrated every year on the third Sunday of July, a young entrepeneur by the name of Fran
Tomasi managed to book the second-to-last night of the <b>Pink Floyd</b>'s European Tour for
their new
album - <em>A Momentary Lapse Of Reason</em> - in the UNESCO site of the <b>Venetian Lagoon</b>.
</p>
<p class="lead">
The idea was revolutionary; the band would play on a <b>floating stage</b>, creating a magical
atmosphere but also a significant struggle for the historic city's administration.
</p>
<p class="lead">
The number of people attending the concert was huge: over <b>200 thousand people</b> came to the
<em>Serenissima</em>,
making it one of the biggest musical events in Italian history. The concert was also
<b>broadcast</b>
all over
the world, increasing the already incredible amount of people witnessing this piece of music
history.
The event came at a price, as the city council was blamed for the aftermath of the
concert and forced to resign due to the public opinion’s increasing pressure.
</p>
<p class="lead">
We think this event is a <b>key moment</b> in our recent history, as it intertwines <b>music</b>
with such an
important <b>historical site</b>. This is why we created this Linked Open Data project: Pink
Floyd in
Venice LOD.
</p>
</div>
</div>
</div>
<div id="idea_image" class="col-lg-6 justify-content-center">
<div class="col">
<img src="resources/imgs/photos/02%20background_redentore.jpg" class="img-fluid" width="500px"
alt="A poster for the concert">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Idea Section -->
<!-- ======= Counter parallax Section ======= -->
<div class="section-counter paralax-mf bg-image"
style="background-image: url(resources/imgs/photos/03%20background_people.jpeg)">
<div class="overlay-mf"></div>
<div class="container position-relative">
<div class="row" style="height: 300px">
<div class="col-sm-4 col-lg-4">
<div class="counter-box counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-person-plus"></i></span>
</div>
<div class="pinkfloyd counter-num">
<p data-purecounter-start="0" data-purecounter-end="200" data-purecounter-duration="1.5"
class="counter purecounter"></p>
<p>k</p>
<span class="pinkfloyd">People attending</span>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-tv"></i></span>
</div>
<div class="pinkfloyd counter-num">
<p data-purecounter-start="0" data-purecounter-end="100" data-purecounter-duration="1.5"
class="counter purecounter"></p>
<p>mln</p>
<span class="pinkfloyd">Tv audience</span>
</div>
</div>
</div>
<div class="col-sm-4 col-lg-4">
<div class="counter-box pt-4 pt-md-0">
<div class="counter-ico">
<span class="ico-circle"><i class="bi bi-music-note-list"></i></span>
</div>
<div class="pinkfloyd counter-num">
<p data-purecounter-start="0" data-purecounter-end="14" data-purecounter-duration="1.5"
class="counter purecounter"></p>
<p>songs</p>
<span class="pinkfloyd">Setlist</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Counter Section -->
<!-- ======= Items Section ======= -->
<section id="items" class="portfolio-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div id="items_header" class="row">
<div class="col-sm-12">
<div class="title-box text-center">
<h3 class="pinkfloyd title-a">
Items
</h3>
<div class="line-mf" style="margin-top: 30px; margin-bottom:50px;"></div>
<p class="secondaryfloyd lead">
For our project we were asked to find <b>ten items</b> held by cultural institutions. These items
had to somehow be linked
to our main <b><a href="#idea">idea</a></b>. We found many candidates, but only chose the
following ten by trying to select
items as different as possible in terms of <b>purpose</b> and <b>provenance</b>. After completing
our project,
we came back to them and
thoroughly described them with our new defined <b><a href="#conceptual_model">schemas</a></b>.
Each item
has a link under its card
to its specific description, and the page with all metadata can be found <b><a
href="items.html">here</a></b>.
These are our ten items:
</p>
<div class="line-mf" style="margin-top: 30px;"></div>
</div>
</div>
</div>
<div id="items_content" class="row">
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/article_europeana.jpeg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/article_europeana.jpeg" alt="Newspaper article"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a href="http://digital.sturzo.it/spogliogenerale/1989/19890725/46/10/crisio">
<h2 class="pinkfloyd w-title">Article</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">Newspaper article on the concert's aftermath
and the
public's outrage at Venice's conditions.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#bigmuffpedal" class="scrollto">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/thewall_unicatt.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/thewall_unicatt.jpg" alt="The Wall, Pink Floyd movie"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a href="http://opac.unicatt.it/record=b2065436~S1*ita">
<h2 class="pinkfloyd w-title">Movie</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">The iconic movie "The Wall", directed by Alan
Parker, portraying Pink Floyd's omonimous album's sounds in film in a highly metaphorical
yet
tangible way.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#thewall">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/map_libraryofcongress.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/map_libraryofcongress.jpg" alt="Map of Venice" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a href="https://www.loc.gov/item/2001620482">
<h2 class="pinkfloyd w-title">Map</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">A detailed map of the Venice area, with a view
on
the lagoon where the concert took place.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#map">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/boardgame_worldcat.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/boardgame_worldcat.jpg" alt="Boardgame about Venice"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a
href="https://miami-primo.hosted.exlibrisgroup.com/permalink/f/1bd16ni/01UOML_ALMA21292548110002976">
<h2 class="pinkfloyd w-title">Boardgame</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">A Venice-themed boardgame on the gloomy future
of a
future sunken city: players become art collectors looking for valuable treasures.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#boardgame">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/postcard_alinari.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/postcard_alinari.jpg" alt="Postcard of Venice" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a
href="https://www.alinari.it/it/esplora-immagini?isPostBack=1&page=0&step=64&position=4&viewtype=grid&id_dossier=&showPageInfo=1&getCodiciSearch=0&query=venezia+cartolina&paginate_pageNum=1&view=&datafotoda=&datafotoa=&querywe=&fondo=&artista=&fotografo=&personaggio=&luogo=&periodostile=&evento=&inventario=&elencocodici=&tecnica=&tipooggetto=&orderby=default&pageNumber=1">
<h2 class="pinkfloyd w-title">Postcard</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">A historical postcard, depicting the "Riva
Schiavoni" waterfront on St. Mark's Basin as it was at the beginning of the XX
Century.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#postcard">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/painting_fzeri.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/painting_fzeri.jpg" alt="Painting of Venice" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a
href="http://catalogo.fondazionezeri.unibo.it/scheda/opera/104513/Brass%20Italico%2C%20Veduta%20di%20Venezia%20con%20il%20ponte%20votivo%20durante%20la%20festa%20del%20Redentore">
<h2 class="pinkfloyd w-title">Painting <span style="font-size:small;">(Picture of)</span>
</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">An astonishing painting, depicting Venice and
its
"ponte votivo" as the city is finalising the preparations for the "Redeemer's
festival".</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#picredentore">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/songbook_netherlands.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/songbook_netherlands.jpg"
alt="Songbook for a momentary lapse of reason album" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a href="https://zoeken.oba.nl/resolver/ppn/103542213/?itemid=%7Coba-catalogus%7C560755">
<h2 class="pinkfloyd w-title">Songbook</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">The official songbook for the tour's omonimous
album: A momentary lapse of reason.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#songbookmlor">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/album_musicbrainz.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/album_musicbrainz.jpg" alt="A momentary lapse of reason album"
class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a href="https://musicbrainz.org/release-group/4940b8aa-898b-3e60-9992-94e073bab6f6">
<h2 class="pinkfloyd w-title">Album</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">"A momentary lapse of reason", the album whose
tour
brought the Pink Floyd to Venice for a truly historic event.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#albummlor">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/pedal_urbana.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/pedal_urbana.jpg" alt="Big Muff guitar pedal" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a href="https://cucatalog.org/polaris/search/title.aspx?ctx=6.1033.0.0.1&pos=1&cn=988437">
<h2 class="pinkfloyd w-title">Guitar pedal</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">A tangible piece of music history, the "Big
Muff"
pedal is a must: from Jimi Hendrix, to Santana, to the Pink Floyd, it has defined the
sound of
rock guitar.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#bigmuffpedal">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="work-box">
<a href="resources/imgs/items/book_venicesbn.jpg" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<div class="work-img">
<img src="resources/imgs/items/book_venicesbn.jpg" alt="Book about Venice" class="img-fluid">
</div>
</a>
<div class="work-content">
<div class="row">
<div class="col-sm-12 text-center">
<a
href="https://polovea.sebina.it/SebinaOpac/resource/le-concert-pink-floyd-a-venise/VEA2772501">
<h2 class="pinkfloyd w-title">Book</h2>
</a>
<div class="card-description">
<span class="secondaryfloyd card-description">A book on the "floating concert" in Venice,
detailing all controversies, between the strict sound system rules and the aftermath of
the
concert.</span>
</div>
</div>
</div>
</div>
<div class="card-footer text-center">
<div class="post-author">
<a href="items.html#bookconcertvenise">
<span class="secondaryfloyd author">Metadata</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Items Section -->
<!-- ======= Parallax II Section ======= -->
<div class="section-counter paralax-mf bg-image"
style="background-image: url(resources/imgs/photos/04%20background_palco.webp)">
<div class="overlay-mf"></div>
<div class="container position-relative">
<div class="row" style="height: 300px">
</div>
</div>
</div>
<!-- End Parallax Section -->
<!-- ======= E/R Section ======= -->
<section id="e_r_model" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="title-box-2">
<h3 class="pinkfloyd title-a text-center">
E/R Model
</h3>
</div>
<div class="line-mf" style="margin-bottom: 40px;"></div>
<div class="secondaryfloyd text-center">
<p class="lead">
What follows is our representation of the <b>Entity-Relationship model</b> of the event. The main
focus of
the model is the concert, placed at the centre of the map. This concept is linked to four main
entities: <b>Venice and its Lagoon</b>, the <b>Festa del Redentore</b>, the tour for the album <b>A
Momentary
Lapse of Reason</b> and of course the band, <b>Pink Floyd</b>. <br>
All chosen items are then linked to one or more entities. While building the model, we noticed
there were two types of links, and we decided to distinguish between main and secondary links
respectively
with <span style="color:black; font-style: oblique;">black</span> and <span
style="color:grey; font-style: oblique;">grey</span> arrows.
</p>
</div>
</div>
<div class="line-mf" style="margin-top:30px;margin-bottom: 40px;"></div>
<div class="row" style="margin-top: 20px;">
<div class="col">
<div class="img-fluid">
<img class="img-fluid" src="resources/imgs/disegnetti/E-R_model.svg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End E/R Section -->
<!-- ======= Parallax III Section ======= -->
<div class="section-counter paralax-mf bg-image"
style="background-image: url(resources/imgs/photos/05%20backrgound_gondola_palco.jpg)">
<div class="overlay-mf"></div>
<div class="container position-relative">
<div class="row" style="height: 300px">
</div>
</div>
</div>
<!-- End Parallax Section -->
<!-- ======= Metadata Scouting Section ======= -->
<section id="scouting" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="title-box-2">
<h3 class="pinkfloyd title-a text-center">
Metadata Scouting
</h3>
</div>
<div class="line-mf" style="margin-bottom: 40px;"></div>
<div class="secondaryfloyd text">
<p class="lead">
After creating our <a href="#e_r_model">Entity-Relationship model</a> we delved into our <a
href="#items">items</a> to identify and categorise the different <b>metadata standards</b> used by
the hosting institutions. We went back to the sources of our items and gathered <b>information</b> -
where it was available - about the standards: after that we studied each <b>schema definition</b> to
better
understand their uses and differences. Here are the main models we encountered:
</p>
<div class="line-mf" style="margin-top:40px;margin-bottom: 40px;"></div>
<p class="lead">
<ol class="lead">
<li><b><a href="https://www.loc.gov/marc/bibliographic/">Marc21</a></b> (Machine Readable
Cataloging) is a standard format for bibliographic records that
was developed by the Library of Congress (LoC). This standard is not very comprehensible by a
human eye but is very precise.</li>
<li><b><a href="http://www.loc.gov/standards/mods/">MODS</a></b> (Metadata Object Description
Schema) was also developed by the Library of Congress and is a
well-rounded, transversal standard that also mediates between the complexity of Marc21 and Dublin
Core applications. This is an XML oriented standard. </li>
<li><b><a href="https://github.com/ICCD-MiBACT/Standard-catalografici">F-ICCD</a></b> represents the
rules developed by the ICCD (Istituto Centrale per la Catalogazione
e la Documentazione) is a set of norms used to compile records about photography (F).</li>
<li><b><a href="https://musicbrainz.org/doc/MusicBrainz_XML_Meta_Data">MMD</a></b> is a metadata
standard developed by Musicbrainz to catalogue music
related objects.
This is an XML oriented standard, however it lacks features from other standards and represents
the length of items in milliseconds, that is not very comprehensible by a human eye.</li>
<li><b><a href="http://www.cidoc-crm.org">CIDOC-CRM</a></b> represents a wide-minded standard that
aims at information integration in the
different fields of cultural heritage. We decided to apply this to the postcard as it allows for a
good integration with other standards.</li>
<li><b><a href="http://soma-dev.sourceforge.net">SOMA</a></b> (Shared Online Media Archive) is a
standard used to create a shared media archives,
with the purpose of storing information of many different media. This standard also represents
length of visual and musical media in milliseconds.</li>
</ol>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Scouting Section -->
<!-- ======= Metadata Alignment Section ======= -->
<section id="alignment" class="about-mf sect-pt4 route">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="box-shadow-full">
<div class="row">
<div class="title-box-2">
<h3 class="pinkfloyd title-a text-center">
Metadata Alignment
</h3>
</div>
<div class="line-mf" style="margin-bottom: 40px;"></div>
<div class="secondaryfloyd text">
<p class="lead">
In order to make data more <b>interoperable</b>, we grouped the different <a href="#items">items</a>
in three <b>categories</b>: artefacts, textual resources and multimedia. We then analysed the
different <a href="#scouting">metadata</a> used for
each category from four points of view: <span style="color:#6C8EBF;">Who</span>, <span
style="color:#D6B656;">When</span>,
<span style="color:#B85450;">Where</span>, <span style="color:#82B366;">What</span>. In many cases
the metadata used allows a sufficient interoperability between
different standards referred to items with similar characteristics; in general, we chose to use
<b>Dublin Core</b> (dc) as a reference, as it represents one of the most widely used standards.
</p>
</div>
</div>
<div class="row">
<div class="column justify-content-center">
<div class="line-mf" style="margin-top:20px;margin-bottom: 20px;"></div>
<h1 class="pinkfloyd" style="margin-bottom: 20px;">Artefacts</h1>
<ul class="secondaryfloyd" id="metadata_artefacts">
<li>
<p class="lead"><b>Who</b></p>
<table class="table table-striped">
<thead style="background-color:#DAE8FC;">
<tr>
<th>Property</th>
<th>DC/DCterms</th>
<th>MODS</th>
<th>MARC21</th>
<th>CIDOC CRM</th>
<th>F-ICCD</th>
</tr>
</thead>
<tbody>
<tr>
<td>Creator</td>
<td>dc:creator</td>
<td><name><namePart></td>
<td>100/110 (Personal/Corporate Name)<br>700 Added Entry</td>
<td>P94 has_creator <br>> E39 Actor</td>
<td>AUT</td>
</tr>
<tr>
<td>Contributor</td>
<td>dc:contributor</td>
<td><name><namePart></td>
<td>508 $a: Creation/production credits note</td>
<td>P11_had_participant <br>> E39_Actor</td>
<td>AUT</td>
</tr>
<tr>
<td>Publisher</td>
<td>dc:publisher</td>
<td><originInfo><publisher></td>
<td>260 Publication, Distribution $b</td>
<td>P14_carried_out_by <br>> E39_Actor</td>
<td>PDFN-PDFR</td>
</tr>
</tbody>
</table>
</li>
<hr>
<li>
<p class="lead secondaryfloyd"><b>When</b></p>
<table class="table table-striped">
<thead style="background-color:#FFF2CC;">
<tr>
<th>Property</th>
<th>DC/DCterms</th>
<th>MODS</th>
<th>MARC21</th>
<th>CIDOC CRM</th>
<th>F-ICCD</th>
</tr>
</thead>
<tbody>
<tr>
<td>Publication Date</td>
<td>dcterms:created</td>
<td><originInfo><dateIssued></td>
<td>260 Publication Distribution $c</td>
<td>E12_Production<br>>P4_has_time-span<br>>E52_Time-Span</td>
<td>DT</td>
</tr>
</tbody>
</table>
</li>
<hr>
<li>
<p class="lead secondaryfloyd"><b>Where</b></p>
<table class="table table-striped">
<thead style="background-color:#F8CECC;">
<tr>
<th>Property</th>
<th>DC/DCterms</th>
<th>MODS</th>
<th>MARC21</th>
<th>CIDOC CRM</th>
<th>F-ICCD</th>
</tr>
</thead>
<tbody>
<tr>
<td>Production Location</td>
<td>dc:coverage</td>
<td><geographic></td>
<td>260 Publication Distribution $a</td>
<td>P7_took_place_at <br>> E53_place</td>
<td>LRC</td>
</tr>
<tr>
<td>Current Location</td>
<td>dc:coverage</td>
<td><physicalLocation></td>
<td>852$a Location</td>
<td>P53_has_current_location <br>> E53_place</td>
<td>ROFC</td>
</tr>
</tbody>
</table>
</li>
<hr>
<li>
<p class="lead secondaryfloyd"><b>What</b></p>
<table class="table table-striped">
<thead style="background-color:#D5E8D4;">
<tr>
<th>Property</th>
<th>DC/DCterms</th>
<th>MODS</th>
<th>MARC21</th>
<th>CIDOC CRM</th>
<th>F-ICCD</th>
</tr>
</thead>
<tbody>
<tr>
<td>Subject</td>
<td>dc:subject</td>
<td><subject> <geographical> <br><temporal></td>
<td>6XX Subject Access Entry</td>
<td>P129_is_about</td>
<td>ROFS</td>
</tr>
<tr>
<td>Title</td>
<td>dc:title</td>
<td><titleInfo><title></td>
<td>2XX Title and title paragraph</td>
<td>P102_has_title <br>> E35_Title</td>
<td>ROFT</td>
</tr>
<tr>
<td>Type</td>
<td>dc:type</td>
<td><typeOfResource> <genre></td>
<td>3XX Physical Description</td>
<td>P2_has_type <br>> E55_Type</td>
<td>OGTT</td>
</tr>
<tr>
<td>Language</td>
<td>dc:language</td>
<td><language><languageTerm></td>
<td>546 Language Note</td>
<td>P72_has_language <br>> E56_Language</td>
<td>ISEL</td>
</tr>
<tr>
<td>Material</td>
<td>dc:format</td>
<td><physicalDescription> <br><form type="material"></td>
<td>340$a</td>
<td>P2 has type <br>> E57 Material</td>
<td>MTCM</td>
</tr>
<tr>
<td>Dimensions</td>
<td>dc:format</td>
<td><physicalDescription></td>
<td>534$e</td>
<td>P43 has dimension <br>>E54 dimension</td>
<td>MIS</td>
</tr>
</tbody>
</table>
</li>
</ul>
<div class="line-mf" style="margin-top:40px;margin-bottom: 20px;"></div>
<h1 class="pinkfloyd" style="margin-bottom: 20px;">Textual data</h1>
<ul class="secondaryfloyd" id="metadata_textual">
<li>
<p class="lead"><b>Who</b></p>
<table class="table table-striped">
<thead style="background-color:#DAE8FC;">
<tr>
<th>Property</th>
<th>DC/DCterms</th>
<th>MARC21</th>
<th>EDM</th>
</tr>
</thead>