File size: 1,392 Bytes
30d138d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Scene2Wave packaged release schema

The Hub release stores each formal sample as one uncompressed tar. The complete
unpacked field reference is retained in `metadata/raw_dataset_schema.md`; the
machine-readable JSON Schema is `metadata/json_schema.json`.

## Archive index

Each line of `metadata/samples.jsonl` contains the original public sample index
fields plus:

- `archive_path`: repository-relative tar path;
- `archive_bytes`: exact archive size;
- `archive_sha256`: lowercase SHA-256 digest.

`relative_path` preserves the original unpacked sample location for provenance.
Use `archive_path` when reading this packaged release.

## Archive member root

Each tar contains:

```text
./sample_metadata.json
./carla/
./sionna/
```

Archive names and checksums are authoritative in `metadata/samples.jsonl` and
`checksums.sha256`. Archives are deterministic: sorted member order, numeric
owner/group zero, and normalized modification time.

## Safe extraction

The release archives are created from project-controlled relative paths. A
generic application should nevertheless reject absolute paths and `..` path
components before extracting any tar obtained from an untrusted source.

Python 3.12 or newer can use `tarfile.extractall(..., filter="data")`. For
earlier Python versions, inspect members before extraction or read files with
`extractfile()` as demonstrated in `README.md`.