-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1667 lines (1603 loc) · 106 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>
<head>
<title>epidat 2002-2019-XXXX</title>
<!-- meta information -->
<meta name="author" content="Thomas Kollatz" />
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- favicons -->
<link rel="shortcut icon" href="resources/img/favicon.png" />
<link rel="apple-touch-icon" href="resources/img/apple-touch-icon.png" />
<!-- CSS reset and grid -->
<link href="vendor/normalize/normalize-4.1.1.css" rel="stylesheet" />
<link href="vendor/skeleton/skeleton-2.0.4.css" rel="stylesheet" />
<!-- fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,600italic,400italic,700italic,800,800italic&subset=latin,latin-ext"
rel="stylesheet" type="text/css" />
<!-- styles for included libraries -->
<!-- chartist -->
<link rel="stylesheet" href="vendor/chartist/chartist.min-0.9.7.css" />
<!-- unite gallery -->
<link rel="stylesheet" href="vendor/unitegallery/css/unite-gallery.css" type="text/css" />
<!-- codemirror -->
<link rel="stylesheet" href="vendor/codemirror/lib/codemirror.css" />
<!-- highlight -->
<link rel="stylesheet" href="vendor/highlight/styles/default.css" />
<link rel="stylesheet" href="resources/css/hljs.linenumbering.css" />
<!-- swiper -->
<link rel="stylesheet" href="vendor/swiper/swiper.min.css" />
<!-- magnific popup -->
<link rel="stylesheet" href="vendor/magnific-popup/magnific-popup-1.1.0.css" />
<!-- standard presentation styles -->
<link href="resources/css/style.css" rel="stylesheet" />
<!-- custom presentation styles -->
<link href="resources/css/custom.css" rel="stylesheet" />
<!-- hint styles -->
<link href="resources/css/hint.css" rel="stylesheet" />
<!-- js needed in head -->
<!-- greuler -->
<script src="vendor/d3/d3-3.5.6.js"></script>
<script src="vendor/cola/cola.v3.min.js"></script>
<script src="vendor/greuler/greuler-0.5.5.min.js"></script>
<!-- html5 dataset shim for IE -->
<script src="vendor/impress/html5-dataset.js" type="text/javascript"></script>
<!-- UnifrakturCook for Headers -->
<link href="https://fonts.googleapis.com/css?family=UnifrakturCook:700|UnifrakturMaguntia"
rel="stylesheet" />
</head>
<body>
<div class="fallback-message">
<p> Your browser <strong>doesn't support the features required</strong> by
impress.mod.js, so you are presented with a simplified version of this presentation. </p>
<p> For the best experience please use the latest <strong>Chrome</strong>,
<strong>Safari</strong> or <strong>Firefox</strong> browser. </p>
</div>
<div id="impress">
<div class="step" id="start">
<h5><strong>2019-02-13</strong> | <a
href="https://www1.biu.ac.il/indexE.php?id=6760&pt=27&pid=117&level=2&cPath=6760/"
>Bar Ilan Workshop</a> Ramat Gan , Israel </h5>
<h5><a href="https://www1.biu.ac.il//File/news/file_biu_18_12_23_10_00.pdf"
>Technological Tools for Manuscript Research</a></h5>
<h2 class="red down-100 ">Evolution of a DH-project</h2>
<h3 class=" down-25 ">Turns and Trends of a Digital Epigraphic Endeavour</h3>
<!--<div class="hint">
<blockquote class="line-height-one">☞ Use a spacebar or arrow keys to navigate, <br />☞ a mouseclick on
<a href="#">text in blue</a> will open an external website, <br /> ☞ a
mouseclick on an image will enlarge it.</blockquote>
</div>-->
<h5 class="down-100"> link to presentation <a
href="https://kollatzthomas.github.io/Bar_Ilan_paper"
title="View the presentation online">
https://kollatzthomas.github.io/Bar_Ilan_paper</a>
</h5>
<h5>
<strong><a href="http://orcid.org/0000-0003-1904-1841"
title="Thomas Kollatz on OrcID">Thomas Kollatz</a> | <img
src="resources/img/Twitter_bird_logo_2012.svg" alt="Twitter"
class="twitter-icon" />
<a href="https://twitter.com/kol_t" title="Thomas Kollatz on Twitter"
>@kol_t</a> | <img src="resources/img/Octicons-mark-github.svg"
alt="Twitter" class="gh-icon" />
<a href="https://github.com/kollatzthomas" title="Thomas Kollatz on GitHub"
>kollatzthomas</a> | <a
href="https://creativecommons.org/licenses/by/4.0/" title="license"
>CC-BY 4.0</a></strong>
</h5>
</div>
<div class="step">
<h2 class="red">Digital Epigraphy </h2>
<ol class="line-height-one-five">
<li>headstone and cemetery</li>
<li>about epidat</li>
<li>Research Platform for Jewish Epigraphy</li>
</ol>
</div>
<div class="step">
<h1 class="red">01</h1>
<h2>headstone and cemetery</h2>
</div>
<div class="step">
<h2 class="red">headstones from nine centuries</h2>
<div id="researchdata" style="display:none; ">
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=wrm-9009&lang=en&anzeige=mix">
<img alt="Worms: headstone of Jaakov ha-bachur 1077"
src="resources/img/wrm-9009.png" data-image="resources/img/wrm-9009.png"
data-description="foto by Bert Sommer" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=spy-6&lang=en&anzeige=mix">
<img alt="Speyer: headstone of Channa bat Alexander 1183"
src="resources/img/spy-6.png" data-image="resources/img/spy-6.png"
data-description="foto by Laura Augustin" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=mz1-2203&lang=en&anzeige=mix">
<img alt="Mainz: headstone of Meir b. Awraham 1281"
src="resources/img/2203_mz1_LDA-2008-074.png"
data-image="resources/img/2203_mz1_LDA-2008-074.png"
data-description="foto by LDA Mainz" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=wrm-1214&lang=en&anzeige=mix">
<img alt="Worms: Im Heiligen Sand – memorial 1096"
src="resources/img/wrm-1214.png" data-image="resources/img/wrm-1214.png"
data-description="foto by Stefanie Fuchs" style="display:none" />
</a>
<a href="http://www.steinheim-institut.de/cgi-bin/epidat?id=bng-221">
<img alt="Bingen: headstone of Juda Mehler 1659"
src="resources/img/bng-221.jpg" data-image="resources/img/bng-221.jpg"
data-description="foto by Andreas Hemstege" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hha-2338&lang=en&anzeige=mix">
<img alt="Hamburg: headstone of David Hammerschlag 1686"
src="resources/img/2338_FN_0206040127.jpg"
data-image="resources/img/2338_FN_0206040127.jpg"
data-description="foto by Bert Sommer" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hha-1678&lang=en&anzeige=mix">
<img alt="Hamburg: headstone of Vogel bat Popert 1791"
src="resources/img/1678_FE_0110140126.jpg"
data-image="resources/img/1678_FE_0110140126.jpg"
data-description="foto by Bert Sommer" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=ffb-80&lang=en&anzeige=mix">
<img alt="Frankfurt: headstone of Meir Rothschild 1812"
src="resources/img/ffb0080.jpg" data-image="resources/img/ffb0080.jpg"
data-description="foto by Andreas Hemstege" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hha-5050&lang=en&anzeige=mix">
<img alt="headstone of Fromet Mendelssohn 1812"
src="resources/img/hha-5050.jpg" data-image="resources/img/hha-5050.jpg"
data-description="foto by Eduard Duckesz" style="display:none" />
</a>
<a href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hht-493"><img
alt="headstone of Schimschon ben Chaijm Bückeburg 1828"
src="resources/img/hht-493.png" data-image="resources/img/hht-493.png"
data-description="foto by Dan Bondy" style="display:none" /></a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=frd-24&lang=en&anzeige=mix">
<img alt="headstone of Roedelheim: Wolf Heidenheim 1832"
src="resources/img/Roedelheim-24.png"
data-image="resources/img/Roedelheim-24.png"
data-description="foto by Bert Sommer" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=kre-22&lang=en&anzeige=mix">
<img alt="headstone of Krefeld: Leopold Ullmann 1843"
src="resources/img/kre-22.png" data-image="resources/img/kre-22.png"
data-description="foto by Andreas Hemstege" style="display:none" />
</a>
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=e28-67&lang=en&anzeige=mix">
<img
alt="Wickrath: headstone of Gretel Spier 1936 manufactured by Leopold Fleischhacker"
src="resources/img/e28-2004.jpg" data-image="resources/img/e28-2004.jpg"
data-description="foto by Bert Sommer" style="display:none" />
</a>
</div>
</div>
<div class="step">
<!-- Mainz -->
<div class="row">
<div class="four columns">
<figure class="mfp-lightbox even-right "><a
href="resources/img/2203_mz1_LDA-2008-074.png"><img
src="resources/img/2203_mz1_LDA-2008-074.png" /></a></figure>
<p class="x-small right up-25">Mainz – Gedenkfriedhof: <a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=mz1-2203&lang=en&anzeige=mix"
>mz1-2203</a><br />foto: LDA Mainz</p>
<blockquote class="right medium">זה קבר של הרב ר׳ מאיר בר אברהם הכהן הזקן
הנהרג על יחוד השם במ״א לפרט כ״ז בסיון ביום שנשרף בית הכנסת ונקרעו סיפרי
תורה מנוחתו כבוד </blockquote>
</div><div class="eight columns">
<dl class="small down-25 line-height-one-five ">
<dt class="red">place of burial</dt>
<dd class="even-left">Mainz</dd>
<dt class="red">name</dt>
<dd class="even-left">Meir b. Awraham HaCohen</dd>
<dt class="red">date of death | date of event</dt>
<dd class="even-left">1281-06-15 | 27. Sivan 5041</dd>
<dt class="red">event</dt>
<dd class="even-left">destruction of the synagogue and the torascrolls: </dd>
<dd class="right">ביום שנשרף בית הכנסת ונקרעו סיפרי תורה </dd>
<dt class="red">concept</dt>
<dd class="right">הנהרג על יחוד השם</dd>
<dt class="red">dislocation</dt>
<dd class="even-left">headstone was found by workers on June 5, 1899 in
the cellar of the inn <q>Zur Stadt Mainz</q> in the street <q>Große
Bleiche</q></dd>
</dl>
</div></div>
</div>
<div class="step">
<!-- Hammerschlag -->
<div class="row">
<div class="six columns">
<figure class="mfp-lightbox"><a href="resources/img/2338_FN_0206040127.jpg"
><img src="resources/img/2338_FN_0206040127.jpg"
style="width:40rem" /></a></figure>
<p class="x-small up-25 centered">Hamburg-Altona, Königstraße: <a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hha-2338&lang=en&anzeige=mix"
>hha-2338</a>
<br />foto: Bert Sommer</p>
</div>
<div class="six columns">
<dl class="even-left small down-25 line-height-one-five">
<dt class="red">place of burial</dt>
<dd class="even-left">Hamburg</dd>
<dt class="red">name</dt>
<dd class="even-left">David Hammerschlag</dd>
<dt class="red">date_of_death</dt>
<dd class="even-left">26.10.1686 | 18. Cheschvan 5447</dd>
<dt class="red">place of origin</dt>
<dd class="even-left">Hildesheim</dd>
<dt class="red">intertextuality</dt>
<dd class="even-left">Allusions on biblical David</dd>
<dd class="even-left"> 2 Sam. 15:30 דוד עלה במעלה </dd>
<dd class="even-left"> 1 Kings 2.1 ויקרבו ימי דוד למות</dd>
<dt class="red">symbols</dt>
<dd>magen david | hammer</dd>
<dt class="red">ornaments</dt>
<dd class="even-left">palmette</dd>
</dl></div></div>
</div>
<div class="step">
<!-- Vogel -->
<div class="row">
<div class="four columns">
<figure class="mfp-lightbox even-right">
<a href="resources/img/1678_FE_0110140126.jpg"><img
src="resources/img/1678_FE_0110140126.jpg" /></a>
</figure>
<p class="x-small right up-25">Hamburg-Altona<!--, Königstraße-->: <a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hha-1678&lang=en&anzeige=mix"
>hha-1678</a>
<br />foto: Bert Sommer</p>
</div>
<div class="four columns">
<table class="small even-right line-height-one">
<tr>
<td style="direction:rtl;text-align:right;">גם חסידה בשמים</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;"><span class="akr"
>פ</span>ה שוכבת הדרת הנשים</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;"><span class="akr"
>א</span>ף גם עדים וצבי תפארתם</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;"><span class="akr"
>ג</span>מלה חסד עם הרשים</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;"><span class="akr"
>ל</span>זמנה היתה כתר מכתם</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;">בת פו״מ כהר״ר
יוסף</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;">פופרט אשת כ״ה
משה</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;">אפינהיי׳ הגובה
באלטונא</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;">נפטר׳ ונקבר׳ יום ב׳
ך״ז טבת</td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;">שנת <span class="chr"
>כ</span><span class="chr">צ</span><span class="chr"
>פ</span><span class="chr">ו</span><span class="chr"
>ר</span> נודדת <span class="chr">מ</span><span class="chr"
>ק</span><span class="chr">נ</span><span class="chr"
>ה</span></td>
</tr>
<tr>
<td style="direction:rtl;text-align:right;">תנצב״ה </td>
</tr>
</table></div>
<div class="four columns">
<dl class="even-left small down-25 line-height-one-five ">
<dt class="red">place of burial</dt>
<dd>Hamburg</dd>
<dt class="red">name(s)</dt>
<dd class="even-left">Vogel</dd>
<dd><u>father</u> Josef Popert</dd>
<dd><u>husband</u> Moshe Oppenheim</dd>
<dt class="red">task</dt>
<dd>הגובה באלטונא charity administrator</dd>
<dt class="red">date_of_death</dt>
<dd class="even-left">03.01.1791 | 27. Tewet 5551</dd>
<dt class="red">symbol</dt>
<dd>bird</dd>
<dt class="red">style</dt>
<dd>rhyme, meter, acrostic, chronostic</dd>
</dl>
</div>
</div>
</div>
<div class="step">
<h3 class="red">A Cemetery is a spatial ensemble of timebound objects</h3>
<div id="researchdata_alt" style="display:none">
<a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=wrm&release=beta&lang=en">
<img alt="Worms: Im heiligen Sand"
src="resources/img/juedischer_friedhof_worms_s_w.png"
data-image="resources/img/juedischer_friedhof_worms_s_w.png"
data-description="dé.wé. [CC BY-SA 2.0 (https://creativecommons.org/licenses/by-sa/2.0)], via Wikimedia Commons"
style="display:none" />
<!-- https://commons.wikimedia.org/wiki/File:Jüdischer_Friedhof_Worms.jpg -->
</a>
<a
href="http://steinheim-institut.de/cgi-bin/epidat?id=ffb&release=beta&lang=en">
<img alt="Frankfurt, Battonstraße: Old Cemetery"
src="resources/img/ffb6903.jpg" data-image="resources/img/ffb6903.jpg"
data-description="Andreas Heemsteege [CC BY 4.0], via epidat"
style="display:none" />
</a>
<a
href="http://steinheim-institut.de/cgi-bin/epidat?id=wrm&release=beta&lang=en">
<img alt="Hamburg-Altona: Ashkenazic Cemetery"
src="resources/img/x_0409030214.jpg"
data-image="resources/img/x_0409030214.jpg"
data-description="Bert Sommer [CC BY 4.0], via epidat"
style="display:none" />
</a>
<a
href="http://steinheim-institut.de/cgi-bin/epidat?id=bay&release=beta&lang=en&anzeige=mix">
<img alt="Bayreuth: Jewish Cemetery"
src="resources/img/0000_bth_090521l1000946pc_klein_s_w.png"
data-image="resources/img/0000_bth_090521l1000946pc_klein_s_w.png"
data-description="Bert Sommer [CC BY 4.0], via epidat"
style="display:none" />
</a>
</div>
</div>
<div class="step">
<h2 class="red">cultural impact</h2>
<figure class="mfp-lightbox">
<a href="resources/img/lichtisch_kanne.png"><img
src="resources/img/lichtisch_kanne.png" /></a></figure><p
class="right x-small">HyperImage <a
href="http://www.uni-lueneburg.de/hyperimage/HI_Altona/">Lighting Table</a>
with cans (Hamburg chronologically)</p>
</div>
<div class="step">
<div class="row">
<div class="three columns">
<h2 class="red">shoes</h2>
</div>
<div class="nine columns">
<ul>
<li>depicting relation between persons and houses</li>
<li>former housesymbol became part of name</li>
<li>symbols depicting contemporary design</li>
</ul></div></div>
<div id="shoes" style="display:none">
<a href="resources/img/shoe_ffb-444.png"><img alt="ffb-444"
src="resources/img/shoe_ffb-444.png"
data-image="resources/img/shoe_ffb-444.png" data-description="ffb-444"
style="display:none" /></a>
<a href="resources/img/shoe_ffb-444_klein.png"><img alt="ffb-2057"
src="resources/img/shoe_ffb-2057.png"
data-image="resources/img/shoe_ffb-2057.png" data-description="ffb-2057"
style="display:none" /></a>
<a href="resources/img/shoe_ffb-55.png"><img alt="ffb-55"
src="resources/img/shoe_ffb-55.png"
data-image="resources/img/shoe_ffb-55.png" data-description="ffb-55"
style="display:none" /></a>
<a href="resources/img/shoe_ffb-1584.png"><img alt="ffb-1584"
src="resources/img/shoe_ffb-1584.png"
data-image="resources/img/shoe_ffb-1584.png" data-description="ffb-1584"
style="display:none" /></a>
<a href="resources/img/shoe_ffb-52.png"><img alt="ffb-52"
src="resources/img/shoe_ffb-52.png"
data-image="resources/img/shoe_ffb-52.png" data-description="ffb-52"
style="display:none" /></a>
<a href="resources/img/shoe_ffb-1678.png"><img alt="ffb-1678"
src="resources/img/shoe_ffb-1678.png"
data-image="resources/img/shoe_ffb-1678.png" data-description="ffb-1678"
style="display:none" /></a>
</div>
</div>
<div class="step">
<h2 class="red">transdisciplinary perspectives</h2>
<h3>on headstone (single object) and cemetery (ensemble)</h3>
<table>
<tr>
<td class="red">text(s)</td>
<td>text constitution | edition | philology</td>
</tr>
<tr>
<td class="red">image(s)</td>
<td>symbols | ornaments | decoration | arthistory</td>
</tr>
<tr>
<td class="red">textbearing object</td>
<td>form | shape | material | monument preservation </td>
</tr>
<tr>
<td class="red">relations</td>
<td>genealogy | intertextuality | inter-culturality | spatial relations
between objects – headstone is part of a row, a field, a section of the
cemetery</td>
</tr>
<tr>
<td class="red">history </td>
<td>names (onomatics) | persons (prosopography | events | ideas - values -
mentalities</td>
</tr>
</table>
</div>
<!--
history
onomatology - names / development of "Jewish Names"
biography / genealogy (e.g. family history / relations)
history of community, migration, 'events'
economic history
art-history
symbols, ornaments
form and shape
linguistic/lexicography interest
literature
prosody
history of ideas - history of values - history of mentalities
theology
gender research
geology (materials)
-->
<div class="step">
<h2 class="red">02</h2>
<h3>about epidat</h3>
</div>
<div class="step">
<div class="row">
<div class="eight columns">
<h2 class="red">epidat</h2>
<ul class="line-height-one-five medium even-left">
<li>2002 set up as a database in order to manage the inventarisation of
about 6.000 headstones from the Ashkenazic Cemetery in
Hamburg-Altona (1621-1871) and to enable a team of 10-12 researchers
from different places to ingest data</li>
<li>remote access | server based</li>
<li>in 2006 epidat went online</li>
<li>more projects followed: ongoing development of epidat is driven by projects and cooperations
for seventeen years already</li>
</ul>
<figure class="mfp-lightbox">
<a href="resources/img/chart.png"><img src="resources/img/chart.png"
/></a>
</figure>
</div>
<div class="four columns">
<figure class="mfp-lightbox right"><a href="resources/img/x_0409030217.jpg"
><img src="resources/img/x_0409030217.jpg" /></a></figure>
<p class="x-small centered line-height-one-five up-25">Hamburg, Königstraße
foto by Bert Sommer</p>
<figure class="mfp-lightbox">
<a href="resources/img/kol4.jpg"><img src="resources/img/kol4.jpg"
/></a>
<figcaption class="x-small centered">foto by M. Brocke </figcaption>
</figure>
</div>
</div>
</div>
<div class="step">
<div class="row">
<div class="six columns">
<h2 class="red">scope</h2>
<!--<ul class="line-height-one-five">
<li>190 digital editions of historical Jewish cemeteries</li>
<li>35,000 headstones</li>
<li>68,000 digital images</li>
<li>900 years</li>
<li>4 countries (Germany, Netherlands, Czechia, Lithuania</li>
</ul>-->
<table>
<tr>
<td>cemeteries</td>
<td class="right">199</td>
</tr>
<tr>
<td>headstones</td>
<td class="right">35,494 </td>
</tr>
<tr>
<td> images</td>
<td class="right">69,393 </td>
</tr>
<tr>
<td>persons</td>
<td class="right">31,456</td>
</tr>
<tr>
<td>dates</td>
<td class="right">24,191</td>
</tr>
<tr>
<td>places</td>
<td class="right">190</td>
</tr>
<tr>
<td>countries</td>
<td class="right">4</td>
</tr>
</table>
<!--<figure class="mfp-lightbox even-right"><a
href="resources/img/epidat_startpage.png"><img
src="resources/img/epidat_startpage.png" /></a></figure>-->
<p class="x-small right up-25"><a
href="http://www.steinheim-institut.de/cgi-bin/epidat?lang=en"
>www.steinheim-institut.de/cgi-bin/epidat</a></p></div>
<div class="six columns">
<figure class="mfp-lightbox even-right down-100"><a
href="resources/img/epi_beta_small.png"><img
src="resources/img/epi_beta_small.png" /></a></figure>
<p class="x-small right up-25"><a
href="http://www.steinheim-institut.de/cgi-bin/epidat?lang=en&release=beta"
>beta version</a> (2019/03)</p>
</div>
</div>
</div>
<div class="step">
<h2 class="red">time-based access options</h2>
<div class="row">
<div class="six columns">
<figure class="mfp-lightbox even-left ">
<a href="resources/img/timebased_hebrew.png">
<img src="resources/img/timebased_hebrew.png" /></a>
</figure>
<p class="x-small up-25">search for <a
href="http://www.steinheim-institut.de/cgi-bin/epidat?info=time&show=search4hebyear&lang=en&release=beta"
>hebrew year</a></p>
<figure class="mfp-lightbox even-left">
<a href="resources/img/yahrzeit_beta.png"><img src="resources/img/yahrzeit_beta.png"/></a>
</figure>
<p class="x-small up-25"><a href="http://steinheim-institut.de/cgi-bin/epidat?info=time&show=yahrzeit&lang=en&release=beta">yahrzeit</a></p>
</div>
<div class="six columns">
<h4 class="down-25">Browse the digital editions </h4>
<ul class="even-left medium line-height-one-five">
<li>by year, month, day</li>
<li>by period</li>
<li>with spatio-temporal geobrowser</li>
<li><figure class="mfp-lightbox even-left">
<a href="resources/img/geobrowser_names.png">
<img src="resources/img/geobrowser_names.png" style="width:20rem"
/></a>
</figure></li>
<li>full-text search in one, several or all collections</li>
</ul>
</div>
</div>
</div>
<div class="step">
<h2 class="red">location-based access options</h2>
<div class="row">
<div class="four columns">
<figure class="mfp-lightbox even-left ">
<a href="resources/img/locationbased.png">
<img src="resources/img/locationbased.png" /></a>
</figure>
<p class="x-small up-25"><a
href="http://www.steinheim-institut.de/cgi-bin/epidat?info=space&lang=en&release=beta&show=cemeteries&letter=s#alfabet"
>Browse</a> by place or region</p>
</div>
<div class="four columns">
<figure class="mfp-lightbox even-left">
<a href="resources/img/fulltext_rotschild.png">
<img src="resources/img/fulltext_rotschild.png" style="width:20rem"
/></a>
</figure>
<p class="x-small up-25"><a
href="http://www.steinheim-institut.de/cgi-bin/epidat?suche=Rothschild&function=suche&sel=ad2%27aha%27l05%27alt%27ans%27ar1%27asc%27bme%27arl%27bay%27bee%27c02%27bng%27blr%27sb3%27bom%27gda%27gdn%27bnm%27bns%27bor%27hrs%27wal%27e51%27bri%27alm%27mad%27e01%27e99%27e02%27brh%27che%27c01%27dtm%27dds%27din%27e03%27e04%27ap2%27ap1%27dor%27hoe%27dld%27dme%27dwi%27c03%27du2%27du3%27du4%27du1%27du6%27du5%27elm%27erc%27erf%27wsw%27seg%27est%27wrd%27kuc%27ffb%27ffs%27ffh%27frd%27e05%27e52%27gsk%27gws%27e10%27e11%27e12%27e13%27e14%27hgl%27hgw%27hb2%27hbs%27hha%27hht%27hdh%27hnn%27hns%27blu%27hen%27her%27hld%27hos%27hxf%27c05%27ils%27imr%27ihl%27iis%27irw%27igw%27e06%27jen%27e17%27e18%27e19%27kal%27e20%27hlh%27kob%27kwr%27e21%27e22%27kre%27e23%27e42%27e43%27wnk%27lag%27lau%27lin%27mz1%27e25%27mmd%27sb1%27msn%27min%27e26%27e31%27e30%27e29%27e27%27e28%27mlh%27mue%27e32%27e41%27sb5%27e33%27c06%27obh%27obl%27obw%27oer%27ora%27sb0%27l06%27pro%27que%27rae%27reg%27rex%27bbr%27e54%27e53%27e34%27e35%27rth%27oes%27sbs%27sb2%27sb9%27sb6%27l08%27srm%27e09%27e16%27smk%27st3%27e36%27sgb%27e58%27sdh%27sts%27spy%27sb7%27sb8%27sb4%27roe%27e37%27e44%27tr1%27tri%27e60%27e61%27l07%27e38%27e39%27e40%27lom%27ver%27e07%27e08%27win%27wrm%27hdf&lang=de&projekt=&sm=AND&check=1&beg=&end=&wo=edueb"
>full-text search</a> in one, several or all collections</p>
</div>
<div class="four columns">
<figure class="mfp-lightbox even-left">
<a href="resources/img/geobrowser.png"><img src="resources/img/geobrowser.png"/></a>
</figure>
<p class="x-small"><a href="https://geobrowser.de.dariah.eu/embed/?kml=http://steinheim-institut.de/daten/epidat.kml">spatio-temporal-visualisation</a> with geobrowser</p>
</div>
</div>
</div>
<div class="step">
<h2 class="red">personal data</h2>
<div class="row">
<div class="four columns">
<figure class="mfp-lightbox even-left ">
<a href="resources/img/listofname.png">
<img src="resources/img/listofname.png" /></a>
</figure>
<p class="x-small up-25"><a
href="http://www.steinheim-institut.de/cgi-bin/epidat?info=names&lang=en&release=beta&show=listofname&letter=v#alfabet"
>list of names</a></p>
</div>
<div class="four columns">
<figure class="mfp-lightbox even-left">
<a href="resources/img/person_entry.png">
<img src="resources/img/person_entry.png" /></a>
</figure>
</div>
<div class="four columns">
<ul class="line-height-one-five even-left down-25 small">
<li>collection of names</li>
<li>date of death according to common date</li>
<li>date of death according to hebrew date</li>
<li>Link to edition of headstone</li>
<li>linked data</li>
</ul>
</div>
</div>
</div>
<div class="step">
<table class="small">
<tr>
<th></th>
<th class="red"><h2>epidat research data </h2></th>
</tr>
<tr>
<td><h4>licence</h4></td>
<td>are released online under an open Creative Commons Licence <a
href="http://creativecommons.org/licences/by/4.0"><img
src="resources/img/cc.png" style="width:10rem" /></a></td>
</tr>
<tr>
<td><h4>standard format</h4></td>
<td class="line-height-one-five"> are provided in <!--different formats <ul
class="even-left line-height-one-five">
<li> in html5 for the world wide web
<!-\-a format
for <span class="dotted">readers</span>, which provides epigraphical
research data by the means of webdesign, typography in a structured form-\-></li>
<li> in--> <a href="https://sourceforge.net/p/epidoc/wiki/Home/"
>EpiDoc: TEI XML for Epigraphic Documents</a>
for<!-- <span
class="dotted">users</span>, thus providing research data in a-->
machine readable, system-independent, program-independent and
structured access <!--data format, which is --> (and widely used
by digitalepigraphers)<!--</li>
</ul>--></td>
</tr>
<tr>
<td><h4>interoperability</h4></td>
<td>are mapped to authority files, controlled vocabularies and thesauri</td>
</tr>
<tr>
<td><h4>interfaces</h4></td>
<td>are provided via a machine readable interface (e.g. in order to re-use
the data)</td>
</tr>
</table>
</div>
<div class="step">
<h2 class="red">
03
</h2>
<h3>Research Platform for Jewish Epigraphy</h3>
</div>
<div class="step">
<div class="row">
<div class="twalve columns">
<figure class="mfp-lightbox">
<a href="resources/img/rufus_pollock.jpg">
<img src="resources/img/rufus_pollock.jpg" />
</a>
</figure>
</div>
<p class="x-small right">source: <a href="https://twitter.com/rufuspollock"
>Rufus Pollock</a></p></div>
</div>
<div class="step">
<h2 class="red">open cultural data landscape</h2>
<div class="row">
<div class="six columns">
<figure class="mfp-lightbox even-left" style="width:40rem;"><a href="resources/img/poeticrelief-org-ffb-2049-2019-02-13-03_05_50.png"><img src="resources/img/poeticrelief-org-ffb-2049-2019-02-13-03_05_50.png"/></a></figure><p class="x-small"><a href="http://www.poeticrelief.org">http://www.poeticrelief.org</a></p></div>
<div class="six columns">
<blockquote>During the first German cultural hackathon, <a href="http://codingdavinci.de">Coding da Vinci</a>, where the <a href="http://www.steinheim-institut.de/wiki/index.php/Hauptseite">Steinheim Institute</a> acted as participating cultural institution and partner, the <a href="http://www.steinheim-institut.de/cgi-bin/epidat">epidat dataset</a> was presented and the website was developed from it in order to present the grave inscriptions in a new way.
<!-- Translated with www.DeepL.com/Translator--></blockquote>
<p class="x-small right"><a href="http://www.poeticrelief.org/faq">http://www.poeticrelief.org/faq</a></p>
</div>
</div>
</div>
<div class="">
<div class="step">
<h2 class="red">visualising DH data sets</h2>
<div class="row">
<div class="six columns">
<figure class="mfp-lightbox even-left"><a
href="resources/img/graph_aha-family-relations.png"><img
src="resources/img/graph_aha-family-relations.png"
/></a></figure>
<!-- <p class="x-small up-25"><a
href="http://xtriples.spatialhumanities.de/examples/dh/epidat/index.html"
>Kollatz-Kuczera-Schrade </a></p>-->
</div>
<div class="six columns">
<blockquote><strong>DHd2016 Leipzig / Pre-Conference Workshop</strong> For the visualisations, data sets from the Salomon Ludwig Steinheim-Institut for Jewish-German History and the Academy of Sciences and Literature | Mainz have been used.</blockquote>
<p class="x-small right"><a href="http://dhd2016.digitale-akademie.de/workshop/">Kollatz-Kuczera-Schrade 2016</a></p>
</div></div>
<pre><code class="xml"><listPerson>
<person xml:id="hha-3361-1" sex="1">
<persName>Schmuel ben Jehuda</persName>
<span class="red"><strong><death when="1621-08-17"/></strong></span>
</person>
<listRelation>
<relation name="parent" active="#hha-3361-1" passive="#hha-2437-1 #hha-6241-1"/>
<relation name="spouse" mutual="#hha-3360-1 #hha-3361-1"/>
</listRelation>
</listPerson></code></pre>
<p class="x-small right"><a
href="http://www.steinheim-institut.de/cgi-bin/epidat?id=hha-3361-teip5"
>hha-3361-teip5</a></p>
</div>
</div>
<div class="step">
<figure class="mfp-lightbox"><a href="resources/img/dhdworkshop2016.png"><img src="resources/img/dhdworkshop2016.png"/></a></figure>
</div>
<div class="step">
<h2 class="red">Visualizing family relations</h2>
<div class="row">
<div class="five columns"><figure class="mfp-lightbox even-left"><a
href="resources/img/hha_visualization.png"><img
src="resources/img/hha_visualization.png" /></a></figure><p class="x-small right"><a href="http://xtriples.spatialhumanities.de/examples/dh/epidat/index.html">Torsten Schrade</a></p></div>
<div class="seven columns">
<blockquote>
Inspiration for this example drawn from a discussion about visualizing XML based relationships on the TEI mailinglist. Credits and thanks to Thomas Kollatz for the idea. The RDF extraction is modelled on FOAF to represent persons, BIO to represent dates of death and REL to build family relations between persons. Visualization is done using the Sgvizler library and it's Dracula Graph implementation.</blockquote><p class="x-small right">about <a href="http://xtriples.spatialhumanities.de/index.html">XTripels</a></p>
</div></div>
</div>
<div class="step">
<h2 class="red">Linked Open Data</h2><!-- A generic webservice to extract RDF statements from XML resources. -->
<ul class="up-25 line-height-one-five">
<li>From <code>EpiDoc – TEI XML</code>
</li>
<li>via <code>XTripels webservice</code></li>
<li>to semantic RDF-statements (<code>Triples</code>)</li>
</ul>
<div class="row up-25">
<div class="twelve columns box" style="position: relative; top: -35px; height:250px;">
<svg style="position: relative; z-index: 1; margin-bottom: -50px;"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg" width="100%" height="237pt"
viewBox="0.00 0.00 1232.00 237.00">
<g id="graph0" class="graph"
transform="scale(1 1) rotate(0) translate(4 233)">
<title>d1e255</title>
<polygon style="fill:white;stroke:white;"
points="-4,4 -4,-233 1228,-233 1228,4 -4,4"/>
<!-- A1 -->
<g id="node1" class="node">
<title>A1</title>
<polygon style="fill:none;stroke:black;"
points="938,-116 854,-116 854,-82 938,-82 938,-116"/>
<text text-anchor="middle" x="896" y="-103"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:E55_Type:</text>
<text text-anchor="middle" x="896" y="-90"
style="font-family:Times New Roman;font-size:10.00px;"
> </text>
</g>
<!-- "Mann" -->
<g id="node3" class="node">
<title>"Mann"</title>
<text text-anchor="middle" x="1150" y="-127.5"
style="font-family:Times New Roman;font-size:10.00px;"
>"Mann"</text>
</g>
<!-- A1->"Mann" -->
<g id="edge2" class="edge">
<title>A1->"Mann"</title>
<path style="fill:none;stroke:blue;"
d="M939,-104C987,-110 1066,-120 1113,-126"/>
<polygon style="fill:blue;stroke:blue;"
points="1112.7,-129.488 1123,-127 1113.4,-122.522 1112.7,-129.488"/>
<text text-anchor="middle" x="1023" y="-121.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P3_has_note</text>
</g>
<!-- A3 -->
<g id="node4" class="node">
<title>A3</title>
<polygon style="fill:none;stroke:black;"
points="593,-200 497,-200 497,-166 593,-166 593,-200"/>
<text text-anchor="middle" x="545" y="-187"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:E21_Person:</text>
<text text-anchor="middle" x="545" y="-174"
style="font-family:Times New Roman;font-size:10.00px;"
> </text>
</g>
<!-- A4 -->
<g id="node6" class="node">
<title>A4</title>
<polygon style="fill:none;stroke:black;"
points="938,-172 854,-172 854,-138 938,-138 938,-172"/>
<text text-anchor="middle" x="896" y="-159"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:E55_Type:</text>
<text text-anchor="middle" x="896" y="-146"
style="font-family:Times New Roman;font-size:10.00px;"
> </text>
</g>
<!-- A3->A4 -->
<g id="edge4" class="edge">
<title>A3->A4</title>
<path style="fill:none;stroke:blue;"
d="M594,-177C623,-173 660,-169 693,-166 745,-161 803,-158 843,-157"/>
<polygon style="fill:blue;stroke:blue;"
points="843.398,-160.478 853,-156 842.701,-153.512 843.398,-160.478"/>
<text text-anchor="middle" x="752" y="-169.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P2_has_type</text>
</g>
<!-- A5 -->
<g id="node8" class="node">
<title>A5</title>
<polygon style="fill:none;stroke:black;"
points="970,-228 822,-228 822,-194 970,-194 970,-228"/>
<text text-anchor="middle" x="896" y="-215"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:E82_Actor_Appellation:</text>
<text text-anchor="middle" x="896" y="-202"
style="font-family:Times New Roman;font-size:10.00px;"
> </text>
</g>
<!-- A3->A5 -->
<g id="edge6" class="edge">
<title>A3->A5</title>
<path style="fill:none;stroke:blue;"
d="M594,-187C650,-192 743,-199 812,-204"/>
<polygon style="fill:blue;stroke:blue;"
points="811.701,-207.488 822,-205 812.398,-200.522 811.701,-207.488"/>
<text text-anchor="middle" x="752" y="-205.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P131_is_identified_by</text>
</g>
<!-- A4->"Mann" -->
<g id="edge22" class="edge">
<title>A4->"Mann"</title>
<path style="fill:none;stroke:blue;"
d="M939,-151C987,-146 1066,-138 1113,-134"/>
<polygon style="fill:blue;stroke:blue;"
points="1113.4,-137.478 1123,-133 1112.7,-130.512 1113.4,-137.478"/>
<text text-anchor="middle" x="1023" y="-149.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P3_has_note</text>
</g>
<!-- "Jehuda" -->
<g id="node19" class="node">
<title>"Jehuda"</title>
<text text-anchor="middle" x="1150" y="-208.5"
style="font-family:Times New Roman;font-size:10.00px;"
>"Jehuda"</text>
</g>
<!-- A5->"Jehuda" -->
<g id="edge16" class="edge">
<title>A5->"Jehuda"</title>
<path style="fill:none;stroke:blue;"
d="M970,-211C1017,-211 1074,-211 1112,-211"/>
<polygon style="fill:blue;stroke:blue;"
points="1112,-214.5 1122,-211 1112,-207.5 1112,-214.5"/>
<text text-anchor="middle" x="1023" y="-214.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P3_has_note</text>
</g>
<!-- http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13 -->
<g id="node9" class="node">
<title>http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13</title>
<a
xlink:href="http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13"
xlink:title="crm:E19_Physical_Object:\nhttp://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13">
<polygon style="fill:none;stroke:black;"
points="289,-143 1,-143 1,-109 289,-109 289,-143"/>
<text text-anchor="middle" x="145" y="-130"
style="font-family:Times New Roman;font-size:10.00px;fill:blue;"
>crm:E19_Physical_Object:</text>
<text text-anchor="middle" x="145" y="-117"
style="font-family:Times New Roman;font-size:10.00px;fill:blue;"
>http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13</text>
</a>
</g>
<!-- http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13->A3 -->
<g id="edge12" class="edge">
<title>http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13->A3</title>
<path style="fill:none;stroke:blue;"
d="M264,-143C338,-153 428,-166 486,-175"/>
<polygon style="fill:blue;stroke:blue;"
points="485.701,-178.488 496,-176 486.398,-171.522 485.701,-178.488"/>
<text text-anchor="middle" x="349" y="-163.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P131i_identifies</text>
</g>
<!-- "Breite, hochrechteckige Sandsteinstele mit geradem\nAbschluss. Das ver [...]" -->
<g id="node11" class="node">
<title>"Breite, hochrechteckige Sandsteinstele mit
geradem\nAbschluss. Das ver [...]"</title>
<text text-anchor="middle" x="545" y="-130"
style="font-family:Times New Roman;font-size:10.00px;"
>"Breite, hochrechteckige Sandsteinstele mit geradem</text>
<text text-anchor="middle" x="545" y="-117"
style="font-family:Times New Roman;font-size:10.00px;"
>Abschluss. Das ver [...]"</text>
</g>
<!-- http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13->"Breite, hochrechteckige Sandsteinstele mit geradem\nAbschluss. Das ver [...]" -->
<g id="edge8" class="edge">
<title>http://www.steinheim-institut.de/cgi-bin/epidat?id=aha-13->"Breite,
hochrechteckige Sandsteinstele mit geradem\nAbschluss. Das
ver [...]"</title>
<path style="fill:none;stroke:blue;"
d="M290,-126C325,-126 363,-126 398,-126"/>
<polygon style="fill:blue;stroke:blue;"
points="398,-129.5 408,-126 398,-122.5 398,-129.5"/>
<text text-anchor="middle" x="349" y="-129.5"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:P3_has_note</text>
</g>
<!-- A0 -->
<g id="node13" class="node">
<title>A0</title>
<polygon style="fill:none;stroke:black;"
points="593,-86 497,-86 497,-52 593,-52 593,-86"/>
<text text-anchor="middle" x="545" y="-73"
style="font-family:Times New Roman;font-size:10.00px;"
>crm:E21_Person:</text>