-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1439 lines (1407 loc) · 55.8 KB
/
Copy pathindex.html
File metadata and controls
1439 lines (1407 loc) · 55.8 KB
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>
<head>
<title>grock:Project</title>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- css -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:400,300,700,800" rel="stylesheet" media="screen">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/style.css" rel="stylesheet" media="screen">
<link href="color/default.css" rel="stylesheet" media="screen">
<link rel="icon" href="img/favicon.ico" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle nav</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Logo text or image -->
<a class="navbar-brand" href="index.html">grock:P</GrockProject></a>
</div>
<div class="navigation collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="current"><a href="#domain">Domain</a></li>
<li><a href="#er">E/R Model</a></li>
<li><a href="#items">Items</a></li>
<li><a href="#alignment">Alignment</a></li>
<li><a href="#theoretical">Theoretical Model</a></li>
<li><a href="#conceptual">Conceptual Model</a></li>
<li><a href="#description">Data Description</a></li>
<li><a href="#rdf">RDF</a></li>
</ul>
</div>
</div>
</nav>
<!-- intro area -->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<!-- Slide 1 -->
<div class="item active">
<div class="carousel-background"><img src="img/grockintro.jpg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animated fadeInDown">grock:Project</h2>
<p class="animated fadeInUp">«Io sono il risultato di mezzo secolo di osservazione e di ostinazione, del desiderio di perfezionare
ciò che era già perfetto. Sono convinto di esserci riuscito.»</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Domain -->
<section id="domain" class="home-section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>The Domain</h2>
<div class="heading-line"></div>
<p>Subject of the project, intentions and goals.</p>
</div>
</div>
</div>
<div class="row wow fadeInUp">
<div class="col-md-6 about-img">
<img src="img/grockdomain.jpg" alt="">
<div class="caption">Figure 1. Charles, Grock... or both?</div>
</div>
<div class="col-md-6 content">
<h2>We chose the clown Grock as the subject of our project.</h2>
<h3>Grock is a fictional character created and played by Charles Adrien Wettach, a versatile artist and entertainer.</h3>
<p>
Our idea revolves around two main premises:
<ul>
<li>the representation of Wettach's versatility through the choice of certain items, created by the artist itself, and others, created by some other people;</li>
<li>the distinction between the person (Charles Adrien Wettach) and the character (Grock), for two main reasons: first, because Grock can be considered, from a certain point of view, a piece of work created by Wettach; secondliy, since years before his death Wettach decided to hang up the mask of Grock and retire to private life, we can safely assume, from a conceptual and modelling standpoint, that the two did not always coexist with each other.</li>
</ul>
</p>
</div>
</div>
</div>
</section>
<!-- E/R MODEL -->
<section id="er" class="home-section bg-white">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>E/R Model</h2>
<div class="heading-line"></div>
<p>Explanation of our idea through an Entity-Relationship model.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<img src="img/er_model.png" class="img-responsive center-block" />
<div class="caption">Figure 2. E/R model showing the relationships between Charles Adrien Wettach, Grock, the ten
objects we chose and the metadata we are interested in. </div>
</div>
</div>
</div>
</section>
<!-- The Items -->
<section id="items" class="home-section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>The Items</h2>
<div class="heading-line"></div>
<p>The items we selected and their respective metadata analyses.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 puppi">
<a href="pdf/Au-revoir Paree.pdf" target="_blank">
<img src="img/aurevoirpareethumb.jpg" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Au-revoir Paree</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://www.loc.gov/resource/ihas.200004028.0?st=gallery" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Music sheet</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>Library of Congress</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>MODS</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Au-revoir Paree.pdf" target="_blank">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/La mia carriera da clown.pdf" target="_blank">
<img src="img/vitadaclownthumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>La mia carriera di clown</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://opac.sbn.it/opacsbn/opaclib?rpnlabel=+Soggetti+%3D+CFIC173863+&totalResult=1&nentries=1&resultForward=opac%2Ficcu%2Ffull.jsp&select_db=solr_iccu&do_cmd=show_cmd&searchForm=opac%2Ficcu%2Ferror.jsp&rpnquery=%2540attrset%2Bbib-1%2B%2B%2540attr%2B1%253D8021%2B%2540attr%2B4%253D1%2B%2522CFIC173863%2522&db=solr_iccu&saveparams=false&&fname=none&from=1" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Book</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>ICCU</td>
</tr>
<tr>
<th scope="row" rowspan="2">Schema</th>
<td>ISBD</td>
</tr>
<tr>
<td>MARC21</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/La mia carriera da clown.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Clown_ readings in theatre practice.pdf" target="_blank">
<img src="img/clownreadingsthumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Clown: readings in theatre practice</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://www.worldcat.org/title/clown-readings-in-theatre-practice/oclc/843034340&referer=brief_results" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Book</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>WorldCat</td>
</tr>
<tr>
<th scope="row" rowspan="2">Schema</th>
<td>ISBD</td>
</tr>
<tr>
<td>RDA</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Clown_ readings in theatre practice.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Etude de Grock - Clown.pdf" target="_blank">
<img src="img/etudedegrockthumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Etude de Grock - Clown</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://wayback.archive-it.org/3340/20170930000028/https://americanart.si.edu/artwork/etude-de-grock--clown-10197" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Artwork</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>Smithsonian American Art Museum</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>CDWA</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Etude de Grock - Clown.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/A la bastoche.pdf" target="_blank">
<img src="img/alabastochethumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>A la bastoche</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://musicbrainz.org/recording/b590284a-15c5-46a2-a9a8-808f543cf03b" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Music recording</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>MusicBrainz</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>MMD</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/A la bastoche.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Au revoir M.Grock.pdf" target="_blank">
<img src="img/mistergrockthumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Au-revoir M. Grock</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://www.imdb.com/title/tt0041136/" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Video</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>IMDb</td>
</tr>
<tr>
<th scope="row" rowspan="2">Schema</th>
<td>SOMA</td>
</tr>
<tr>
<td>CM</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Au revoir M.Grock.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Cinegiornale.pdf" target="_blank">
<img src="img/milanoricordothumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Milano - Ricordo di Grock</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://www.europeana.eu/portal/it/record/2051914/data_euscreenXL_IL5000060098.html?q=grock" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Newsreel</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>Europeana</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>EDM</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Cinegiornale.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Portraitseries.pdf" target="_blank">
<img src="img/portraitseriethumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Portraitserie Grock</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://www.europeana.eu/portal/it/record/2048418/item_MSA2QAMPAC2JROQ7MHQX3M43QOIOE2EM.html?q=grock" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Portraitserie</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>Europeana</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>EDM</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Portraitseries.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Villa Grock.pdf" target="_blank">
<img src="img/villathumb.jpeg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Villa Grock</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="https://www.europeana.eu/portal/it/record/92034/GVNRC_SFA03_SFA022001138.html?q=Charles+A" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Photograph</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>Europeana</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>EDM</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Villa Grock.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 puppi">
<a href="pdf/Self-portrait.pdf" target="_blank">
<img src="img/autoritrattothumb.jpg" alt="" class="image img-thumbnail">
<div class="lolli">
<div class="image-text">Metadata Analysis</div>
</div>
</a>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<tbody>
<tr>
<th scope="row">Title</th>
<td>Autoritratto di Adrian Wettach Grock</td>
</tr>
<tr>
<th scope="row">Resource link</th>
<td><a href="http://www.culturaitalia.it/opencms/viewItem.jsp?language=en&case=&id=oai%3Apolomuseale.firenze.it%3A1890%3A10370" target="_blank">LINK</a></td>
</tr>
<tr>
<th scope="row">Object type</th>
<td>Artwork</td>
</tr>
<tr>
<th scope="row">Provider</th>
<td>Cultura Italia</td>
</tr>
<tr>
<th scope="row">Schema</th>
<td>PICO</td>
</tr>
<tr>
<th scope="row">Metadata Analysis</th>
<td>Hover on the image or <a href="pdf/Self-portrait.pdf">HERE</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Alignment -->
<section id="alignment" class="home-section bg-white">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Metadata Alignment</h2>
<div class="heading-line"></div>
<p>Mapping of metadata elements highlighted during the analysis phase.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 top-buffer">
<div class="card">
<div class="card-body">
<button type="button">
<a href="pdf/alignment.pdf" target="_blank" class="btn">Alignment Table</a>
</button>
<div class="top-buffer">
<p class="card-text">We defined the alignment between the different used standards for metadata (related to people, place,
date and concepts) by asking ourselves a series of questions related to such categories and by
selecting the metadata elements we deemed to be more relevant for our model.</p>
<p class="card-text">The questions we asked ourselves during the process of metadata mapping focused on the roles of
people involved with the creation, distribution and conservation of the item. Regarding date and place,
we chose not to delve too deep since it is information that our model will focus on only marginally.
With regards to concepts, we chose to focus on general ideas related to some object properties, such as the title and the format.</p>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="card">
<div class="card-body">
<p class="card-text">
<table class="table table-bordered">
<caption>Table 1. Series of questions we asked ourselves in order to identify the metadata mostly interesting to us.</caption>
<thead>
<th scope="col">Question</th>
</thead>
<tbody>
<tr>
<td>Who is the creator of the item?</td>
</tr>
<tr>
<td>Who contributed to the item's creation?</td>
</tr>
<tr>
<td>Who is the distributor of the item?</td>
</tr>
<tr>
<td>Who is the subject of the item?</td>
</tr>
<tr>
<td>Who is physically owning the item?</td>
</tr>
<tr>
<td>Who owns the intellectual property rights of the item?</td>
</tr>
<tr>
<td>When was the item created?</td>
</tr>
<tr>
<td>Where was the item created?</td>
</tr>
<tr>
<td>What is the title of the item?</td>
</tr>
<tr>
<td>What is the content of the item?</td>
</tr>
<tr>
<td>What is the format of the item?</td>
</tr>
<tr>
<td>What is the alias of the person?</td>
</tr>
</tbody>
</table>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Theoretical model -->
<section id="theoretical" class="home-section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Theoretical Model</h2>
<div class="heading-line"></div>
<p>Creation of a theoretical framework, modeled by exploiting FRBR conceptual structure.</p>
</div>
</div>
</div>
<div class="row">
<p>
We decided to base our theoretical model on the FRBR structure. What we did, for each object, was to conceptually treat it from the
point of view of all the FRBR Group 1 entities at once and to insert each metadatum we deemed to be relevant to our task into its
respective entity slot (either work, manifestation, expression or item). In this way, we were allowed to give a distinct and clear
answer to each question we developed during the alignment phase.
</p>
</div>
<div class="row top-buffer">
<div class="col-md-12">
<img src="img/theoreticalmodel.png" class="img-responsive center-block"/>
<div class="caption">Figure 3. In our theoretical model each metadatum is attached to the FRBR entity we deemed to be most
appropriate.
</div>
</div>
</div>
<div class="row top-buffer">
<p>
We then applied this theoretical model to three of our objects:
</p>
</div>
<div class="row top-buffer">
<div class="card col-md-4 puppi">
<a href="pdf/M.T. - Au-revoir Paree.pdf" target="_blank">
<img class="card-img-top image img-thumbnail" src="img/aurevoirpareethumb.jpg" alt="">
<div class="lolli">
<div class="image-text">Theoretical Model</div>
</div>
</a>
<div class="card-body">
<h5 class="card-title">Au-revoir Paree</h5>
</div>
</div>
<div class="card col-md-4 puppi">
<a href="pdf/M.T. - Autoritratto.pdf" target="_blank">
<img class="card-img-top image img-thumbnail" src="img/autoritrattothumb.jpg" alt="">
<div class="lolli">
<div class="image-text">Theoretical Model</div>
</div>
</a>
<div class="card-body">
<h5 class="card-title">Autoritratto</h5>
</div>
</div>
<div class="card col-md-4 puppi">
<a href="pdf/M.T. - La mia carriera di clown.pdf" target="_blank">
<img class="card-img-top image img-thumbnail" src="img/vitadaclownthumb.jpg" alt="">
<div class="lolli">
<div class="image-text">Theoretical Model</div>
</div>
</a>
<div class="card-body">
<h5 class="card-title">La mia carriera di clown</h5>
</div>
</div>
</div>
</div>
</section>
<!-- Conceptual model -->
<section id="conceptual" class="home-section bg-white">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Conceptual Model</h2>
<div class="heading-line"></div>
<p>Creation of a conceptual model by reusing other existing models. </p>
</div>
</div>
</div>
<div class="row">
<p>
Starting from the E/R model, the metadata alignment and the theoretical model, the next step was to create an actual conceptual
model able to adequately describe the data at our disposal.
</p>
</div>
<div class="row top-buffer">
<div class="col-md-4 centered1">
<p>With regard to the date format, we chose to use either the DMY format (in case we are dealing with a precisely defined date) or
xsd:gYear (in case we are dealing with a vaguely defined date, without a precise day and/or month of that year).
</p>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<caption>Table 2. Conceptual model for Dates.</caption>
<tbody>
<tr>
<td><b>DD/MM/YYYY</b></td>
<td>W3 Consortium</td>
</tr>
<tr>
<td><b>xsd:gYear</b></td>
<td>RELAX NG</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-8">
<table class="table table-bordered">
<caption>Table 3. Conceptual model for People.</caption>
<thead>
<th scope="col">Question</th>
<th scope="col">Property</th>
<th scope="col">Schema</th>
</thead>
<tbody>
<tr>
<td>What is the person's name?</td>
<td><b>person:birthName</b></td>
<td>Core Person Vocabulary</td>
</tr>
<tr>
<td>What is the person's alias? (optional)</td>
<td><b>poder:alias</b></td>
<td>Poder Vocabulary</td>
</tr>
<tr>
<td>Where was the person born?</td>
<td><b>person:placeOfBirth</b></td>
<td>Core Person Vocabulary</td>
</tr>
<tr>
<td>When was the person born?</td>
<td><b>core:dateOfBirth</b></td>
<td>Core Concept Ontology</td>
</tr>
<tr>
<td>Where did the person die? (optional)</td>
<td><b>person:placeOfDeath</b></td>
<td>Core Person Vocabulary</td>
</tr>
<tr>
<td>When did the person die? (optional)</td>
<td><b>core:dateOfDeath</b></td>
<td>Core Concept Ontology</td>
</tr>
<tr>
<td>What is the person's job/occupation?</td>
<td><b>gvp:aat2312_perform</b></td>
<td>Getty Vocabulary Program ontology</td>
</tr>
<tr>
<td>What is an item related to the person? (optional)</td>
<td><b>gvp:aat2000_related_to</b></td>
<td>Getty Vocabulary Program ontology</td>
</tr>
<tr>
<td>Who does the person know? (optional)</td>
<td><b>foaf:knows</b></td>
<td>Friend Of A Friend</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-4 centered">
<p>
With regards to people, we decided to use the Core
Person Vocabulary to describe the identity of
an individual, enhanced with properties from Friend
Of A Friend, Poder Vocabulary, Getty Vocabulary Program ontology and Core Concepts Ontology.
As for the last two properties aat2000_related_to and
foaf:knows, we are aware of the vagueness of them
(especially that of the former, since it is not specified
whether the person is the item's creator, producer,
distributor, etc...), but we were mostly interested in
expressing some kind of relation with at least a person
and, possibly, a cultural object of some sort. An interesting
future development of this model could consist in implementing
a more detailed system of relationships at this level, from
the point of view of both objects and people related to the
person.
</p>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-4 centered1">
<p>
With regards to places, we decided to keep the
description to a minimum that would still be useful
to us. We used the Location Core Vocabulary
to describe a specific place in terms of its name, and the
GeoNames ontology to add information about the
country in which that place is located.
</p>
</div>
<div class="col-md-8">
<table class="table table-bordered">
<caption>Table 4. Conceptual model for Places.</caption>
<thead>
<th scope="col">Question</th>
<th scope="col">Property</th>
<th scope="col">Schema</th>
</thead>
<tbody>
<tr>
<td>What is the name of the place?</td>
<td><b>locn:geographicName</b></td>
<td>Location Core Vocabulary</td>
</tr>
<tr>
<td>What is the country in which the place is located?</td>
<td><b>gn:countryCode</b></td>
<td>GeoNames</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row top-buffer">
<div class="col-md-8">
<table class="table table-bordered">
<caption>Table 5. Conceptual model for Concepts.</caption>
<thead>
<th scope="col">Question</th>
<th scope="col">Property</th>
<th scope="col">Schema</th>
</thead>
<tbody>
<tr>
<td>What is the occupation?</td>
<td><b>rdfs:label</b></td>
<td>RDFS</td>
</tr>
<tr>
<td>How could it be described by exploiting an uncontrolled description?</td>
<td><b>rdfs:comment</b></td>
<td>RDFS</td>
</tr>
<tr>
<td>How could it be described by exploiting a controlled vocabulary?</td>
<td><b>dcterms:subject</b></td>
<td>Dublin Core</td>
</tr>
<tr>
<td>Who performs this occupation?</td>
<td><b>gvp:aat2311_performed_by</b></td>
<td>Getty Vocabulary Program ontology</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-4 centered">
<p>
With regards to concepts, we decided to focus
on people's occupations, which we managed to describe
by using a mixture of general properties of RDF Schema
and Dublin Core and the Getty Vocabulary Program ontology's
"aat2311_performed_by" property (inversely related to "aat2312_perform").
Another interesting development could consist in implementing a more
sophisticated and complex model in order to be able to describe concepts, other than occupation, related
to people and their doing.
</p>
</div>
</div>
</div>
</section>
<section id="description" class="home-section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Data Description</h2>
<div class="heading-line"></div>
<p>
Natural language tabulated description of some toy data we chose for each category (People, Places, Concepts).</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div>
<h3>People</h3>
</div>
<table class="table table-bordered">
<caption>Table 6. Natural language description of Charles Adrien Wettach.</caption>
<thead>
<th scope="col">Subject</th>
<th scope="col">Property</th>
<th scope="col">Object</th>
</thead>
<tbody>
<tr>
<td rowspan="13">[Charles Adrien Wettach]</td>
</tr>
<tr>
<td>person:birthName</td>
<td>"Charles Adrien Wettach"</td>
</tr>
<tr>
<td>poder:alias</td>
<td>"Grock"</td>
</tr>
<tr>
<td>person:placeOfBirth</td>
<td>[Lovelesse]</td>
</tr>
<tr>
<td>core:dateOfBirth</td>
<td>10/01/1880</td>
</tr>
<tr>
<td>person:placeOfDeath</td>
<td>[Imperia]</td>
</tr>
<tr>
<td>core:dateOfDeath</td>
<td>14/07/1959</td>
</tr>
<tr>
<td>gvp:aat2312_perform</td>
<td>[Clown]</td>
</tr>
<tr>
<td>gvp:aat2312_perform</td>
<td>[Illustrator]</td>
</tr>
<tr>
<td>gvp:aat2312_perform</td>
<td>[Actor]</td>
</tr>
<tr>
<td>gvp:aat2312_perform</td>
<td>[Musician]</td>
</tr>
<tr>
<td>aat2000_related_to</td>
<td>[Autoritratto]</td>
</tr>
<tr>
<td>foaf:knows</td>
<td>[Suzy Prim]</td>
</tr>
</tbody>
</table>
<table class="table table-bordered">
<caption>Table 7. Natural language description of Suzanne Mariette Arduini.</caption>
<thead>
<th scope="col">Subject</th>
<th scope="col">Property</th>