Changes between Version 14 and Version 15 of Tutorials/Digital Twins/Geo2Sig Map Getting Started
- Timestamp:
- Jan 26, 2026, 7:17:20 AM (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Digital Twins/Geo2Sig Map Getting Started
v14 v15 76 76 === Generating a Coverage Map with Sionna RT === 77 77 78 This tutorial follows[https://github.com/functions-lab/geo2sigmap/tree/main/package this README] and [https://github.com/functions-lab/geo2sigmap/blob/main/research/examples/1_sionna_coverage_map.ipynb this notebook]. Feel free to reference either directly if you require custom modifications.78 This tutorial is adapted from [https://github.com/functions-lab/geo2sigmap/tree/main/package this README] and [https://github.com/functions-lab/geo2sigmap/blob/main/research/examples/1_sionna_coverage_map.ipynb this notebook]. Feel free to reference either directly if you require custom modifications. 79 79 80 1. In your working directory, use this command to generate the scene :80 1. In your working directory, use this command to generate the scene. Add LiDAR flag for an accurate, calibrated map terrain: 81 81 82 82 {{{ 83 83 #!python 84 scenegen bbox -73.973178 40.793488 -73.963824 40.803430 --data-dir scenes/COSMOS 84 scenegen bbox -73.973178 40.793488 -73.963824 40.803430 --data-dir scenes/COSMOS --enable-lidar-terrain 85 85 }}} 86 86 … … 100 100 }}} 101 101 102 3. 102 3. Load and preview your scene: 103 104 {{{ 105 #!python 106 SCENE_FOLDER = "../scenes/COSMOS" 107 scene = load_scene(f"{SCENE_FOLDER}/scene.xml") 108 109 # Interactive 3D visualization and view of the scene 110 scene.preview(); 111 }}} 103 112 104 113 ==== Cite ====
