Changes between Version 3 and Version 4 of Tutorials/Digital Twins/Geo2Sig Map Getting Started


Ignore:
Timestamp:
Jan 21, 2026, 5:37:19 PM (5 days ago)
Author:
srivera2
Comment:

Legend:

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

    v3 v4  
    1313* Building height calibration using Digital Elevation Models (DEMs)
    1414
    15 This drastically improves the accuracy of the environment being processed by the ML-based Propagation Model or a ray tracer of your choice. Throughout the following notebook examples, we utilize Sionna RT. This package is open-source and highly accurate for generating coverage maps. If you are unfamiliar with Sionna RT, feel free to read Nvidia's [https://arxiv.org/abs/2504.21719 Technical Report] to better understand how it works.
     15This drastically improves the accuracy of the environment being processed by the ML-based Propagation Model or a ray tracer of your choice. Throughout the following notebook examples, we utilize Sionna RT. This package is open-source and highly accurate for generating coverage maps. If you are unfamiliar with Sionna RT, feel free to read Nvidia's [https://arxiv.org/abs/2504.21719 Technical Report] to better understand how it works. Tutorials for Sionna can be found [here https://nvlabs.github.io/sionna/rt/tutorials.html].
    1616
    1717=== Prerequisites ===
    1818
     19To use Geo2SigMap with ease, we **strongly** suggest managing python packages using Anaconda. Anaconda's package manager, [https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html conda], offers everything you need with no extra configuration. It becomes extremely useful while running the notebook examples in the [wiki:Demos] section.
     20
     21The installation process should ensure that all required packages are installed. In the event of any issue, this is the [https://github.com/bndr/pipreqs pipreqs] list as of 1/21/2025:
     22
     23{{{#!div style="font-size: 100%"
     24  {{{#!python
     25  osmnx >= 2.0.0
     26  numpy
     27  pyproj
     28  shapely
     29  rasterio
     30  tqdm
     31  pillow
     32  open3d
     33  }}}
     34}}}
     35
     36Given the large overhead for ray tracing and ML tasks, access to a dedicated GPU is also suggested. Using Sionna RT with a CPU is limited and will restrict the possibilities
     37
    1938=== Package Installation ===
     39
     401. Create the Conda Environment:
     41
     42   {{{
     43   #!sh
     44   conda create --yes --name g2sm --channel conda-forge pdal python=3.12
     45   conda activate g2sm
     46   pip install pyvista==0.45.2
     47   }}}
     48
     49   If you opt not to use conda, please note the additional installation of pyvista v0.45.2
     50
     512. Clone and Install geo2sigmap:
     52
     53   {{{
     54   #!sh
     55   git clone https://github.com/functions-lab/geo2sigmap
     56   cd geo2sigmap/package
     57   pip install .
     58   }}}
     59
     60   The package is now installed and can be called via the CLI tool **or** using the Python function API.
    2061
    2162=== Demos ===