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
This module contains ELP2000-82B lunar-theory data and build-time generation
logic for the Rust coefficient tables.
- ----
```bash
sed -n '1,220p' archive/src/elp/manifest.toml
Build the generated tables:
```bash
cd archive
cargo check --features elp
```
Replace or add raw ELP files under `raw/`, update `manifest.toml` with file
metadata and provenance, then validate and rebuild:
```bash
cd archive
cargo run -p archive-validate -- MANIFEST.toml
cargo check --features elp
```
Generated `elp_data.rs` output lives in Cargo `OUT_DIR`; do not commit it.
Enable the `elp` feature and use `siderust_archive::elp::elp_data` plus the
typed term structs from `siderust_archive::elp`.