jliang097 commited on
Commit
39c7303
·
verified ·
1 Parent(s): 91df1a5

Update dataset card README

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FARM Aerial Radio Map Dataset
2
+
3
+ ## Overview
4
+
5
+ This repository releases the constructed aerial radio map datasets based on ARM-Omni for FARM training and evaluation. The datasets correspond to Table 2 of the FARM paper and include `D1-D10`, `P1`, `F1`, and `A1`.
6
+
7
+ ARM-Omni is introduced in the paper as a large-scale aerial radio environment dataset. This Hugging Face release provides the ARM datasets used in the FARM experiments as downloadable scene archives. It is not a full ARM-Omni release.
8
+
9
+ Paper:
10
+
11
+ - https://arxiv.org/abs/2604.17362
12
+
13
+ Code:
14
+
15
+ - The FARM codebase will be released separately.
16
+
17
+ ## Dataset Coverage
18
+
19
+ | Dataset | Frequencies (GHz) | Max Rx Height (m) | Beamwidths | Map Grid Size | Volume |
20
+ | --- | --- | ---: | --- | --- | ---: |
21
+ | D1 | 2.1, 3.3, 5.9 | 120 | 30°, 120°, Iso | 512 × 512 | 15000 |
22
+ | D2 | 3.5, 4.9, 5.9 | 130 | 30°, 120°, Iso | 512 × 512 | 15000 |
23
+ | D3 | 2.1, 4.9, 5.9 | 110 | 30°, 120° | 512 × 512 | 15000 |
24
+ | D4 | 3.3, 3.5, 4.9 | 110 | 30°, 120°, Iso | 512 × 512 | 15000 |
25
+ | D5 | 3.3, 4.9, 5.9 | 120 | 30°, 120°, Iso | 512 × 512 | 15000 |
26
+ | D6 | 2.1, 3.3, 3.5 | 130 | 30°, 120° | 512 × 512 | 15000 |
27
+ | D7 | 2.1, 3.3, 3.5, 5.9 | 130 | 30°, Iso | 512 × 512 | 15000 |
28
+ | D8 | 2.1, 3.5, 4.9, 5.9 | 100 | 120°, Iso | 512 × 512 | 15000 |
29
+ | D9 | 2.1, 3.3, 3.5, 4.9 | 120 | 30°, 120° | 512 × 512 | 15000 |
30
+ | D10 | 2.1, 3.3, 3.5, 4.9, 5.9 | 130 | 30°, 120°, Iso | 512 × 512 | 15000 |
31
+ | P1 | 2.1, 3.3, 3.5, 4.9, 5.9 | 150 | 30°, 120°, Iso | 256 × 256 | 15000 |
32
+ | F1 | 2.6, 7.1 | 120 | 30°, 120°, Iso | 512 × 512 | 15000 |
33
+ | A1 | 2.1, 3.3, 3.5, 4.9, 5.9 | 120 | 60° | 512 × 512 | 15000 |
34
+
35
+ `D1-D10` are used for primary training and evaluation. `P1`, `F1`, and `A1` are used for zero-shot evaluation.
36
+
37
+ ## Repository Layout
38
+
39
+ Each scene is stored as a compressed archive on the Hub:
40
+
41
+ ```text
42
+ <dataset>/scene_<scene_id>.tar.gz
43
+ ```
44
+
45
+ After extraction, the scene contains .npy ARM tensors organized as:
46
+
47
+ ```text
48
+ <dataset>/<scene_id>/<frequency>/<antenna_pattern>/tx<ID>_yaw<VALUE>.npy
49
+ ```
50
+
51
+ Example:
52
+
53
+ ```text
54
+ D1/7/freq59/iso/tx45_yaw0.npy
55
+ ```
56
+
57
+ Scene IDs are not globally continuous across dataset groups. Users should rely on the extracted folder names as the authoritative scene IDs.
58
+
59
+ ## Data Format
60
+
61
+ Each `.npy` file stores an aerial radio map tensor with shape:
62
+
63
+ ```text
64
+ 1 × H × W × W
65
+ ```
66
+
67
+ The first dimension is the radio-map channel. `H` is the height axis. `W` follows the map grid size listed in Dataset Coverage. Most dataset groups use `512 × 512` spatial grids, while `P1` uses `256 × 256`.
68
+
69
+ ## Signal Encoding and Scene Metadata
70
+
71
+ - The no-signal truncation threshold is `-120 dB`. In the encoded `uint8` representation, this threshold corresponds to pixel value `130`.
72
+ - Building occupancy is embedded in the released ARM tensors; in each height-layer radio map, pixels with value `0` correspond to building-occupied regions.
73
+ - The transmitter location metadata is stored in the scene-level CSV file:
74
+
75
+ ```text
76
+ <dataset>/<scene_id>/tx_positions_512.csv
77
+ ```
78
+
79
+ - For `P1`, the released map grid is `256 × 256`. When using transmitter locations recorded in the original `512 × 512` scene coordinate system, the `256 × 256` region is centered on the transmitter pixel. For convenience, the crop window can be computed as:
80
+
81
+ ```python
82
+ def compute_centered_crop_window(center_row, center_col, height, width, crop_size=256):
83
+ crop_h = min(int(crop_size), int(height))
84
+ crop_w = min(int(crop_size), int(width))
85
+ start_y = max(0, min(int(center_row) - crop_h // 2, int(height) - crop_h))
86
+ start_x = max(0, min(int(center_col) - crop_w // 2, int(width) - crop_w))
87
+ return start_y, start_y + crop_h, start_x, start_x + crop_w
88
+ ```
89
+ ## Citation
90
+
91
+ If you use this dataset, please cite the FARM paper:
92
+
93
+ ```text
94
+ S. Gao, J. Liang, Y. Yuan, W. Lu, G. Shen, and L. Yang, "FARM: Foundational Aerial Radio Map for Intelligent Low-Altitude Networking," arXiv preprint arXiv:2604.17362, 2026.
95
+
96
+ @article{gao2026farm,
97
+ author = {Gao, Shijian and Liang, Jiahui and Yuan, Yifeng and Lu, Wenlihan and Shen, Guobin and Yang, Liuqing},
98
+ title = {{FARM}: Foundational Aerial Radio Map for Intelligent Low-Altitude Networking},
99
+ journal = {arXiv preprint arXiv:2604.17362},
100
+ year = {2026}
101
+ }