Newer
Older
short: 'sampo-ui',
long: ' Sampo-UI ',
"Here to forge for us the Sampo, Hammer us the lid in colors"
`,
appDescription1: `
Sampo is a web service for searching and studying place names. The search results
can be viewed as a table, on maps, and as statistical distributions.
Historical and current background maps are provided.
`,
appDescription2: `
Start by choosing source dataset(s) and input a place name on the search field.
Alternatively you can search by area.
`,
appDescription3: `
`,
appDescription4: `
selectPerspective: 'Select a perspective to search and browse the knowledge graph:',
mainPageImageLicence: 'Images used under license from Shutterstock.com',
topBar: {
feedback: 'feedback',
info: {
info: 'Info',
blog: 'Project blog',
blogUrl: 'https://seco.cs.aalto.fi',
aboutThePortal: 'About the Portal'
},
searchBarPlaceHolder: 'Search all content',
searchBarPlaceHolderShort: 'Search',
instructions: 'instructions'
},
facetBar: {
results: 'Results',
esikkala
committed
narrowDownBy: 'Narrow down by',
filterOptions: 'Filter options',
filterByName: 'Filter by name',
filterByBoundingBox: 'Filter by bounding box',
selectionOptions: 'Selection options',
selectAlsoSubconcepts: 'Automatically select all subconcepts',
doNotSelectSubconcepts: 'Do not select subconcepts',
sortingOptions: 'Sorting options',
sortAlphabetically: 'Sort alphabetically',
sortByNumberOfSearchResults: 'Sort by number of search results',
useDisjunction: 'Use logical OR between selections',
useConjuction: 'Use logical AND between selections'
},
tabs: {
table: 'table',
map: 'map',
production_places: 'production places',
production_places_heatmap: 'production heatmap',
last_known_locations: 'last known locations',
migrations: 'migrations',
network: 'network',
export: 'export',
map_clusters: 'clustered map',
map_markers: 'map',
heatmap: 'heatmap',
statistics: 'statistics',
emloLetterNetwork: 'Network of letters',
emloSentReceived: 'Sent and received letters',
download: 'download',
recommendations: 'recommendations'
},
table: {
rowsPerPage: 'Rows per page',
of: 'of'
},
lineChart: {
productionCount: 'Production',
transferCount: 'Transfer of custody',
observationCount: 'Observation',
sentCount: 'Sent',
receivedCount: 'Received',
allCount: 'All'
exportToYasgui: 'open the result table query in yasgui sparql editor',
openInLinkedDataBrowser: 'open in linked data browser',
resultsAsCSV: 'download the search results as a CSV table',
facets: {
dateFacet: {
invalidDate: 'Epäkelpo päivämäärä.',
toBeforeFrom: 'Alkupäivämäärän täytyy olla ennen loppupäivämäärää.',
minDate: 'Aikaisin sallittu päivämäärä on {minDate}',
maxDate: 'Myöhäisin sallittu päivämäärä on {maxDate}',
cancel: 'Peruuta',
fromLabel: 'Alku',
toLabel: 'Loppu'
},
textFacet: {
inputLabel: 'Etsi nimellä'
}
},
},
googleRoadmap: 'Google Maps',
topographicalMapNLS: 'Topographical map (National Land Survey of Finland)',
backgroundMapNLS: 'Background map (National Land Survey of Finland)'
},
externalLayers: {
arkeologiset_kohteet_alue: 'Register of Archaeological Sites, areas',
arkeologiset_kohteet_piste: 'Register of Archaeological Sites, points',
karelianMaps: 'Karelian maps, 1:100 000 topographic (SeCo)',
senateAtlas: 'Senate atlas, 1:21 000 topographic (SeCo)',
'kotus:pitajat': 'Finnish parishes in 1938 (Institute for the Languages of Finland)',
'kotus:rajat-sms-alueet': 'Dialectical regions in Finland (Institute for the Languages of Finland)',
'kotus:rajat-sms-alueosat': 'Dialectical subregions in Finland (Institute for the Languages of Finland)',
'kotus:rajat-lansi-ita': 'Border between western and eastern dialects in Finland (Institute for the Languages of Finland)'
},
mapModeButtons: {
markers: 'Markers',
heatmap: 'Heatmap'
},
wrongZoomLevel: 'The map zoom level has to at least 11',
wrongZoomLevelFHA: 'The map zoom level has to be at least 13 in order to show this layer',
tooManyResults: 'More than 3000 results, please use clustered map or heatmap'
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
instancePageGeneral: {
introduction: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
This landing page provides a human-readable summary of the data points that link
to this {entity}. The data included in this summary reflect only those data points
used in the MMM Portal. Click the Open in Linked Data Browser on button on the
Export tab to view the complete set of classes and properties linked to this record.
</p>
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
To cite this record, use its url. You can use also use the url to return directly
to the record at any time.
</p>
`,
repetition: `
<h6 class="MuiTypography-root MuiTypography-h6">
Repetition of data
</h6>
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
The same or similar data may appear within a single data field multiple times.
This repetition occurs due to the merging of multiple records from different datasets
to create the MMM record.
</p>
`
},
perspectives: {
perspective1: {
label: 'Perspective 1',
facetResultsType: 'manuscripts',
shortDescription: 'Perspective1 description',
longDescription: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Use this perspective to access data related to physical manuscript objects.
If two or more source datasets include the same manuscript and
this has been verified, the information from the source datasets has been merged
into one manuscript. See <a href="/instructions">instructions</a> for using the
filters. The result view can be selected using the tabs:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
<strong>TABLE</STRONG> view includes all manuscripts in
the MMM data. One table row is equivalent to one manuscript.
</li>
<li>
<strong>PRODUCTION PLACES</STRONG> view visualizes the connection
between manuscripts and the places where they were produced.
</li>
<li>
<strong>MIGRATIONS</strong> view visualizes the migration of a
manuscript from place of production to its most recently observed location.
</li>
<li>
<strong>EXPORT</strong> the SPARQL query used to generate the result
table view into YASGUI query editor.
</li>
</ul>
`,
instancePage: {
label: 'Manuscript',
description: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
MMM’s Manuscript entity corresponds to
<a href='https://www.ifla.org/publications/node/11240' target='_blank' rel='noopener noreferrer'>FRBRoo’s</a>
Manifestation Singleton, defined as "physical objects that each carry an instance of
[an Expression], and that were produced as unique objects..." The various types
of records that describe manuscripts in each of the three contributing MMM
datasets have been mapped to this entity.
</p>
<h6 class="MuiTypography-root MuiTypography-h6">
Manuscript labels
</h6>
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
If the Bibale or Oxford databases reference a shelf mark for the manuscript,
that information will appear as its label. Otherwise, an SDBM ID number will serve
as its label. SDBM ID numbers contain prefixes that indicate different things about
the type of record they contain:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
SDBM_MS: SDBM Manuscript Record, which aggregates the data of two or more SDBM
Entries. Each Entry represents a different observation of a manuscript at a different
point in time, derived from various sources.
</li>
<li>
SDBM_MS_orphan: a single Entry in the SDBM, meaning it has not been linked to any
other Entries and therefore has no SDBM Manuscript Record.
</li>
<li>
SDBM_MS_part: a record identified as a fragment of a larger manuscript.
</li>
</ul>
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph"></p>
`
},
properties: {
uri: {
label: 'URI',
description: 'Uniform Resource Identifier'
},
prefLabel: {
label: 'Label',
description: 'A short label describing the manuscript.'
},
author: {
label: 'Author',
description: `
The author(s) who have contributed to the intellectual content (works)
contained in the manuscript.
`
},
work: {
label: 'Work',
description: 'The intellectual content (works) contained in the manuscript.'
},
expression: {
label: 'Expression',
description: 'The linguistic versions of the works contained in the manuscript.'
},
productionPlace: {
label: 'Production place',
description: `
The location where the manuscript was written. Multiple production places
may appear for a single manuscript due to the following reasons: 1) there
are discrepancies in the contributing data source, 2) there are discrepancies
between several contributing data sources, 3) the precise date is uncertain,
4) the production indeed took place on several occasions (e.g. for composite
manuscripts).
`
},
productionTimespan: {
label: 'Production date',
description: `
The date when the manuscript was written. Multiple production dates may appear
for a single manuscript due to the following reasons: 1) there are discrepancies
in the contributing data source, 2) there are discrepancies between several
contributing data sources, 3) the precise date is uncertain, 4) the production
indeed took place on several occasions (e.g. for composite manuscripts).
`
},
note: {
label: 'Note',
description: `
Other info such as distinguishing characteristics, notes on the physical structure
of the manuscript, script types, note glosses, physical relationships among various
texts and/or parts of a miscellany, such as multiple types of page layout.
`
},
language: {
label: 'Language',
description: `
The language(s) in which the manuscript was written.
`
},
event: {
label: 'Event',
description: `
Events related to the manuscript.
`
},
owner: {
label: 'Owner',
description: `
Former or current owners (individual or institutional).
`
},
collection: {
label: 'Collection',
description: `
The collection(s) that the manuscript has been part of at some point in time.
`
},
transferOfCustodyPlace: {
label: 'Transfer of Custody Place',
description: `
The locations of “Transfer of Custody” events related to the manuscript.
`
},
transferOfCustodyTimespan: {
label: 'Transfer of Custody Date',
description: `
The dates of “Transfer of Custody” events related to the manuscript.
`
},
lastKnownLocation: {
label: 'Last known location',
description: `
Last known location
`
},
material: {
label: 'Material',
description: `
The physical material on which the text is written.
`
},
height: {
label: 'Height',
description: `
The height of the manuscript in millimeters.
`
},
width: {
label: 'Width',
description: `
The width of the manuscript in millimeters.
`
},
folios: {
label: 'Folios',
description: `
The number of folios (leaves).
`
},
lines: {
label: 'Lines',
description: `
The number of lines in a text block. Left blank if the number of lines
occurring throughout the manuscript is too irregular to be a useful
descriptor for searching.
`
},
columns: {
label: 'Columns',
description: `
The number of columns. Left blank if the number of columns
occurring throughout the manuscript is too irregular to be a useful
descriptor for searching.
`
},
miniatures: {
label: 'Miniatures',
description: `
The number of miniatures.
`
},
decoratedInitials: {
label: 'Decorated initials',
description: `
The number of decorated initials.
`
},
historiatedInitials: {
label: 'Historiated initials',
description: `
The number of historiated initials.
`
},
source: {
label: 'Source',
description: `
The source dataset(s) (Bibale, Bodleian, or SDBM) contributing the
information on the manuscript. If two or more source datasets include
the same manuscript and this has been manually verified, the information
from the source datasets have been merged into one manuscript (table row).
Click on the links to view the original record on the source’s website.
`
}
}
},
perspective2: {
label: 'Perspective 2',
facetResultsType: 'works',
shortDescription: 'Perspective 2 description',
longDescription: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Use this perspective to access data related to Works. The MMM data model follows
the <a href='https://www.ifla.org/publications/node/11240' target='_blank' rel='noopener noreferrer'>FRBRoo</a>
definition of a work, which refers to “distinct concepts or combinations
of concepts identified in artistic and intellectual expressions.” Works
contain title and author information. If two or more source
datasets include the same Work and this has been verified, the information
from the source datasets has been merged into one Work. See
<a href="/instructions">instructions</a> for using the filters.
The result view can be selected using the tabs:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
<strong>TABLE</STRONG> view gives you a list of specific works, and
the manuscripts and manuscript collections in which they can be found.
</li>
<li>
<strong>EXPORT</strong> the SPARQL query used to generate the result
table view into YASGUI query editor.
</li>
</ul>
`,
instancePage: {
label: 'Work',
description: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
The MMM data model follows the
<a href='https://www.ifla.org/publications/node/11240' target='_blank' rel='noopener noreferrer'>FRBRoo</a>
definition of a work, which refers to
“distinct concepts or combinations of concepts identified in artistic and
intellectual expressions.” Works contain title and author information.
This definition is not shared by the Bibale or Oxford Libraries’ conception
of the term, which both define their internal “work” concept more closely to
the FRBRoo conception of an Expression. The SDBM does not have a work concept
at all, recording only the titles of the texts as given in its various sources,
without normalizing that data or linking it directly to author information.
Works were generated within the MMM dataset by manually creating links across
the three datasets’ various conceptions of the relationship between authors
and their creations. This process was not able to reconcile every work
contained within the combined dataset.
</p>
`
},
properties: {
uri: {
label: 'URI',
description: 'Uniform Resource Identifier'
},
prefLabel: {
label: 'Title',
description: 'The name or title of the Work.'
},
author: {
label: 'Possible author',
description: `
The author(s) associated with the Work. Because of the structure of
entries in the Schoenberg Database, the authors shown as being
associated with a Work may actually be associated with other
Works in the same manuscript instead.
`
},
language: {
label: 'Language',
description: `
The language in which a Work is written in the manuscript
(i.e., an “Expression” of a Work). One manuscript may contain multiple languages.
`
},
expression: {
label: 'Expression',
description: `
The expression(s) of the Work.
`
},
manuscript: {
label: 'Manuscript',
description: `
The specific manuscript(s) in which the Work can be found.
`
},
productionTimespan: {
label: 'Manuscript production date',
description: `
The date(s) when the manuscript(s) in which the Work can be found were written.
Multiple production dates may appear for a single manuscript,
when there are discrepancies between the contributing data source
or when the precise date is uncertain.
`
},
collection: {
label: 'Collection',
description: `
The specific collection(s) of manuscripts in which a Work can be found.
`
},
source: {
label: 'Source',
description: `
The source database(s) (Schoenberg, Bibale, and Bodleian) that the Work
occurs in. Click on the result table link to view the original record on the
source’s website.
`
}
}
},
perspective3: {
label: 'Perspective 3',
facetResultsType: 'events',
shortDescription: 'Perspective 3 description',
longDescription: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Use this perspective to access data related to events associated with the
histories of manuscripts and manuscript collections over the centuries.
See <a href="/instructions">instructions</a> for using the filters.
The result view can be selected using the tabs:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
<strong>TABLE</STRONG> view includes all events in the MMM data.
</li>
<li>
<strong>MAP</STRONG> view visualizes the events that have location information on a map.
</li>
<li>
<strong>EXPORT</strong> the SPARQL query used to generate the result
table view into YASGUI query editor.
</li>
</ul>
`,
instancePage: {
label: 'Event',
description: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Events refer to various activities related to Manuscripts and Actors. Event
types include Production, Transfer of Custody, and Activity events.
Production events refer to the production of the physical manuscript.
Transfer of Custody events indicate a change of ownership that involved
a transaction of some kind, usually through an auction house or bookseller.
The generic Activity event type covers all other types of events.
</p>
`
},
properties: {
uri: {
label: 'URI',
description: 'Uniform Resource Identifier'
},
type: {
label: 'Type',
description: `
Distinguish between “Transfer of Custody”, “Production”, and other
types of “Activity” events.
`
},
language: {
label: 'Language',
description: `
The language in which a Work is written in the manuscript
(i.e., an “Expression” of a Work). One manuscript may contain multiple languages.
`
},
manuscript: {
label: 'Manuscript / Collection',
description: `
The manuscript or manuscript collection associated with the event.
`
},
eventTimespan: {
label: 'Date',
description: `
The date or time period associated with the event.
`
},
place: {
label: 'Place',
description: `
The specific place(s) associated with the event.
`
},
placeType: {
label: 'Place type',
description: `
The type of the specific place(s) associated with the event.
`
},
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
note: {
label: 'Note',
description: `
Note
`
},
surrender: {
label: 'Custody surrendered by',
description: `
Custody surrendered by
`
},
receiver: {
label: 'Custody received by',
description: `
Custody received by
`
},
observedOwner: {
label: 'Observed owner',
description: `
Observed owner
`
},
source: {
label: 'Source',
description: `
The source database (Schoenberg, Bibale, and Bodleian) that provided
the information about the event.
`
}
}
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
manuscripts: {
label: 'Manuscripts',
facetResultsType: 'manuscripts',
shortDescription: 'Physical manuscript objects',
longDescription: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Use this perspective to access data related to physical manuscript objects.
If two or more source datasets include the same manuscript and
this has been verified, the information from the source datasets has been merged
into one manuscript. See <a href="/instructions">instructions</a> for using the
filters. The result view can be selected using the tabs:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
<strong>TABLE</STRONG> view includes all manuscripts in
the MMM data. One table row is equivalent to one manuscript.
</li>
<li>
<strong>PRODUCTION PLACES</STRONG> view visualizes the connection
between manuscripts and the places where they were produced.
</li>
<li>
<strong>MIGRATIONS</strong> view visualizes the migration of a
manuscript from place of production to its most recently observed location.
</li>
<li>
<strong>EXPORT</strong> the SPARQL query used to generate the result
table view into YASGUI query editor.
</li>
</ul>
`,
instancePage: {
label: 'Manuscript',
description: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
MMM’s Manuscript entity corresponds to
<a href='https://www.ifla.org/publications/node/11240' target='_blank' rel='noopener noreferrer'>FRBRoo’s</a>
Manifestation Singleton, defined as "physical objects that each carry an instance of
[an Expression], and that were produced as unique objects..." The various types
of records that describe manuscripts in each of the three contributing MMM
datasets have been mapped to this entity.
</p>
<h6 class="MuiTypography-root MuiTypography-h6">
Manuscript labels
</h6>
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
If the Bibale or Oxford databases reference a shelf mark for the manuscript,
that information will appear as its label. Otherwise, an SDBM ID number will serve
as its label. SDBM ID numbers contain prefixes that indicate different things about
the type of record they contain:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
SDBM_MS: SDBM Manuscript Record, which aggregates the data of two or more SDBM
Entries. Each Entry represents a different observation of a manuscript at a different
point in time, derived from various sources.
</li>
<li>
SDBM_MS_orphan: a single Entry in the SDBM, meaning it has not been linked to any
other Entries and therefore has no SDBM Manuscript Record.
</li>
<li>
SDBM_MS_part: a record identified as a fragment of a larger manuscript.
</li>
</ul>
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph"></p>
`
},
properties: {
uri: {
label: 'URI',
description: 'Uniform Resource Identifier'
},
prefLabel: {
label: 'Label',
description: 'A short label describing the manuscript.'
},
author: {
label: 'Author',
description: `
The author(s) who have contributed to the intellectual content (works)
contained in the manuscript.
`
},
work: {
label: 'Work',
description: 'The intellectual content (works) contained in the manuscript.'
},
expression: {
label: 'Expression',
description: 'The linguistic versions of the works contained in the manuscript.'
},
productionPlace: {
label: 'Production place',
description: `
The location where the manuscript was written. Multiple production places
may appear for a single manuscript due to the following reasons: 1) there
are discrepancies in the contributing data source, 2) there are discrepancies
between several contributing data sources, 3) the precise date is uncertain,
4) the production indeed took place on several occasions (e.g. for composite
manuscripts).
`
},
productionTimespan: {
label: 'Production date',
description: `
The date when the manuscript was written. Multiple production dates may appear
for a single manuscript due to the following reasons: 1) there are discrepancies
in the contributing data source, 2) there are discrepancies between several
contributing data sources, 3) the precise date is uncertain, 4) the production
indeed took place on several occasions (e.g. for composite manuscripts).
`
},
note: {
label: 'Note',
description: `
Other info such as distinguishing characteristics, notes on the physical structure
of the manuscript, script types, note glosses, physical relationships among various
texts and/or parts of a miscellany, such as multiple types of page layout.
`
},
language: {
label: 'Language',
description: `
The language(s) in which the manuscript was written.
`
},
event: {
label: 'Event',
description: `
Events related to the manuscript.
`
},
owner: {
label: 'Owner',
description: `
Former or current owners (individual or institutional).
`
},
collection: {
label: 'Collection',
description: `
The collection(s) that the manuscript has been part of at some point in time.
`
},
transferOfCustodyPlace: {
label: 'Transfer of Custody Place',
description: `
The locations of “Transfer of Custody” events related to the manuscript.
`
},
transferOfCustodyTimespan: {
label: 'Transfer of Custody Date',
description: `
The dates of “Transfer of Custody” events related to the manuscript.
`
},
lastKnownLocation: {
label: 'Last known location',
description: `
Last known location
`
},
material: {
label: 'Material',
description: `
The physical material on which the text is written.
`
},
height: {
label: 'Height',
description: `
The height of the manuscript in millimeters.
`
},
width: {
label: 'Width',
description: `
The width of the manuscript in millimeters.
`
},
folios: {
label: 'Folios',
description: `
The number of folios (leaves).
`
},
lines: {
label: 'Lines',
description: `
The number of lines in a text block. Left blank if the number of lines
occurring throughout the manuscript is too irregular to be a useful
descriptor for searching.
`
},
columns: {
label: 'Columns',
description: `
The number of columns. Left blank if the number of columns
occurring throughout the manuscript is too irregular to be a useful
descriptor for searching.
`
},
miniatures: {
label: 'Miniatures',
description: `
The number of miniatures.
`
},
decoratedInitials: {
label: 'Decorated initials',
description: `
The number of decorated initials.
`
},
historiatedInitials: {
label: 'Historiated initials',
description: `
The number of historiated initials.
`
},
source: {
label: 'Source',
description: `
The source dataset(s) (Bibale, Bodleian, or SDBM) contributing the
information on the manuscript. If two or more source datasets include
the same manuscript and this has been manually verified, the information
from the source datasets have been merged into one manuscript (table row).
Click on the links to view the original record on the source’s website.
`
}
}
},
works: {
label: 'Works',
facetResultsType: 'works',
shortDescription: 'Intellectual content of manuscripts',
longDescription: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Use this perspective to access data related to Works. The MMM data model follows
the <a href='https://www.ifla.org/publications/node/11240' target='_blank' rel='noopener noreferrer'>FRBRoo</a>
definition of a work, which refers to “distinct concepts or combinations
of concepts identified in artistic and intellectual expressions.” Works
contain title and author information. If two or more source
datasets include the same Work and this has been verified, the information
from the source datasets has been merged into one Work. See
<a href="/instructions">instructions</a> for using the filters.
The result view can be selected using the tabs:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
<strong>TABLE</STRONG> view gives you a list of specific works, and
the manuscripts and manuscript collections in which they can be found.
</li>
<li>
<strong>EXPORT</strong> the SPARQL query used to generate the result
table view into YASGUI query editor.
</li>
</ul>
`,
instancePage: {
label: 'Work',
description: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
The MMM data model follows the
<a href='https://www.ifla.org/publications/node/11240' target='_blank' rel='noopener noreferrer'>FRBRoo</a>
definition of a work, which refers to
“distinct concepts or combinations of concepts identified in artistic and
intellectual expressions.” Works contain title and author information.
This definition is not shared by the Bibale or Oxford Libraries’ conception
of the term, which both define their internal “work” concept more closely to
the FRBRoo conception of an Expression. The SDBM does not have a work concept
at all, recording only the titles of the texts as given in its various sources,
without normalizing that data or linking it directly to author information.
Works were generated within the MMM dataset by manually creating links across
the three datasets’ various conceptions of the relationship between authors
and their creations. This process was not able to reconcile every work
contained within the combined dataset.
</p>
`
},
properties: {
uri: {
label: 'URI',
description: 'Uniform Resource Identifier'
},
prefLabel: {
label: 'Title',
description: 'The name or title of the Work.'
},
author: {
label: 'Possible author',
description: `
The author(s) associated with the Work. Because of the structure of
entries in the Schoenberg Database, the authors shown as being
associated with a Work may actually be associated with other
Works in the same manuscript instead.
`
},
language: {
label: 'Language',
description: `
The language in which a Work is written in the manuscript
(i.e., an “Expression” of a Work). One manuscript may contain multiple languages.
`
},
expression: {
label: 'Expression',
description: `
The expression(s) of the Work.
`
},
manuscript: {
label: 'Manuscript',
description: `
The specific manuscript(s) in which the Work can be found.
`
},
productionTimespan: {
label: 'Manuscript production date',
description: `
The date(s) when the manuscript(s) in which the Work can be found were written.
Multiple production dates may appear for a single manuscript,
when there are discrepancies between the contributing data source
or when the precise date is uncertain.
`
},
collection: {
label: 'Collection',
description: `
The specific collection(s) of manuscripts in which a Work can be found.
`
},
source: {
label: 'Source',
description: `
The source database(s) (Schoenberg, Bibale, and Bodleian) that the Work
occurs in. Click on the result table link to view the original record on the
source’s website.
`
}
}
},
events: {
label: 'Events',
facetResultsType: 'events',
shortDescription: 'Events related to manuscripts',
longDescription: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Use this perspective to access data related to events associated with the
histories of manuscripts and manuscript collections over the centuries.
See <a href="/instructions">instructions</a> for using the filters.
The result view can be selected using the tabs:
</p>
<ul class="MuiTypography-root MuiTypography-body1">
<li>
<strong>TABLE</STRONG> view includes all events in the MMM data.
</li>
<li>
<strong>MAP</STRONG> view visualizes the events that have location information on a map.
</li>
<li>
<strong>EXPORT</strong> the SPARQL query used to generate the result
table view into YASGUI query editor.
</li>
</ul>
`,
instancePage: {
label: 'Event',
description: `
<p class="MuiTypography-root MuiTypography-body1 MuiTypography-paragraph">
Events refer to various activities related to Manuscripts and Actors. Event
types include Production, Transfer of Custody, and Activity events.
Production events refer to the production of the physical manuscript.
Transfer of Custody events indicate a change of ownership that involved
a transaction of some kind, usually through an auction house or bookseller.
The generic Activity event type covers all other types of events.
</p>
`
},
properties: {
uri: {
label: 'URI',
description: 'Uniform Resource Identifier'
},
type: {
label: 'Type',