Changes between Version 14 and Version 15 of Tutorials/Digital Twins/Geo2Sig Map Getting Started


Ignore:
Timestamp:
Jan 26, 2026, 7:17:20 AM (2 weeks ago)
Author:
srivera2
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Digital Twins/Geo2Sig Map Getting Started

    v14 v15  
    7676=== Generating a Coverage Map with Sionna RT ===
    7777
    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.
     78This 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.
    7979
    80 1. In your working directory, use this command to generate the scene:
     801. In your working directory, use this command to generate the scene. Add LiDAR flag for an accurate, calibrated map terrain:
    8181
    8282   {{{
    8383   #!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  
    8585   }}}
    8686
     
    100100   }}}
    101101
    102 3.
     1023. 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   }}}
    103112
    104113==== Cite ====