--- 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__T__f__h.npz ``` | token | meaning | example | |-------------|----------------------------------|--------------| | ``| scene / folder name | `S0001_nyc-midtown-01` | | `T` | transmitter index (01–08) | `T01` | | `f` | frequency in MHz, 6-digit padded | `f001800` = 1800 MHz, `f060000` = 60 GHz | | `h` | 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).