Visualization of ENVI-met microclimate simulation data on a dashboard.
This project is based on two simulation outputs from the ENVI-met microclimate model, each representing different scenarios. The first scenario illustrates the current or "status quo" conditions, while the second ("optimized") scenario includes various mitigation measures aimed at enhancing thermal comfort in the area.
The primary goal is to develop Python scripts that generate clear, insightful visualizations of these outputs. These visualizations enable users to easily interpret results, compare scenarios, and gain a comprehensive understanding of how the mitigation measures impact thermal comfort.
- Input data for both simulation runs:
- Model area (INX file)
- Simulation configuration (SIMX file)
- Project information (INFOX and EDB files)
- Climate input data (FOX file)
- Output data for both simulation runs:
- netCDF file format
Microclimate Simulation Dashboard
-
Activate the virtual environment:
.\venv\Scripts\activate
-
Install the dependencies:
pip install -r requirements.txt
-
Navigate to the
/src
folder:cd src
-
Run the
app.py
file:python app.py
To display the repository structure in the terminal:
Get-ChildItem -Recurse -File | Where-Object { $_.FullName -notmatch "venv|__pycache__" } | Format-Table -Property FullName