From Wind to Smoke: A Unified WebGIS Platform for Wildfire Simulation and Visualization
Abstract
1. Introduction
2. Materials and Methods
2.1. WebGIS Architecture Overview
2.2. Back-End Modules
2.2.1. Back-End Governing SINUMCC Web Service
2.2.2. Database
2.2.3. Internal Map Server
2.2.4. SINUMCC Simulation Toolset
- LauncherThe Launcher is composed of a collection of Python scripts that provides added functionality aimed to ease the treatment of geospatial information and the integration of the Core tools in a GIS. Its main task is handling a sequence of operations that are divided into (i) preprocessing tasks; (ii) simulation execution; and (iii) postprocessing tasks. Throughout these steps, the Launcher also gathers the progress of each of them and reports to the main SINUMCC Web Service in the Back-End, allowing the whole tracking of the simulation from the Front-End.The devised preprocessing tasks involve cropping and reprojecting the information found in the global/regional internal geospatial databases used as the three cartographic input sources, the DEM, the fuel type map, and the fuel presence map, as outlined at the end of this section. These operations are performed according to the instructions set in the main configuration file, including the simulation bounding box, the Universal Transverse Mercator (UTM) coordinate system chosen for the simulation in the specific geographical region, the spatial resolution, and the path to the original internal datasets. This way, all the input files will be georeferenced using the same projection system and resolution, thus achieving consistency between the different raster inputs in a single step. Furthermore, any raster or vector file formats can be used as global/regional input datasets (except for the DEM, where only raster is allowed) as long as they are supported by the GDAL library. These tasks are performed by several Python modules that are called by the Launcher and make intensive use of the GDAL library bindings.The Python script allows the set of GIS vector layers of simulation results to be processed more efficiently. In the simulation stage, the Launcher calls the Core binary to perform the numerical calculations. In the meantime, the output messages that reveal the stage along the different steps that the simulation undergoes are reported through POST requests to the main governing SINUMCC Web Service in the Back-End. Finally, once the simulation Core finishes the simulation, the Launcher triggers the postprocessing stage. In order to simplify the access to the simulation results by the end-user, a postprocessing task is set to gather all the individual files for each graphical output time step into a single Spatialite database in which each element (features representing the burning area, the burned area, the wind field, smoke concentration, etc.) is labeled with its respective time tag. This allows the Front-End specifications for the visualization of results to be fulfilled as well as facilitating the downloading of simulation results in a single file.
- HDWind: High-definition wind field modelThe HDWind model is developed to simulate the wind field within an atmospheric layer situated just above the surface S, where wildfire propagation occurs. This layer is influenced by surface temperature and local topography, whereas above it, these effects are considered negligible. As a result, the 3D domain in which the Navier–Stokes equations are formulated is assumed to have a substantially smaller vertical extent compared to its horizontal dimensions. This assumption allows for an asymptotic approximation of the Navier–Stokes equations, inspired by the principles underlying shallow water models. The model aims to generate a detailed 3D wind field over the study area by solving only 2D linear equations. To achieve this, we assume a linear decrease in air temperature with height and neglect the nonlinear terms. This approach enables efficient coupling with the 2D fire spread model PhyFire, thereby minimizing the computational cost of the HDWind–PhyFire integration. The theoretical framework for the asymptotic simplification of the Navier–Stokes equations used to derive this model is detailed in [54].In the proposed model, the 3D wind field is derived from the solution of a 2D potential problem, which is driven by the meteorological wind specified at the boundary of the domain. In practice, however, such boundary wind data are unavailable. Instead, wind speed and direction are typically measured at discrete points within the domain, such as meteorological stations. To incorporate these observations, the problem is reformulated so that the input data correspond to pointwise wind measurements rather than boundary conditions. This is accomplished by posing an optimal control problem, in which the boundary wind field acts as the control and is adjusted to best fit the available observational data. The computational strategy adopted to address this optimal control problem is presented in detail in [61].
- PhyFire: Fire spread modelPhyFire is a 2D simplified physical one-phase wildfire spread model incorporating certain 3D effects. It is based on the principles of energy and mass conservation, considering radiation and convection as the primary heat transfer mechanisms, while also accounting for heat loss in the vertical direction due to natural convection. The single phase represents the solid phase, while the gaseous phase is accounted for through a parameter influencing the convective term, as well as the flame temperature and height in the radiation term, both of which are determined using dedicated submodels. The model also incorporates the effects of fuel continuity and type, along with fuel moisture content, the latter being represented by a multi-valued operator in the enthalpy. Additionally, it considers flame tilt caused by wind or terrain slope. An optional feature allows for the integration of stochastic phenomena such as fire spotting (see [57]). The associated simplified system of partial differential equations (PDEs) yields, at each instant and for every point on the surface where fire spread is modeled, two dimensionless variables, the dimensionless temperature of the solid fuel (u) and the mass fraction of solid fuel (c), with the third variable in the system being the dimensionless enthalpy (e).The first version of this model accounted for local radiation using the Rosseland approximation and included a reactive term based on Arrhenius’ law (see [52]). Two major simultaneous improvements were later introduced: first, non-local radiation, which allowed the incorporation of 3D effects while maintaining the model’s 2D formulation, and second, a multi-valued operator in the enthalpy to model the effect of fuel moisture content (FMC) on fire spread. This novel approach to incorporating FMC effects aligns with the exponential decay in the ROS induced by this factor [62]. The current version of the model integrates the aforementioned submodels for flame temperature and height, as well as the ability to simulate certain random phenomena. Full details on the model’s evolution and its current formulation, including references to the developments mentioned above, can be found in [53]. The PDEs defining the model are complemented by the appropriate boundary and initial conditions, which establish the initial state of the fuel and the ignition point. The problem is solved using efficient numerical methods based on the finite element method (FEM). The code is also adapted for parallel computing using OpenMP, significantly reducing simulation time. The total computation time depends on factors such as the simulation domain size, time step, and spatial resolution. Notably, simulating one hour of fire spread under moderate conditions with intermediate resolution on a standard computer takes less than two minutes.
- PhyNX: Atmospheric dispersion modelPhyNX is a multilayer, non-reactive Eulerian model designed for urban-scale air quality assessments. It simulates convection and diffusion processes, is grounded in the mass conservation equation, and is specifically adapted to model the dispersion of smoke plumes originating from wildfires. The model operates within the atmospheric layer above the fire-affected surface S and is coupled with the wildfire spread model PhyFire through a boundary condition defined at the surface S. Smoke emissions from the simulated fire are calculated as a function of the amount of fuel consumed, modulated by an emission factor that depends on the fuel type. The model also assumes that smoke losses occur only at the lateral boundary, but not at the upper boundary, and that there is no deposition on the surface S.Accurate and stable numerical schemes are essential for solving air dispersion models. To address this, an Adaptive Finite Element Method (AFEM) incorporating characteristics in the horizontal plane, combined with Finite Differences in the vertical direction, has been implemented. This was achieved through operator splitting techniques and a parallelized algorithm. Operator splitting is a well-established strategy in the numerical solution of air dispersion problems, as it facilitates the decomposition of complex systems into more manageable subproblems. Our approach enables the horizontal convective and diffusive terms to be solved concurrently for each horizontal layer, allowing for increased resolution by refining the number of layers without a proportional rise in computational cost. The vertical discretization relies on the wind field provided by the HDWind model, which supplies wind data for each atmospheric layer. As a result, the method achieves high accuracy while preserving real-time or faster-than-real-time performance. For further details on the numerical scheme, its parallel implementation, and the coupling between the atmospheric dispersion model PhyNX and the wind field model HDWind, see [55].
- Neptuno++: Finite Element libraryNeptuno++ is an adaptive finite element toolbox mainly developed by L. Ferragut at SINUMCC [59] and implemented in C++. It uses 4TRivara’s refinement and error control, enabling effective solutions for both stationary and time-dependent problems. This library has been utilized to validate convergence theories in the AFEM and has been applied for the numerical simulation of several environmental problems. The current version of this library provides functionalities for handling geospatial data.
2.3. Front-End
3. Results: A Real Case Study
4. Discussion
5. Conclusions
Supplementary Materials
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
Abbreviations
AFEM | Adaptive Finite Element Method |
CA | Cellular Automata |
CFD | Computational Fluid Dynamics |
CSIRO | Commonwealth Scientific and Industrial Research Organisation |
DEM | Digital Elevation Model |
EFFIS | European Forest Fire Information System |
FEM | Finite Element Method |
FMC | Fuel Moisture Content |
GDAL | Geospatial Data Abstraction Library |
GIS | Geographic Information Systems |
HDWind | High-Definition Wind Field Model |
HTTP REST | Hypertext Transfer Protocol |
LESs | Large-Eddy Simulations |
JSON | JavaScript Object Notation |
NASA POWER | NASA Prediction Of Worldwide Energy Resources |
NFFL | National Forest Fire Laboratory |
OGC | Open Geospatial Consortium |
OSM | OpenStreetMap |
PNOA | Spanish National Plan for Aerial Orthophotography |
ROS | Rate of Spread |
SINUMCC | Numerical Simulation and Scientific Computing Research Group |
PhyFire | Physical Fire spread model |
PhyNX | Atmospheric Dispersion Model |
POST | Power-On Self-Test |
USDA | United States Department of Agriculture |
UTM | Universal Transverse Mercator |
UUID | Universally Unique Identifier |
VHR | Very High Resolution |
WFS | Web Feature Service |
WMS | Web Map Service |
WPS | Web Processing Service |
Appendix A. WebGIS Workflow
- Configuration stage (Front-End) In this stage, users define the simulation scenario by specifying the simulation domain, ignition sources, meteorological inputs, and relevant model parameters. The platform supports both default configurations for rapid execution and advanced parameterization for tailored analyses, including fuel map editing and activation of specific physical processes such as fire spotting or smoke modeling.
- Simulation stage (Back-End) Once the configuration is complete, the platform processes the input data, executes the coupled models, and performs the necessary pre- and postprocessing steps. The modular architecture and integrated simulation toolset enable efficient execution while maintaining physical realism in the modeled processes.
- Visualization stage (Front-End) Simulation results are displayed through an interactive WebGIS interface, offering 2D and 3D visualizations, statistical summaries, and temporal exploration of model outputs. The platform also supports the integration of external geospatial datasets with the simulation results, facilitating comparative analysis and operational decision-making.
References
- Crist, M.R. Rethinking the focus on forest fires in federal wildland fire management: Landscape patterns and trends of non-forest and forest burned area. J. Environ. Manag. 2023, 327, 116718. [Google Scholar] [CrossRef] [PubMed]
- Bowman, D.M.J.S.; Balch, J.K.; Artaxo, P.; Bond, W.J.; Cochrane, M.A.; D’Antonio, C.M.; DeFries, R.S.; Johnston, F.H.; Keeley, J.E.; Krawchuk, M.A.; et al. Fire in the Earth System. Science 2009, 324, 481–484. [Google Scholar] [CrossRef] [PubMed]
- Valero, M.; Rios, O.; Mata, C.; Pastor, E.; Planas, E. GIS-based integration of spatial and remote sensing data for wildfire monitoring. In Proceedings of the Earth Resources and Environmental Remote Sensing/GIS Applications IX, Berlin, Germany, 10–13 September 2018. [Google Scholar]
- Cunningham, C.; Williamson, G.; Bowman, D. Increasing frequency and intensity of the most extreme wildfires on Earth. Nat. Ecol. Evol. 2024, 8, 1420–1425. [Google Scholar] [CrossRef]
- FAO. FAO Launches Updated Guidelines to Tackle Extreme Wildfires; FAO: Rome, Italy, 2024. [Google Scholar]
- European Forest Fire Information System (EFFIS). Annual Report 2023 on Forest Fires in Europe, Middle East and North Africa; European Forest Fire Information System (EFFIS): Brussels, Belgium, 2024. Available online: https://share.google/rTjjv3sL0mV5DUIKa (accessed on 8 August 2025).
- Dirección General de Protección Civil y Emergencias. Informe Final de la Campaña de Incendios Forestales 2024; Dirección General de Protección Civil y Emergencias: Madrid, Spain, 2024. [Google Scholar]
- Lee, K.H.; Kim, J.E.; Kim, Y.J.; Kim, J.; Von Hoyningen-Huene, W. Impact of the smoke aerosol from Russian forest fires on the atmospheric environment over Korea during May 2003. Atmos. Environ. 2005, 39, 85–99. [Google Scholar] [CrossRef]
- Chan, I.; Schneider, S.R.; Cheng, A.; Styler, S.A. Wildfire Smoke Contributions to Polycyclic Aromatic Hydrocarbon Loadings in Western Canadian Urban Surface Grime. Environ. Sci. Technol. 2025, 59, 2745–2753. [Google Scholar] [CrossRef]
- van der Werf, G.R.; Randerson, J.T.; Giglio, L.; van Leeuwen, T.T.; Chen, Y.; Rogers, B.M.; Mu, M.; van Marle, M.J.E.; Morton, D.C.; Collatz, G.J.; et al. Global fire emissions estimates during 1997–2016. Earth Syst. Sci. Data 2017, 9, 697–720. [Google Scholar] [CrossRef]
- Our World in Data. Annual CO2 Emissions from Wildfires. 2025. Available online: https://ourworldindata.org/grapher/annual-carbon-dioxide-emissions?time=2023&country=~OWID_EUR (accessed on 18 July 2025).
- EFFIS—European Forest Fire Information System. EFFIS—Seasonal CO2 Emissions Estimate: Spain. 2025. Available online: https://forest-fire.emergency.copernicus.eu/apps/effis.statistics/seasonaltrend/ESP/2025/CO2 (accessed on 18 July 2025).
- Yin, L.; Shaw, S.L.; Wang, D.; Carr, E.A.; Berry, M.W.; Gross, L.J.; Comiskey, E.J. A framework of integrating GIS and parallel computing for spatial control problems—A case study of wildfire control. Int. J. Geogr. Inf. Sci. 2012, 26, 621–641. [Google Scholar] [CrossRef]
- Meng, Q.; Huai, Y.; You, J.; Nie, X. Visualization of 3D forest fire spread based on the coupling of multiple weather factors. Comput. Graph. 2023, 110, 58–68. [Google Scholar] [CrossRef]
- Prichard, S.; Larkin, N.S.; Ottmar, R.; French, N.H.F.; Baker, K.; Brown, T.; Clements, C.; Dickinson, M.; Hudak, A.; Kochanski, A.; et al. The Fire and Smoke Model Evaluation Experiment—A Plan for Integrated, Large Fire–Atmosphere Field Campaigns. Atmosphere 2019, 10, 66. [Google Scholar] [CrossRef]
- Liu, Y.; Heilman, W.E.; Potter, B.E.; Clements, C.B.; Jackson, W.A.; French, N.H.F.; Goodrick, S.L.; Kochanski, A.K.; Larkin, N.K.; Lahm, P.W.; et al. Smoke Plume Dynamics. In Wildland Fire Smoke in the United States; Peterson, D.L., McCaffrey, S.M., Patel-Weynand, T., Eds.; Springer: Cham, Switzerland, 2022. [Google Scholar] [CrossRef]
- Li, F.; Zhu, Q.; Riley, W.J.; Zhao, L.; Xu, L.; Yuan, K.; Chen, M.; Wu, H.; Gui, Z.; Gong, J.; et al. AttentionFire_v1.0: Interpretable machine learning fire model for burned-area predictions over tropics. Geosci. Model Dev. 2023, 16, 869–884. [Google Scholar] [CrossRef]
- Shamsaei, K.; Juliano, T.W.; Roberts, M.; Ebrahimian, H.; Kosovic, B.; Lareau, N.P.; Taciroglu, E. Coupled fire-atmosphere simulation of the 2018 Camp Fire using WRF-Fire. Int. J. Wildland Fire 2023, 32, 195–221. [Google Scholar] [CrossRef]
- Goodrick, S.L.; Achtemeier, G.L.; Strand, T.M. Fire Behavior and Heat Release as Source Conditions for Smoke Modeling. In Wildland Fire Smoke in the United States; Peterson, D.L., McCaffrey, S.M., Patel-Weynand, T., Eds.; Springer: Cham, Switzerland, 2022; pp. 45–65. [Google Scholar] [CrossRef]
- Shamsaei, K.; Juliano, T.W.; Roberts, M.; Ebrahimian, H.; Lareau, N.P.; Rowell, E.; Kosovic, B. The Role of Fuel Characteristics and Heat Release Formulations in Coupled Fire-Atmosphere Simulation. Fire 2023, 6, 264. [Google Scholar] [CrossRef]
- Cardil, A.; Monedero, S.; Silva, C.A.; Ramirez, J. Adjusting the rate of spread of fire simulations in real-time. Ecol. Model. 2019, 395, 39–44. [Google Scholar] [CrossRef]
- Filippi, J.B.; Bosseur, F.; Mari, C.; Lac, C.; Moigne, P.L.; Cuenot, B.; Veynante, D.; Cariolle, D.; Balbi, J.H. Coupled Atmosphere—Wildland Fire Modelling. J. Advanves Model. Earth Syst. 2009, 1, 9. [Google Scholar] [CrossRef]
- Kochanski, A.; Jenkins, M.A.; Sun, R.; Krueger, S.; Abedi, S.; Charney, J. The importance of low-level environmental vertical wind shear to wildfire propagation: Proof of concept. J. Geophys. Res. Atmos. 2013, 118, 8238–8252. [Google Scholar] [CrossRef]
- Masoudian, S.; Sharples, J.; Jovanoski, Z.; Towers, I.; Watt, S. Incorporating Stochastic Wind Vectors in Wildfire Spread Prediction. Atmosphere 2023, 14, 1609. [Google Scholar] [CrossRef]
- Perry, G.L. Current approaches to modelling the spread of wildland fire: A review. Prog. Phys. Geogr. Earth Environ. 1998, 22, 222–245. [Google Scholar] [CrossRef]
- Pastor, E. Mathematical models and calculation systems for the study of wildland fire behaviour. Prog. Energy Combust. Sci. 2003, 29, 139–153. [Google Scholar] [CrossRef]
- Peacock, R.D.; Jones, W.W.; Bukowski, R.W. Verification of a model of fire and smoke transport. Fire Saf. J. 1993, 21, 89–129. [Google Scholar] [CrossRef]
- Sullivan, A.L. Wildland surface fire spread modelling, 1990–2007. 3: Simulation and mathematical analogue models. Int. J. Wildland Fire 2009, 18, 387–403. [Google Scholar] [CrossRef]
- Bakhshaii, A.; Johnson, E. A review of a new generation of wildfire—Atmosphere modeling. Can. J. For. Res. 2019, 49, 565–574. [Google Scholar] [CrossRef]
- Papadopoulos, G.D.; Pavlidou, F.N. A Comparative Review on Wildfire Simulators. IEEE Syst. J. 2011, 5, 233–243. [Google Scholar] [CrossRef]
- Silva, J.; Marques, J.; Gonçalves, I.; Brito, R.; Teixeira, S.; Teixeira, J.; Alvelos, F. A Systematic Review and Bibliometric Analysis of Wildland Fire Behavior Modeling. Fluids 2022, 7, 374. [Google Scholar] [CrossRef]
- Sullivan, A.L. Wildland surface fire spread modelling, 1990–2007. 2: Empirical and quasi-empirical models. Int. J. Wildland Fire 2009, 18, 369. [Google Scholar] [CrossRef]
- Sullivan, A.L. Wildland surface fire spread modelling, 1990–2007. 1: Physical and quasi-physical models. Int. J. Wildland Fire 2009, 18, 349. [Google Scholar] [CrossRef]
- Andrews, P.L. BEHAVE: Fire Behavior Prediction and Fuel Modeling System; General Technical Report Int-194; USDA Forest Service: Washington, DC, USA, 1986. [Google Scholar] [CrossRef]
- Finney, M.A. FARSITE: Fire Area Simulator—Model Development and Evaluation; Research Paper Rmrs-rp-4; USDA Forest Service, Rocky Mountain Research Station: Fort Collins, CO, USA, 1998. [Google Scholar] [CrossRef]
- Tymstra, C.; Bryce, R.; Wotton, B.; Taylor, S.; Armitage, O. Development and Structure of Prometheus: The Canadian Wildland Fire Growth Simulation Model; Information Report NOR-X-417; Natural Resources Canada, Canadian Forest Service, Northern Forestry Centre: Edmonton, AB, Canada, 2010. [Google Scholar]
- Ahmed, M.M.; Trouvé, A.; Forthofer, J.; Finney, M. Simulations of flaming combustion and flaming-to-smoldering transition in wildland fire spread at flame scale. Combust. Flame 2024, 262, 113370. [Google Scholar] [CrossRef]
- Coen, J.L.; Cameron, M.; Michalakes, J.; Patton, E.G.; Riggan, P.J.; Yedinak, K.M. WRF-Fire: Coupled Weather–Wildland Fire Modeling with the Weather Research and Forecasting Model. J. Appl. Meteorol. Climatol. 2013, 52, 16–38. [Google Scholar] [CrossRef]
- Dahl, N.; Xue, H.; Hu, X.; Xue, M. Coupled fire—Atmosphere modeling of wildland fire spread using DEVS-FIRE and ARPS. Nat. Hazards 2015, 77, 1013–1035. [Google Scholar] [CrossRef]
- Filippi, J.B.; Bosseur, F.; Pialat, X.; Santoni, P.A.; Strada, S.; Mari, C. Simulation of coupled fire/atmosphere interaction with the MesoNH-ForeFire models. J. Combust. 2011, 2011, 540390. [Google Scholar] [CrossRef]
- Rochoux, M.; Zhang, C.; Gollner, M.; Trouvé, A. Designing the Future of Wildfire Modeling. Int. Assoc. Wildland Fire 2017. Available online: https://www.iawfonline.org/article/designing-future-wildfire-modeling/ (accessed on 8 August 2025).
- Rochoux, M.C.; Emery, C.; Ricci, S.; Cuenot, B.; Trouvé, A. Towards predictive data-driven simulations of wildfire spread – Part II: Ensemble Kalman Filter for the state estimation of a front-tracking simulator of wildfire spread. Nat. Hazards Earth Syst. Sci. 2015, 15, 1721–1739. [Google Scholar] [CrossRef]
- Jain, P.; Coogan, S.C.P.; Subramanian, S.G.; Crowley, M.; Taylor, S.; Flannigan, M.D. A Review of Machine Learning Applications in Wildfire Science and Management. Environ. Rev. 2020, 28, 478–505. [Google Scholar] [CrossRef]
- Singh, H.; Ang, L.M.; Lewis, T.; Paudyal, D.; Acuna, M.; Srivastava, P.K.; Srivastava, S.K. Trending and emerging prospects of physics-based and ML-based wildfire spread models: A comprehensive review. J. For. Res. 2024, 35, 135. [Google Scholar] [CrossRef]
- Andrianarivony, H.S.; Akhloufi, M.A. Machine Learning and Deep Learning for Wildfire Spread Prediction: A Review. Fire 2024, 7, 482. [Google Scholar] [CrossRef]
- Xu, Y.; Li, D.; Ma, H.; Lin, R.; Zhang, F. Modeling Forest Fire Spread Using Machine Learning-Based Cellular Automata in a GIS Environment. Forests 2022, 13, 1974. [Google Scholar] [CrossRef]
- Finney, M.A.; Andrews, P.L. FARSITE—A program for fire growth simulation. Fire Manag. Notes 1999, 59, 13–15. [Google Scholar]
- Finney, M.A. An overview of FlamMap fire modeling capabilities. In Proceedings of the Fuels Management—How to Measure Success: Conference Proceedings, Portland, OR, USA, 28–30 March 2006; Proceedings RMRS-P-41. US Department of Agriculture, Forest Service, Rocky Mountain Research Station: Fort Collins, CO, USA, 2006; Volume 41, pp. 213–220. [Google Scholar]
- Fox-Hughes, P.; Bridge, C.; Faggian, N.; Jolly, C.; Matthews, S.; Ebert, E.; Jacobs, H.; Brown, B.; Bally, J. An evaluation of wildland fire simulators used operationally in Australia. Int. J. Wildland Fire 2024, 33, WF23028. [Google Scholar] [CrossRef]
- Crawl, D.; Block, J.; Lin, K.; Altintas, I. Firemap: A Dynamic Data-Driven Predictive Wildfire Modeling and Visualization Environment. Procedia Comput. Sci. 2017, 108, 2230–2239. [Google Scholar] [CrossRef]
- Cardil, A.; Monedero, S.; SeLegue, P.; Navarrete, M.A.; de Miguel, S.; Purdy, S.; Marshall, G.; Chavez, T.; Allison, K.; Quilez, R.; et al. Performance of operational fire spread models in California. Int. J. Wildland Fire 2023, 32, 1492–1502. [Google Scholar] [CrossRef]
- Asensio, M.; Ferragut, L. On a wildland fire model with radiation. Int. J. Numer. Methods Eng. 2002, 54, 137–157. [Google Scholar] [CrossRef]
- Asensio, M.; Cascón, J.; Prieto-Herráez, D.; Ferragut, L. An Historical Review of the Simplified Physical Fire Spread Model PhyFire: Model and Numerical Methods. Appl. Sci. 2023, 13, 2035. [Google Scholar] [CrossRef]
- Asensio, M.; Ferragut, L.; Simon, J. A convection model for fire spread simulation. Appl. Math. Lett. 2005, 18, 673–677. [Google Scholar] [CrossRef]
- Ferragut, L.; Asensio, M.; Cascón, J.; Prieto, D.; Ramírez, J. An efficient algorithm for solving a multi-layer convection-diffusion problem applied to air pollution problems. Adv. Eng. Softw. 2013, 65, 191–199. [Google Scholar] [CrossRef]
- Prieto-Herráez, D.; Sevilla, M.I.A.; Canals, L.F.; Barbero, J.M.C.; Rodríguez, A.M. A GIS-based fire spread simulator integrating a simplified physical wildland fire model and a wind field model. Int. J. Geogr. Inf. Sci. 2017, 1–22. [Google Scholar] [CrossRef]
- Asensio, M.I.; Ferragut, L.; Álvarez, D.; Laiz, P.; Cascón, J.M.; Prieto, D.; Pagnini, G. PhyFire: An Online GIS-Integrated Wildfire Spread Simulation Tool Based on a Semiphysical Model. In Applied Mathematics for Environmental Problems; Asensio, M.I., Oliver, A., Sarrate, J., Eds.; Springer: Cham, Switzerland, 2020; pp. 1–20. [Google Scholar]
- GDAL/OGR Contributors. GDAL/OGR Geospatial Data Abstraction Software Library; Open Source Geospatial Foundation: Beaverton, OR, USA, 2020; Available online: https://gdal.org (accessed on 8 August 2025).
- Cascón, J.; Ferragut, L.; Asensio, M.; Prieto, D.; Álvarez, D. Neptuno++: An adaptive finite element toolbox for numerical simulation of environmental problems. In Numerical Simulation in Physics and Engineering: Trends and Applications; Lecture Notes of the XVIII ‘Jacques-Louis Lions’ Spanish-French School; Springer: Berlin/Heidelberg, Germany, 2018. [Google Scholar]
- Anderson, H. Aids to Determining Fuel Models for Estimating Fire Behavior; Technical Report; USDA Forest Service: Ogden, UT, USA, 1982. [Google Scholar] [CrossRef]
- Ferragut, L.; Asensio, M.; Simon, J. High definition local adjustment model of 3D wind fields performing only 2D computations. Int. J. Numer. Methods Biomed. Eng. 2011, 27, 510–523. [Google Scholar] [CrossRef]
- Asensio, M.; Cascón, J.; Laiz, P.; Prieto-Herráez, D. Validating the effect of fuel moisture content by a multivalued operator in a simplified physical fire spread model. Environ. Model. Softw. 2023, 164, 105710. [Google Scholar] [CrossRef]
- Asensio-Sevilla, M.; Santos-Martín, M.; Álvarez León, D.; Ferragut-Canals, L. Global sensitivity analysis of fuel-type-dependent input variables of a simplified physical fire spread model. Math. Comput. Simul. 2020, 172, 33–44. [Google Scholar] [CrossRef]
- Arellano, S.; Arellano, S.; Vega, J.; Ruíz, A.; Arellano, A.; Álvarez, J.; Vega, D. Foto-Guía de Combustibles Forestales de Galicia: Versión I; Andavira: Galicia, España, 2016. [Google Scholar]
- Meta Platforms, Inc. React—The Library for Web and Native User Interfaces. 2011. Available online: https://react.dev (accessed on 18 July 2025).
- MetaCarta. OpenLayers. 2006. Available online: https://openlayers.org/ (accessed on 18 July 2025).
- Microsoft Corporation. Azure Maps Tile API: Aerial and Road Imagery. 2023. Available online: https://learn.microsoft.com/en-us/rest/api/maps/render/get-map-tile?view=rest-maps-2025-01-01&tabs=HTTP (accessed on 18 July 2025).
- OpenStreetMap Contributors. OpenStreetMap. Map Tiles Accessed via QGIS as XYZ Layer. 2025. Available online: https://www.openstreetmap.org (accessed on 18 July 2025).
- Esri. ArcGIS Online. Plataforma SIG en la Nube. 2025. Available online: https://www.arcgis.com/ (accessed on 18 July 2025).
- CLMS. Very High Resolution Image Mosaic 2021—True Colour (2 m). 2021. Available online: https://land.copernicus.eu/en/products/european-image-mosaic/very-high-resolution-image-mosaic-2021-true-colour-2m (accessed on 18 July 2025).
- European Space Agency. Copernicus DEM—Global and European Digital Elevation Model. Copernicus Data Space Ecosystem. 2023. Available online: https://dataspace.copernicus.eu/explore-data/data-collections/copernicus-contributing-missions/collections-description/COP-DEM (accessed on 18 July 2025).
- EFFIS—European Forest Fire Information System. Copernicus EFFIS—Data and Services. 2024. Available online: https://forest-fire.emergency.copernicus.eu/applications/data-and-services (accessed on 18 July 2025).
- Instituto Geográfico Nacional. Plan Nacional de Ortofotografía Aérea (PNOA). 2024. Available online: https://pnoa.ign.es/ (accessed on 15 June 2025).
- Muñoz-Sabater, J.; Dutra, E.; Agustí-Panareda, A.; Albergel, C.; Arduini, G.; Balsamo, G.; Boussetta, S.; Choulga, M.; Harrigan, S.; Hersbach, H.; et al. ERA5-Land: A state-of-the-art global reanalysis dataset for land applications. Earth Syst. Sci. Data 2021, 13, 4349–4383. [Google Scholar] [CrossRef]
- Junta de Castilla y León. Incendios Forestales—Datos Abiertos Castilla y León. 2024. Available online: https://analisis.datosabiertos.jcyl.es/explore/dataset/incendios-forestales/information/ (accessed on 18 July 2025).
- Filippi, J.; Mallet, V.; Nader, B. Representation and evaluation of wildfire propagation simulations. Int. J. Wildland Fire 2014, 23, 46–57. [Google Scholar] [CrossRef]
Main Parameters | |||
Model | Parameter | Symbol | Units |
HDWind | Buoyancy force coefficient | − | |
HDWind | Smoothing function coefficient | − | |
HDWind | Regularization term coefficient | − | |
PhyFire | Radiation absorption coefficient | a | m−1 |
PhyFire | Convective correction factor | − | |
PhyFire | Natural convection coefficient | H | Js−1m−2K−1 |
PhyNX | Horizontal dispersion coefficient | m2 s−1 | |
PhyNX | Vertical dispersion coefficient | m2 s−1 | |
Fuel-Type-Dependent Parameters | |||
Model | Parameter | Symbol | Units |
HDWind | Roughness index | m | |
PhyFire | Heat capacity | C | J K−1 kg−1 |
PhyFire | Maximum initial fuel load | ||
PhyFire | Fuel moisture content | kg water/kg fuel | |
PhyFire | Maximum flame temperature | K | |
PhyFire | Pyrolysis temperature | K | |
PhyFire | Combustion half-life | s | |
PhyFire | Flame length independent factor | m | |
PhyFire | Flame length wind correction factor | m1/2s1/2 | |
PhyFire | Flame length slope correction factor | − | |
PhyNX | Emission factor | − |
Comparison of Web-Based Wildfire Simulation Tools | ||||||
---|---|---|---|---|---|---|
Simulation Tool | Model Type | Wind–Fire Coupling | Smoke Dispersion | 3D Capability | WebGIS Support | Fuel Editability |
SINUMCC | Quasi- physical | 1-way (2-way planned) | Yes | Yes | Yes | Yes |
FARSITE / FlamMap | Quasi- empirical | No | No | Limited | No | Limited |
WRF- Fire | Physical | 2-way | Yes | Yes | No | No |
ForeFire / MesoNH | Physical | 2-way | Yes | Yes | No | No |
SPARK | Quasi- physical | 1-way | No | Yes | Yes | Limited |
FireMap / WIFIRE | Empirical | Limited | No | No | Yes (limited) | No |
ARPS / DEVS-FIRE | Quasi- physical | 2-way | No (planned) | Yes | No | No |
Wildfire Analyst Web | Quasi- empirical | 1-way | Limited | Yes | Yes (WPS-based) | Yes |
Area | Weaknesses | Implications/Ongoing Research |
---|---|---|
Technical | One-way coupling (wind → fire → smoke) | 1. Limits ability to reproduce fire–atmosphere interactions 2. Full two-way coupling is subject to conditions |
Data | Limited availability of updated input data (fuel, meteorology, topography) | 1. Data quality limits simulation accuracy 2. Updated fuel map generation from satellite data |
User | Platform usability depends on Internet connection and browser performance | 1. May limit access in low-connectivity areas 2. Requires stable connection for smooth visualization |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Martínez-Lastras, S.; Iglesias, J.M.; Cifuentes-Jimenez, D.; Asensio, M.I.; González-Aguilera, D. From Wind to Smoke: A Unified WebGIS Platform for Wildfire Simulation and Visualization. Fire 2025, 8, 366. https://doi.org/10.3390/fire8090366
Martínez-Lastras S, Iglesias JM, Cifuentes-Jimenez D, Asensio MI, González-Aguilera D. From Wind to Smoke: A Unified WebGIS Platform for Wildfire Simulation and Visualization. Fire. 2025; 8(9):366. https://doi.org/10.3390/fire8090366
Chicago/Turabian StyleMartínez-Lastras, Saray, José Manuel Iglesias, David Cifuentes-Jimenez, María Isabel Asensio, and Diego González-Aguilera. 2025. "From Wind to Smoke: A Unified WebGIS Platform for Wildfire Simulation and Visualization" Fire 8, no. 9: 366. https://doi.org/10.3390/fire8090366
APA StyleMartínez-Lastras, S., Iglesias, J. M., Cifuentes-Jimenez, D., Asensio, M. I., & González-Aguilera, D. (2025). From Wind to Smoke: A Unified WebGIS Platform for Wildfire Simulation and Visualization. Fire, 8(9), 366. https://doi.org/10.3390/fire8090366