File size: 3,722 Bytes
127bad5
 
 
 
08e3640
 
127bad5
 
 
 
 
 
 
 
08e3640
127bad5
 
e122ccb
39c7303
e122ccb
39c7303
e122ccb
08e3640
 
 
 
39c7303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
08e3640
39c7303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
08e3640
39c7303
 
08e3640
39c7303
 
08e3640
39c7303
 
 
 
 
 
 
 
 
 
 
08e3640
39c7303
 
08e3640
39c7303
 
 
 
 
 
 
 
 
127bad5
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
---
license: mit
pretty_name: FARM Aerial Radio Map Dataset
task_categories:
  - image-to-image
  - feature-extraction
tags:
  - radio-map
  - aerial-networking
  - wireless-communication
  - low-altitude-networking
  - foundation-model
  - simulation
size_categories:
  - 10M<n<100M
---

# FARM Aerial Radio Map (ARM) Dataset

## Paper:

- FARM: Foundational Aerial Radio Map for Intelligent Low-Altitude Networking (https://arxiv.org/abs/2604.17362)

## Overview

This repository releases the constructed ARM datasets based on ARM-Omni for FARM training, in-domain evaluation (`D1-D10`), and zero-shot evaluation (`P1`, `F1`, and `A1`). The dataset coverage is summarized below:


| Dataset | Frequencies (GHz) | Max Rx Height (m) | Beamwidths | Map Grid Size | Volume |
| --- | --- | ---: | --- | --- | ---: |
| D1 | 2.1, 3.3, 5.9 | 120 | 30°, 120°, Iso | 512 × 512 | 15000 |
| D2 | 3.5, 4.9, 5.9 | 130 | 30°, 120°, Iso | 512 × 512 | 15000 |
| D3 | 2.1, 4.9, 5.9 | 110 | 30°, 120° | 512 × 512 | 15000 |
| D4 | 3.3, 3.5, 4.9 | 110 | 30°, 120°, Iso | 512 × 512 | 15000 |
| D5 | 3.3, 4.9, 5.9 | 120 | 30°, 120°, Iso | 512 × 512 | 15000 |
| D6 | 2.1, 3.3, 3.5 | 130 | 30°, 120° | 512 × 512 | 15000 |
| D7 | 2.1, 3.3, 3.5, 5.9 | 130 | 30°, Iso | 512 × 512 | 15000 |
| D8 | 2.1, 3.5, 4.9, 5.9 | 100 | 120°, Iso | 512 × 512 | 15000 |
| D9 | 2.1, 3.3, 3.5, 4.9 | 120 | 30°, 120° | 512 × 512 | 15000 |
| D10 | 2.1, 3.3, 3.5, 4.9, 5.9 | 130 | 30°, 120°, Iso | 512 × 512 | 15000 |
| P1 | 2.1, 3.3, 3.5, 4.9, 5.9 | 150 | 30°, 120°, Iso | 256 × 256 | 15000 |
| F1 | 2.6, 7.1 | 120 | 30°, 120°, Iso | 512 × 512 | 15000 |
| A1 | 2.1, 3.3, 3.5, 4.9, 5.9 | 120 | 60° | 512 × 512 | 15000 |

A fuller ARM-Omni release is planned for a future update.

## Repository Layout

Each scene is stored as a compressed archive on the Hub:

```text
<dataset>/scene_<scene_id>.tar.gz
```

After extraction, the scene contains .npy ARM tensors organized as:

```text
<dataset>/<scene_id>/<frequency>/<antenna_pattern>/tx<ID>_yaw<VALUE>.npy
```

Example:

```text
D1/7/freq59/iso/tx45_yaw0.npy
```

Scene IDs are not globally continuous across dataset groups. Users should rely on the extracted folder names as the authoritative scene IDs.

## Data Format

Each released raw `.npy` file stores an ARM volume with shape:

```text
1 × 30 × 512 × 512
```

The dimensions correspond to one radio-map channel, 30 height layers, and a `512 × 512` spatial grid. During data loading, different input sizes can be obtained by selecting a subset of height layers and applying a spatial crop centered on the transmitter pixel. For example, this procedure is used to obtain the `256 × 256` crop for `P1`.

## Signal Encoding and Scene Metadata

- The no-signal truncation threshold is `-120 dB`. In the encoded `uint8` representation, this threshold corresponds to pixel value `130`.
- Building occupancy is embedded in the released ARM tensors; in each height-layer radio map, pixels with value `0` correspond to building-occupied regions.
- The transmitter location metadata is stored in the scene-level CSV file:

```text
<dataset>/<scene_id>/tx_positions_512.csv
```

````md
## Citation

If you use this dataset, please cite our paper:

```text
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.

@article{gao2026farm,
  author  = {Gao, Shijian and Liang, Jiahui and Yuan, Yifeng and Lu, Wenlihan and Shen, Guobin and Yang, Liuqing},
  title   = {{FARM}: Foundational Aerial Radio Map for Intelligent Low-Altitude Networking},
  journal = {arXiv preprint arXiv:2604.17362},
  year    = {2026}
}