Datasets:

Modalities:
Text
Formats:
json
ArXiv:
License:
lmoncla commited on
Commit
6344c61
·
verified ·
1 Parent(s): c00f4c1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -3
README.md CHANGED
@@ -1,3 +1,93 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ ---
4
+
5
+
6
+ # EDDA-Coordinata
7
+
8
+
9
+ EDDA-Coordinata is a gold standard dataset of enriched geographic coordinates extracted from the 18th-century Encyclopédie of Diderot and d'Alembert. The dataset is designed to support the training and evaluation of models for retrieving and normalizing historical geographic coordinates, which are often expressed with varying levels of precision and non-standard notation.
10
+
11
+
12
+ ## Dataset Description
13
+
14
+ <!-- Provide a longer summary of what this model is. -->
15
+
16
+ - **Authors:** [Ludovic Moncla](https://ludovicmoncla.github.io), [Pierre Nugues](), [Thierry Joliveau]() and [Katherine McDonough](https://www.lancaster.ac.uk/dsi/about-us/members/katherine-mcdonough#projects) in the framework of the [GEODE](https://geode-project.github.io) project.
17
+ - **Data source:** [ARTFL Encyclopédie Project](https://artfl-project.uchicago.edu), University of Chicago
18
+ - **Domain:** Historical Geography
19
+ - **Github repository:** [https://github.com/GEODE-project/edda-coordinata](https://github.com/GEODE-project/edda-coordinata)
20
+ - **Language:** French
21
+ - **License:** cc-by-nc-4.0
22
+
23
+
24
+
25
+ ## Dataset Structure
26
+
27
+ The dataset is provided as a list of JSON dictionaries.
28
+
29
+ ### Data Fields
30
+
31
+ Each entry contains the following six keys:
32
+ * id-enccre: Unique identifier for the entry from ENCCRE
33
+ * headword: The headword of the article.
34
+ * text: The raw text of the article.
35
+ * coordinates: A list of coordinates, represented as strings within nested lists.
36
+ * meridian: A list of specific Prime Meridians (e.g., Paris, Beijing, London, or Lund) if mentioned in the text.
37
+
38
+
39
+
40
+ ### Spatial Geometries
41
+
42
+ Coordinates are represented using nested lists to reflect different geometric types:
43
+
44
+ * Points: Represented as singletons (e.g., `[["52 10 N 24 36' E"]]`).
45
+ * Rectangles (Bounding Boxes): Represented as a pair of strings (e.g., `[['6 N 48 E', '20 N 65 E']]`).
46
+ * Polygonal Chains: Prefixed with pchain for connected points like river sources.
47
+ * Sequences: Prefixed with subart (subentries) or multsrc (multiple cited sources).
48
+
49
+
50
+ ## Dataset Composition
51
+
52
+ Out of 15,278 total entries, the dataset includes:
53
+
54
+ * 4,798 entries with manually identified, explicit coordinates.
55
+ * 10,480 entries containing descriptive location information without numerical coordinates.
56
+
57
+
58
+ ### Precision Statistics for Well-Formed Points
59
+
60
+ The dataset captures various historical precision formats:
61
+
62
+ * Degrees and Minutes (DM): 3,356 entries (the most common).
63
+ * Degrees (D): 116 entries.
64
+ * Degrees, Minutes, and Seconds (DMS): 221 entries.
65
+
66
+
67
+ #### Note
68
+
69
+ > Longitude coordinates in the dataset are typically referenced to the Paris meridian (often using El Hierro as a proxy) and may require a reduction of approximately -17.66° to convert to modern decimal degrees relative to Greenwich.
70
+
71
+
72
+ ## Annotation Process
73
+
74
+
75
+ The dataset was built through a double annotation process.
76
+
77
+ * **Agreement:** Initial agreement was 0.981 for points and 0.523 for surfaces.
78
+ * **Reconciliation:** Discrepancies were resolved through collaborative systematic review to ensure a triple-checked gold standard.
79
+
80
+
81
+
82
+ ## Citation
83
+ If you use this dataset, please cite the following paper:
84
+
85
+ ```
86
+ @inproceedings{moncla-2026-lrec,
87
+ title = "{EDDA}-Coordinata: An Annotated Dataset of Historical Geographic Coordinates",
88
+ author = "Moncla, Ludovic and Nugues, Pierre and Joliveau, Thierry and McDonough, Katherine",
89
+ booktitle = "Proceedings of the 15th Language Resources and Evaluation Conference (LREC 2026)",
90
+ year = "2026",
91
+ address = "Palma, Spain",
92
+ }
93
+ ```