File size: 10,309 Bytes
1e56ba2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0910c6a
3b5bf1e
d6a617d
3b5bf1e
d6a617d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8fb3c50
1e56ba2
 
 
 
 
 
d6a617d
 
 
 
 
 
 
 
 
 
 
 
 
 
1e56ba2
d6a617d
 
 
 
 
 
 
 
56310b7
 
 
 
 
 
d6a617d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1275136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d6a617d
 
 
 
1e56ba2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d6a617d
 
 
 
 
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
---
license: odbl
language:
  - fr
  - la
  - en
tags:
  - french-revolution
  - ocr
  - primary-sources
  - digital-humanities
pretty_name: Scans  primary sources of the French Revolution
size_categories:
  - 10K<n<100K
---

# scans

Scans of primary sources from the French Revolution.

The product of this repository is **stable, citable addresses**. Structured facts and
translations live elsewhere and cite into this one. Everything here exists to make those
addresses resolvable, unambiguous, and correct.

## Addresses

```
turgot-1739                     a record
turgot-1739.p0                  its first page — the atlas key sheet
journal-de-paris-1789-01-03.p1  page 1 of that day's issue
```

Ids are flat and never contain `/`, so **directories are cosmetic**: folders can be
reorganised without breaking a single citation. Ask the tool what an address points at:

```sh
cd tools && cargo run -- resolve turgot-1739.p0
```

## The model

Four layers, named after their TEI equivalents. `layer` says which; `type` says the genre
within it (`newspaper`, `map`, `issue`, `supplement`, `engraving`, …).

| `layer`    | what it is                                        | example                      |
| ---------- | ------------------------------------------------- | ---------------------------- |
| `source`   | the publication or work, independent of any copy  | `journal-de-paris`           |
| `copy`     | one physical object that was digitised            | `journal-de-paris-1789-vol1` |
| `document` | the citable intellectual unit                     | `journal-de-paris-1789-01-03`|
| `page`     | one scanned side, carrying graphics               | `…-01-03.p1`                 |

Layers may be skipped: `of` points at any ancestor, so a one-off engraving is a single
`document` file and does not pay four files of ceremony. A page is never a file of its own —
it is declared inline as `[[page]]` in the record that owns it.

A file states only what is new. `[rights]`, `[[resp]]`, `language`, `scan.file` and the rest
are inherited down the `of` chain; `date`, `title`, `note`, `url` and `[[page]]` are not.

## Layout

```
sources/
  frc/                                      the Newberry French Revolution Collection
    ab/abondance00unse/
      abondance00unse.toml                  source, one per Internet Archive item
      abondance00unse.p1.ocr.md             OCR, one file per page
      abondance00unse.pdf                   the scan
    …38,377 items across ~700 two-character shards
  journal-de-paris/
    journal-de-paris.toml                   source
    1789/
      journal-de-paris-1789-vol1.pdf
      journal-de-paris-1789-vol1.toml       copy
      journal-de-paris-1789-vol2.pdf
      journal-de-paris-1789-vol2.toml       copy
  turgot/
    turgot-1739.toml                        source, 21 sheets inline as [[page]]
    turgot_00.jp2 … turgot_20.jp2
  verniquet/
    verniquet-1795.toml                     source, 73 sheets inline
    verniquet_00.jp2 … verniquet_72.jp2
schemas/source.json                         GENERATED from tools/src/model.rs
schemas/ocr.json                            GENERATED from tools/src/ocr.rs
tools/                                      the `scans` CLI
docs/                                       the design spec
```

Binary assets are in Git LFS.

## The tool

The `scans` CLI is **not in this dataset** — it lives in the source repository at
<https://github.com/peasanttide/scans>. What is here is the archive it produces: the records,
the OCR, and the page images. Everything below describes what that tool does, for readers who
want to regenerate or extend the archive.

`tools/` in the source repository is a Rust crate producing the `scans` binary. One definition in
`tools/src/model.rs` drives three things at once: Rust type checking, TOML deserialisation,
and — via `schemars``schemas/source.json`. The schema is never hand-written, or it would
drift from the validator and start lying.

```sh
cd tools
cargo run -- validate            # the ten semantic checks
cargo run -- validate --strict   # warnings fail the build too
cargo run -- resolve <address>   # what does this citation point at?
cargo run -- schema --check      # has the schema drifted from the types?
cargo test
```

`validate` never opens an image by default — the archive holds several gigabytes of JPEG
2000. The checks that read bytes (real image dimensions, real PDF page counts) are behind an
optional feature:

```sh
cargo run --features probe -- validate --probe
```

## Pixels

Two commands turn a citation into an image. Both take an address, so nothing ever names a
page number inside a PDF by hand.

```sh
cargo run --release --features render -- render journal-de-paris-1789-01-03
cargo run --release --features render -- render journal-de-paris-1789-01-03.p1 --grid 2x2
cargo run --release --features render -- extract journal-de-paris-1789-01-03.p1
```

`render` rasterises the page. `extract` writes out the bitmaps stored on it, untouched.
Output goes to `.render/` at the repository root, which is gitignored: these are derived
files, reproducible at any time, and at native resolution they outweigh the PDFs.

* **Resolution is native by default** — the scan's own, taken from its largest embedded
  image. Journal de Paris pages come out around 3500x4900. `--dpi` overrides it.
* **`--grid RxC` cuts the page into tiles** with `--overlap` percent of slack on the interior
  edges. A whole page shown to a reader that samples it down to fit is illegible type; for
  this paper's two-column setting, `--grid 2x2` puts roughly one half-column in each tile.
* Both are behind the `render` feature, which is what pulls in the rasteriser. Build
  `--release`: a debug build is about thirty times slower, and it shows over 888 pages.

`hayro` does the decoding rather than `lopdf`, because every page image in volume 1 is JBIG2
and volume 2 adds JPEG 2000 plates. It is pure Rust, so there is no Ghostscript, pdfium or C
toolchain to install.

Each record carries a `#:schema` directive on its first line, which is what gets it validated
in an editor. See `schemas/README.md` — the alternative, an editor schema association, was
tested and silently does nothing.

## OCR

Word-level OCR lives in a sidecar beside the record it belongs to, one markdown file per
scanned page, reached through the `[[text]]` that points at it.

```markdown
---
of: 1789iemilseptcen00unse
page: 6
engine: ABBYY FineReader 11.0
lang: fr
w: 2597
h: 4418
dpi: 500
---

<the page's text>
```

Frontmatter says which page of what, and how big the image is. The body is the page. That is
the whole format.

**Scalars are bare unless they would lie.** `lang: fr`, not `lang: "fr"` — the frontmatter is
meant to read as YAML. But `no` is the ISO 639-1 code for Norwegian and, to every YAML 1.1
parser, the boolean false; a Python user loading that with PyYAML gets `False`. So a value is
written bare when it round-trips as itself and quoted when it would not, which keeps the
common case clean and the pathological case correct.

**What is deliberately not here:** word boxes, per-word confidence, baselines, and DjVu's
nesting. An earlier version carried all of it and could write the source XML back out
unchanged. The boxes were seven eighths of the bytes — 8.3 GB against about 1.2 GB for the
text — and were not being used. Nothing is destroyed by that: the coordinates are still in
`XML_for_OCR/` in [frc-data](https://github.com/NewberryDIS/frc-data), one clone away, so a
later version that wants them can have them without asking archive.org for anything.

```sh
cargo run -- ocr import x_djvu.xml --out ./pages
cargo run -- ocr check sources/frc/ab/abondance00unse
```

## The French Revolution Collection

38,377 Internet Archive items from the Newberry Library, listed by
[NewberryDIS/frc-data](https://github.com/NewberryDIS/frc-data). Records and OCR come from a
local clone of that repository; only the PDFs are fetched.

```sh
git clone --filter=blob:none --no-checkout https://github.com/NewberryDIS/frc-data.git
cd frc-data && git sparse-checkout set --cone Metadata XML_for_OCR && git checkout master

cargo run --release -- frc ingest --frc-data ../frc-data      # records + OCR, ~3 minutes
cargo run --release --features fetch -- frc fetch             # the PDFs, ~21 hours
```

`frc fetch` makes one request at a time, a second apart, with a `User-Agent` naming this
repository, and verifies every download against the size and MD5 archive.org publishes for
it. It resumes from what is already on disk, so it can be killed at any moment.

## Licence

The **database** — the records, the OCR sidecars, the structure and the addresses — is under
the [Open Database License](https://opendatacommons.org/licenses/odbl/) (ODbL 1.0). Use it,
adapt it, build on it; if you publish a derived database, share it alike and keep the
attribution.

The **contents are a separate question, and mostly not ours to license.** Every work here is
an 18th-century imprint or a 19th-century study of one, long out of copyright everywhere, and
the digitisations are published as public domain by the institutions that made them. Each
record says so for itself:

```toml
[rights]
work        = "PD-old-100-expired"
scan        = "PD"
attribution = "Digitised by the Internet Archive, sponsored by The Newberry Library."
```

So: quoting a pamphlet, reprinting a page image, or lifting one item's OCR carries no
obligation from us — that material is public domain and stays public domain. ODbL bites on
the *collection*: the selection, the identifiers, the metadata mapping and the structured OCR
taken together. That distinction is the point of using a database licence rather than a
content one, and it is why the per-record `[rights]` fields are not redundant with this
section.

Scans and metadata originate with the [Newberry Library](https://www.newberry.org/) and the
[Internet Archive](https://archive.org/), and the item list comes from
[NewberryDIS/frc-data](https://github.com/NewberryDIS/frc-data).

## Design

`docs/superpowers/specs/2026-08-05-source-archive-schema-design.md` is the authority: the
four layers, the inheritance allowlist, EDTF dates, and the ten validation checks, with the
reasoning for each.