Datasets:
File size: 7,948 Bytes
3f17e0c 5bbe15c 3f17e0c 5bbe15c | 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 | ---
license: odbl
pretty_name: Ray-Traced Cross-Frequency Radio Map Dataset
tags:
- radio-propagation
- path-loss
- radio-map
- wireless-communications
- ray-tracing
- 6g
- channel-modeling
size_categories:
- 1K<n<10K
task_categories:
- image-to-image
annotations_creators:
- machine-generated
language: []
configs:
- config_name: default
data_files:
- split: train
path: "splits/train.csv"
- split: validation
path: "splits/val.csv"
- split: test
path: "splits/test.csv"
---
# Ray-Traced Cross-Frequency Radio Map Dataset
A large ray-traced radio-map (path-loss) dataset for **zero-shot
cross-frequency generalization** research, generated with
[Sionna RT](https://nvlabs.github.io/sionna/) over real urban geometry from
OpenStreetMap.
- **150 urban scenes** across 15 cities, 256×256 rasters
- **8 transmitters per scene** across three deployment strata (street,
rooftop, mast)
- **6 carrier frequencies**: 1.8, 3.5, 7, 28 GHz (training) + 10, 60 GHz
(held out, for interpolation / extrapolation studies)
- **7,200 path-loss maps** (150 × 8 × 6), receiver fixed at 1.5 m
- **Frozen train/val/test split** (124/13/13 scenes) for reproducible
benchmarking
- Isotropic antennas on both ends; per-scene building-height rasters
included
## Intended use
This dataset is designed to benchmark **radio-map prediction models on
carrier frequencies not seen during training** — i.e. can a model trained
at 1.8/3.5/7/28 GHz predict path loss at an interpolated (10 GHz) or
extrapolated (60 GHz) band. It also supports standard (same-frequency)
radio-map estimation, scene-generalization studies, and physics-informed
learning research.
## Quick start
```python
from huggingface_hub import snapshot_download
root = snapshot_download(repo_id="SHussain37/PRCA-Net-dataset", repo_type="dataset")
from radiomap_dataset import RadioMapData # loader.py from this repo
data = RadioMapData(root)
# frozen split, exactly as benchmarked
test_scenes = data.split("test")
# the held-out-frequency test set (interp. + extrap.)
idx = data.indices_for_split("test", freqs=[10000, 60000]) # MHz
item = data[idx[0]]
item["path_loss_db"] # (256, 256) float32, dB
item["height_map"] # (256, 256) float32, building height (m)
```
## Directory layout
```
manifest.csv # one row per map: scene_id, tx_id, freq_mhz, rx_height_m, file
scene_split.csv # frozen train/val/test partition (by scene_id)
splits/{train,val,test}.csv # same split, flat per-map lists (for HF viewer)
scenes/
S0001_nyc-midtown-01/
meta.json # tile size, raster resolution, tx metadata
height_map.npy # (256, 256) float32 building height, metres
... # 150 scene folders
maps/
S0001_nyc-midtown-01/
S0001_nyc-midtown-01__T01__f001800__h0015.npz # key 'path_loss_db'
... # 48 maps per folder (8 Tx x 6 freq)
...
```
### Filename convention
Each map file is named:
```
<scene_id>__T<NN>__f<FFFFFF>__h<HHHH>.npz
```
| token | meaning | example |
|-------------|----------------------------------|--------------|
| `<scene_id>`| scene / folder name | `S0001_nyc-midtown-01` |
| `T<NN>` | transmitter index (01–08) | `T01` |
| `f<FFFFFF>` | frequency in MHz, 6-digit padded | `f001800` = 1800 MHz, `f060000` = 60 GHz |
| `h<HHHH>` | rx height in decimetres | `h0015` = 1.5 m (constant) |
Each `.npz` contains a single array under key `path_loss_db`: a
`(256, 256) float32` path-loss map in dB. The receiver height is 1.5 m for
every map, so `h0015` is constant throughout.
## Frequencies
| Band | Role | `freq_mhz` |
|----------|----------------------|-----------|
| 1.8 GHz | training | 1800 |
| 3.5 GHz | training | 3500 |
| 7 GHz | training | 7000 |
| 28 GHz | training | 28000 |
| 10 GHz | held out (interp.) | 10000 |
| 60 GHz | held out (extrap.) | 60000 |
## Benchmarking: reproducing the splits
To compare against results reported on this dataset, **use the frozen split
verbatim** — do not re-partition. The split is defined by scene in
`scene_split.csv` (124 train / 13 val / 13 test), so no scene ever appears
in two splits. The `splits/{train,val,test}.csv` files list the same
partition per-map (and power the dataset viewer above).
The recommended way is the provided loader, which resolves the split for you:
```python
from huggingface_hub import snapshot_download
root = snapshot_download(repo_id="SHussain37/PRCA-Net-dataset",
repo_type="dataset")
from radiomap_dataset import RadioMapData # radiomap_dataset/ ships in this repo
data = RadioMapData(root)
# --- the exact evaluation regimes ---
# training frequencies (1.8/3.5/7/28 GHz), unseen TEST scenes:
seen_freq = data.indices_for_split("test", freqs=[1800, 3500, 7000, 28000])
# held-out frequencies, TEST scenes -- the cross-frequency benchmark:
interp_10 = data.indices_for_split("test", freqs=[10000]) # interpolation
extrap_60 = data.indices_for_split("test", freqs=[60000]) # extrapolation
heldout_all = data.indices_for_split("test", freqs=[10000, 60000])
for i in extrap_60[:1]:
item = data[i]
item["path_loss_db"] # (256, 256) float32, dB -- prediction target
item["height_map"] # (256, 256) float32, building height (m)
item["scene_id"], item["tx_id"], item["freq_mhz"]
```
If you prefer not to use the loader, read `scene_split.csv` directly and
filter your own dataframe by `scene_id` — the split membership is the only
thing you must keep identical.
### Reported evaluation protocol
For results comparable to the paper:
- **Metric:** RMSE in **dB**, pooled over all valid (ray-reached,
non-building) pixels — pool globally, do **not** average per-map RMSE
(that biases the estimate).
- **Regimes:** report per scene×frequency regime; separate held-out
**10 GHz (interpolation)** and **60 GHz (extrapolation)**, and also split
**LoS vs NLoS** where relevant.
- **Validity mask:** a pixel is valid if it is reached by the ray tracer and
not inside a building. (The `path_loss_db` maps encode unreached/building
pixels consistently; mask them out identically for every model.)
## Generation
Maps were computed with **Sionna RT 2.0.1**'s `RadioMapSolver`
(3.2×10⁸ rays per transmitter, diffraction enabled). Transmitters and
receivers are single **isotropic** antennas — no antenna directivity — so
the maps reflect propagation (free-space spreading, diffraction,
scattering, multipath) rather than antenna-pattern effects. Building
geometry is from OpenStreetMap.
> **Reproducibility note.** With diffraction enabled, Sionna RT's
> `RadioMapSolver` is not perfectly deterministic across runs even with a
> fixed seed (upstream behaviour). The released maps are fixed; this only
> affects users re-running the generation pipeline.
## License
**Data and code are under different licenses.**
- **Data** (maps, height maps, metadata): **ODbL v1.0**, because it derives
from OpenStreetMap. Required attribution:
*"Contains information from OpenStreetMap, © OpenStreetMap contributors,
ODbL."*
- **Code** (the `radiomap_dataset` loader and scripts): **MIT**.
## Citation
```bibtex
@misc{radiomap_xfreq_2026,
title = {Ray-Traced Cross-Frequency Radio Map Dataset},
author = {[AUTHORS — fill in at public release]},
year = {2026},
howpublished = {Hugging Face Hub},
note = {DOI: [generate at public release]},
license = {ODbL-1.0}
}
```
Please also cite the associated paper (see the repository for the current
reference).
## Acknowledgements
Building geometry © OpenStreetMap contributors (ODbL). Ray tracing with
NVIDIA Sionna RT (Apache-2.0).
|