-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
599 lines (590 loc) · 15.6 KB
/
index.html
File metadata and controls
599 lines (590 loc) · 15.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ancient to Modern Unit Converter</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Upper left panel -->
<div class="panel info-panel">
<div class="inner-box">
<h1>Ancient Unit Converter</h1>
<p>This applet allows you to convert ancient biblical units to their modern equivalents with ease.</p>
<p>The calculations are based on the equivalence tables developed by Peter Schmidt in <a href="https://test-silorg.sil.org/resources/archives/56085"><i>Biblical Measures and their Translation: Notes on Translating Biblical Units of Length, Area, Capacity, Weight, Money and Time</i></a> (SIL Electronic Working Papers 112, 2014). Dr Schmidt released an updated <a href="https://ot-translation-aids.net/measurements-ii-0">guide</a> (<a href="guide.pdf">mirror</a>) in 2025 with some additional suggestions, which we also follow.</p>
<p>All the equivalences are reconstructed and therefore approximate. Bear in mind that often when translating biblical texts it makes sense to leave the original units or provide roughly equivalent modern customary units for stylistic or narratological reasons.</p>
<p>Check out this applet's code on <a href="https://github.com/normansimonr/ancient-unit-converter">GitHub</a>. Made by Norman Simón Rodríguez.</p>
</div>
</div>
<!-- Upper right panel -->
<div class="panel applet-panel">
<div class="inner-box">
<div id="converter">
<label for="input-value">Enter the ancient unit value:</label>
<input type="number" id="input-value" placeholder="Enter a number">
<label for="input-unit">Select the ancient unit (translations are in English and Spanish):</label>
<select id="input-unit">
<!-- Ancient length units -->
<optgroup label="Length (OT)">
<option value="cubit">אמה — cubit, codo</option>
<option value="long cubit">אמה ארוך — long cubit, codo largo</option>
<option value="finger">אצבע — finger, dedo</option>
<option value="GMD cubit">גמד — cubit, codo (alternative name)</option>
<option value="span">זרת — span, palmo</option>
<option value="handbreadth">טפח — handbreadth, palmo menor</option>
<option value="reed">קנה — reed, caña</option>
</optgroup>
<optgroup label="Length (NT)">
<option value="Shabbath's day walk">οδοσ σαββατου — sabbath's day walk, camino de un sábado</option>
<option value="fathom"><strong>οργυια</strong> — fathom, braza</option>
<option value="New Testament cubit">πηχυς — cubit, codo</option>
<option value="stade">σταδιος — stade, estadio</option>
<option value="Roman mile">μιλιον — roman mile, milla romana</option>
</optgroup>
<!-- Ancient capacity units -->
<optgroup label="Capacity (OT)">
<option value="pre-exilic ephah">איפה — pre-exilic ephah, efa preexílica</option>
<option value="post-exilic ephah">איפה — post-exilic ephah, efa postexílica</option>
<option value="pre-exilic bath">בת — pre-exilic bath, bat preexílico</option>
<option value="post-exilic bath">בת — post-exilic bath, bat postexílico</option>
<option value="double bath"> בת בת — double bath, bat doble</option>
<option value="pre-exilic hin">הין — pre-exilic hin, hin preexílico</option>
<option value="post-exilic hin">הין — post-exilic hin, hin postexílico</option>
<option value="pre-exilic dry homer">חמר — pre-exilic dry homer, homer preexílico áridos</option>
<option value="pre-exilic liquid homer">חמר — pre-exilic liquid homer, homer preexílico líquidos</option>
<option value="post-exilic homer">חמר — post-exilic homer, homer postexílico</option>
<option value="pre-exilic dry kor">כר — pre-exilic dry kor, coro preexílico áridos</option>
<option value="pre-exilic liquid kor">כר — pre-exilic liquid kor, coro preexílico líquidos</option>
<option value="post-exilic kor">כר — post-exilic kor, coro postexílico</option>
<option value="log">לג — log</option>
<option value="letek">לתך — letek</option>
<option value="pre-exilic seah">סאה — pre-exilic seah, seah preexílica</option>
<option value="post-exilic seah">סאה — post-exilic seah, seah postexílica</option>
<option value="omer">עומר — omer</option>
<option value="issaron">עשרון — issaron</option>
<option value="kav">קב — kav</option>
</optgroup>
<optgroup label="Capacity (NT)">
<option value="New Testament bath">βατος — New Testament bath, bat del Nuevo Testamento</option>
<option value="New Testament kor">κορος — New Testament kor, coro del Nuevo Testamento</option>
<option value="choinix">χοινιξ — choinix</option>
<option value="metritis">μετρητης — metritis</option>
<option value="New Testament seah">σατον — New Testament seah, seah del Nuevo Testamento</option>
</optgroup>
<!-- Ancient weight units -->
<optgroup label="Weight (OT)">
<option value="beka">בקע — bekah, beka</option>
<option value="shekel">גרה — gerah, gera</option>
<option value="talent">ככר — talent, talento</option>
<option value="mina">מנה — mina</option>
<option value="pim">פים — pim</option>
<option value="shekel">שקל — shekel, siclo</option>
</optgroup>
<optgroup label="Weight (NT)">
<option value="litra">λιτρα — litra</option>
<option value="Revelation's talent">ταλαντιαιος — Revelation's talent, talento del Apocalipsis</option>
</optgroup>
</select>
<button onclick="convert()">Convert</button>
<div id="result"></div>
</div>
</div>
</div>
<!-- Bottom panel -->
<div class="panel table-panel">
<div class="inner-box">
<h2>Unit Equivalences</h2>
<table><thead>
<tr>
<th>Testament</th>
<th>Unit type</th>
<th>Period</th>
<th>Unit name (+ identifiers)</th>
<th>Formula</th>
<th>English</th>
<th>Spanish</th>
<th>Comments</th>
</tr></thead>
<tbody>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>אמה</td>
<td>0.45 × metres</td>
<td>Cubit</td>
<td>Codo</td>
<td>Schmidt's suggestion: Round up to 0.5m for simplified calculation</td>
</tr>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>אצבע</td>
<td>אמה / 24</td>
<td>Finger</td>
<td>Dedo</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>טפח</td>
<td>אמה / 6</td>
<td>Handbreadth</td>
<td>Palmo menor</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>זרת</td>
<td>אמה / 2</td>
<td>Span</td>
<td>Palmo</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>אמה_ארוך</td>
<td>7 × טפח</td>
<td>Long cubit</td>
<td>Codo largo</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>קנה</td>
<td>אמה_ארוך × 6</td>
<td>Reed</td>
<td>Caña</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Length</td>
<td></td>
<td>גמד</td>
<td>אמה</td>
<td>Cubit (alternative name)</td>
<td>Codo (nombre alternativo)</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Length</td>
<td></td>
<td>πηχυς</td>
<td>אמה_ארוך</td>
<td>New Testament cubit</td>
<td>Codo del Nuevo Testamento</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Length</td>
<td></td>
<td>οργυια</td>
<td>1.8 × metres</td>
<td>Fathom</td>
<td>Braza</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Length</td>
<td></td>
<td>σταδιος</td>
<td>185 × metres</td>
<td>Stade</td>
<td>Estadio</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Length</td>
<td></td>
<td>οδοσ_σαββατου</td>
<td>200 × πηχυς</td>
<td>Shabbath’s day walk</td>
<td>Camino de un día de reposo</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Length</td>
<td></td>
<td>μιλιον</td>
<td>1497 × metres</td>
<td>Roman_mile</td>
<td>Milla romana</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Pre-exilic</td>
<td>איפה_א</td>
<td>litres × 10</td>
<td>Ephah</td>
<td>Efa</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Pre-exilic</td>
<td>בת_א</td>
<td>litres × 22</td>
<td>Bath</td>
<td>Bato</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Post-exilic</td>
<td>איפה_ב</td>
<td>litres × 39</td>
<td>Ephah</td>
<td>Efa</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td></td>
<td>לג</td>
<td>בת_א / 72</td>
<td>Log</td>
<td>Log</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td></td>
<td>קב</td>
<td>איפה_א / 18</td>
<td>Kav</td>
<td>Kav</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td></td>
<td>עומר</td>
<td>איפה_א / 10</td>
<td>Omer</td>
<td>Omer</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td></td>
<td>עשרון</td>
<td>עומר</td>
<td>Issaron</td>
<td>Isaron</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Pre-exilic</td>
<td>הין_א</td>
<td>בת_א / 6</td>
<td>Hin</td>
<td>Hin</td>
<td>Schmidt's suggestion: Round to 4L (maths value is ~3.66L)</td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Post-exilic</td>
<td>בת_ב</td>
<td>איפה_ב</td>
<td>Bath</td>
<td>Bato</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Post-exilic</td>
<td>הין_ב</td>
<td>בת_ב / 6</td>
<td>Hin</td>
<td>Hin</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Pre-exilic</td>
<td>סאה_א</td>
<td>איפה_א / 3</td>
<td>Seah</td>
<td>Seah</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Post-exilic</td>
<td>סאה_ב</td>
<td>איפה_ב / 3</td>
<td>Seah</td>
<td>Seah</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td></td>
<td>בת_בת</td>
<td>litres × 39</td>
<td>Double bath</td>
<td>Doble bato</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity (dry)</td>
<td>Pre-exilic</td>
<td>חמר_א_א</td>
<td>10 × איפה_א</td>
<td>Homer</td>
<td>Homer</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity (liquid)</td>
<td>Pre-exilic</td>
<td>חמר_א_ב</td>
<td>10 × בת_א</td>
<td>Homer</td>
<td>Homer</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Post-exilic</td>
<td>חמר_ב</td>
<td>10 × איפה_ב</td>
<td>Homer</td>
<td>Homer</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity (dry)</td>
<td>Pre-exilic</td>
<td>כר_א_א</td>
<td>חמר_א_א</td>
<td>Kor</td>
<td>Coro</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity (liquid)</td>
<td>Pre-exilic</td>
<td>כר_א_ב</td>
<td>חמר_א_ב</td>
<td>Kor</td>
<td>Coro</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td>Post-exilic</td>
<td>כר_ב</td>
<td>חמר_ב</td>
<td>Kor</td>
<td>Coro</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Capacity</td>
<td></td>
<td>לתך</td>
<td>חמר_א_א / 2</td>
<td>Letek</td>
<td>Letek</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Capacity</td>
<td></td>
<td>σατον</td>
<td>סאה_ב</td>
<td>New Testament seah</td>
<td>Seah del Nuevo Testamento</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Capacity</td>
<td></td>
<td>βατος</td>
<td>בת_ב</td>
<td>New Testament bath</td>
<td>Bato del Nuevo Testamento</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Capacity</td>
<td></td>
<td>κορος</td>
<td>כר_ב</td>
<td>New Testament kor</td>
<td>Coro del Nuevo Testamento</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Capacity</td>
<td></td>
<td>χοινιξ</td>
<td>litres × 1</td>
<td>Choinix</td>
<td>Choinix</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Capacity</td>
<td></td>
<td>μετρητης</td>
<td>βατος</td>
<td>Metritis</td>
<td>Metritis</td>
<td></td>
</tr>
<tr>
<td>BOTH</td>
<td>Weight</td>
<td></td>
<td>Kilograms in one litre (grain)</td>
<td>litres × (2/3)</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>BOTH</td>
<td>Weight</td>
<td></td>
<td>Kilograms in one litre (flour)</td>
<td>litres × 0.5</td>
<td></td>
<td></td>
<td>Schmidt's suggestion: Flour is lighter than grain (0.5 kg/L)</td>
</tr>
<tr>
<td>OLD</td>
<td>Weight</td>
<td></td>
<td>שקל</td>
<td>grams × 12</td>
<td>Shekel</td>
<td>Siclo</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Weight</td>
<td></td>
<td>גרה</td>
<td>שקל / 20</td>
<td>Gerah</td>
<td>Gera</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Weight</td>
<td></td>
<td>בקע</td>
<td>שקל / 2</td>
<td>Beka</td>
<td>Beka</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Weight</td>
<td></td>
<td>מנה</td>
<td>שקל × 50</td>
<td>Mina</td>
<td>Mina</td>
<td></td>
</tr>
<tr>
<td>OLD</td>
<td>Weight</td>
<td></td>
<td>ככר</td>
<td>שקל × 3000</td>
<td>Talent</td>
<td>Talento</td>
<td>Schmidt's suggestion: Round to 35kg (maths value is 36kg)</td>
</tr>
<tr>
<td>OLD</td>
<td>Weight</td>
<td></td>
<td>פים</td>
<td>שקל × 0.66</td>
<td>Pim</td>
<td>Pim</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Weight</td>
<td></td>
<td>λιτρα</td>
<td>grams × 327</td>
<td>Litra</td>
<td>Litra</td>
<td></td>
</tr>
<tr>
<td>NEW</td>
<td>Weight</td>
<td></td>
<td>ταλαντιαιος</td>
<td>grams × 40000</td>
<td>Revelation talent</td>
<td>Talento del Apocalipsis</td>
<td></td>
</tr>
</tbody></table>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>