ERA5 is the fifth generation ECMWF atmospheric reanalysis of the global climate. Reanalysis combines model data with observations from across the world into a globally complete and consistent dataset. ERA5 replaces its predecessor, the ERA-Interim reanalysis. ERA5 MONTHLY provides aggregated values for each month for seven ERA5 climate reanalysis parameters: 2m air temperature, 2m dewpoint temperature, total precipitation, mean sea level pressure, surface pressure, 10m u-component of wind and 10m v-component of wind. Additionally, monthly minimum and maximum air temperature at 2m has been calculated based on the hourly 2m air temperature data. Monthly total precipitation values are given as monthly sums. All other parameters are provided as monthly averages. ERA5 data is available from 1940 to three months from real-time, the version in the EE Data Catalog is available from 1979. More information and more ERA5 atmospheric parameters can be found at the Copernicus Climate Data Store. Provider's Note: Monthly aggregates have been calculated based on the ERA5 hourly values of each parameter.
WorldClim version 1 has average monthly global climate data for minimum, mean, and maximum temperature and for precipitation. WorldClim version 1 was developed by Robert J. Hijmans, Susan Cameron, and Juan Parra, at the Museum of Vertebrate Zoology, University of California, Berkeley, in collaboration with Peter Jones and Andrew Jarvis (CIAT), and with Karen Richardson (Rainforest CRC).
https://dataverse.harvard.edu/api/datasets/:persistentId/versions/3.1/customlicense?persistentId=doi:10.7910/DVN/UFC6B5https://dataverse.harvard.edu/api/datasets/:persistentId/versions/3.1/customlicense?persistentId=doi:10.7910/DVN/UFC6B5
Web-based GIS for spatiotemporal crop climate niche mapping Interactive Google Earth Engine Application—Version 2, July 2020 https://cropniche.cartoscience.com https://cartoscience.users.earthengine.app/view/crop-niche Google Earth Engine Code /* ---------------------------------------------------------------------------------------------------------------------- # CropSuit-GEE Authors: Brad G. Peter (bpeter@ua.edu), Joseph P. Messina, and Zihan Lin Organizations: BGP, JPM - University of Alabama; ZL - Michigan State University Last Modified: 06/28/2020 To cite this code use: Peter, B. G.; Messina, J. P.; Lin, Z., 2019, "Web-based GIS for spatiotemporal crop climate niche mapping", https://doi.org/10.7910/DVN/UFC6B5, Harvard Dataverse, V1 ------------------------------------------------------------------------------------------------------------------------- This is a Google Earth Engine crop climate suitability geocommunication and map export tool designed to support agronomic development and deployment of improved crop system technologies. This content is made possible by the support of the American People provided to the Feed the Future Innovation Lab for Sustainable Intensification through the United States Agency for International Development (USAID). The contents are the sole responsibility of the authors and do not necessarily reflect the views of USAID or the United States Government. Program activities are funded by USAID under Cooperative Agreement No. AID-OAA-L-14-00006. ------------------------------------------------------------------------------------------------------------------------- Summarization of input options: There are 14 user options available. The first is a country of interest selection using a 2-digit FIPS code (link available below). This selection is used to produce a rectangular bounding box for export; however, other geometries can be selected with minimal modification to the code. Options 2 and 3 specify the complete temporal range for aggregation (averaged across seasons; single seasons may also be selected). Options 4–7 specify the growing season for calculating total seasonal rainfall and average season temperatures and NDVI (NDVI is for export only and is not used in suitability determination). Options 8–11 specify the climate parameters for the crop of interest (rainfall and temperature max/min). Option 12 enables masking to agriculture, 13 enables exporting of all data layers, and 14 is a text string for naming export files. ------------------------------------------------------------------------------------------------------------------------- ••••••••••••••••••••••••••••••••••••••••••• USER OPTIONS ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */ // CHIRPS data availability: https://developers.google.com/earth-engine/datasets/catalog/UCSB-CHG_CHIRPS_PENTAD // MOD11A2 data availability: https://developers.google.com/earth-engine/datasets/catalog/MODIS_006_MOD11A2 var country = 'MI' // [1] https://en.wikipedia.org/wiki/List_of_FIPS_country_codes var startRange = 2001 // [2] var endRange = 2017 // [3] var startSeasonMonth = 11 // [4] var startSeasonDay = 1 // [5] var endSeasonMonth = 4 // [6] var endSeasonDay = 30 // [7] var precipMin = 750 // [8] var precipMax = 1200 // [9] var tempMin = 22 // [10] var tempMax = 32 // [11] var maskToAg = 'TRUE' // [12] 'TRUE' (default) or 'FALSE' var exportLayers = 'TRUE' // [13] 'TRUE' (default) or 'FALSE' var exportNameHeader = 'crop_suit_maize' // [14] text string for naming export file // ••••••••••••••••••••••••••••••••• NO USER INPUT BEYOND THIS POINT •••••••••••••••••••••••••••••••••••••••••••••••••••• // Access precipitation and temperature ImageCollections and a global countries FeatureCollection var region = ee.FeatureCollection('USDOS/LSIB_SIMPLE/2017') .filterMetadata('country_co','equals',country) var precip = ee.ImageCollection('UCSB-CHG/CHIRPS/PENTAD').select('precipitation') var temp = ee.ImageCollection('MODIS/006/MOD11A2').select(['LST_Day_1km','LST_Night_1km']) var ndvi = ee.ImageCollection('MODIS/006/MOD13Q1').select(['NDVI']) // Create layers for masking to agriculture and masking out water bodies var waterMask = ee.Image('UMD/hansen/global_forest_change_2015').select('datamask').eq(1) var agModis = ee.ImageCollection('MODIS/006/MCD12Q1').select('LC_Type1').mode() .remap([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17], [0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0]) var agGC = ee.Image('ESA/GLOBCOVER_L4_200901_200912_V2_3').select('landcover') .remap([11,14,20,30,40,50,60,70,90,100,110,120,130,140,150,160,170,180,190,200,210,220,230], [1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]) var cropland = ee.Image('USGS/GFSAD1000_V1').neq(0) var agMask = agModis.add(agGC).add(cropland).gt(0).eq(1) // Modify user input options for processing with raw data var years = ee.List.sequence(startRange,endRange) var bounds = region.geometry().bounds() var tMinMod = (tempMin+273.15)/0.02 var tMaxMod = (tempMax+273.15)/0.02 //...
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Link to the Google Earth Engine (GEE) code: https://code.earthengine.google.com/cc3ea6593574e321acd7b68c975a9608
You can analyze and visualize the following spatial layers by accessing the GEE link:
Daytime summer land surface temperature (raster data, 30 m horizontal resolution, from Landsat-8 remote sensing data, years 2017-2022)
The surface thermal hot-spot pattern (raster data,30 m horizontal resolution) was obtained by using a statistical-spatial method based on the Getis-Ord Gi* approach through the ArcGIS tool.
Here attached the .txt file from the GEE code.
Giulia Guerri, CNR-IBE, giulia.guerri@ibe.cnr.it
Marco Morabito, CNR-IBE, marco.morabito@cnr.it
Alfonso Crisci, CNR-IBE, alfonso.crisci@ibe.cnr.it
PERSIANN-CDR is a daily quasi-global precipitation product that spans the period from 1983-01-01 to present. The data is produced quarterly, with a typical lag of three months. The product is developed by the Center for Hydrometeorology and Remote Sensing at the University of California, Irvine (UC-IRVINE/CHRS) using Gridded Satellite (GridSat-B1) IR data that are derived from merging ISCCP B1 IR data, along with GPCP version 2.2.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
The layers included in the code were from the study conducted by the research group of CNR-IBE (Institute of BioEconomy of the National Research Council of Italy) and ISPRA (Italian National Institute for Environmental Protection and Research), published by the Sustainability journal (https://doi.org/10.3390/su14148412).
Link to the Google Earth Engine (GEE) code (link: https://code.earthengine.google.com/715aa44e13b3640b5f6370165edd3002)
You can analyze and visualize the following spatial layers by accessing the GEE link:
Daytime summer land surface temperature (raster data, horizontal resolution 30 m, from Landsat-8 remote sensing data, years 2015-2019)
Surface thermal hot-spot (raster data, horizontal resolution 30 m) was obtained by using a statistical-spatial method based on the Getis-Ord Gi* approach through the ArcGIS Pro tool.
Surface albedo (raster data, horizontal resolution 10 m, Sentinel-2A remote sensing data, year 2017)
Impervious area (raster data, horizontal resolution 10 m, ISPRA data, year 2017)
Tree cover (raster data, horizontal resolution 10 m, ISPRA data, year 2018)
Grassland area (raster data, horizontal resolution 10 m, ISPRA data, year 2017)
Water bodies (raster data, horizontal resolution 2 m, Geoscopio Platform of Tuscany, year 2016)
Sky View Factor (raster data, horizontal resolution 1 m, lidar data from the OpenData platform of Florence, year 2016)
Buildings' units of Florence (shapefile from the OpenData platform of Florence) include data on the residential real estate value from the Real Estate Market Observatory (OMI) of the National Revenue Agency of Italy (source: https://www1.agenziaentrate.gov.it/servizi/Consultazione/ricerca.htm, accessed on 14 July 2022). Data on the characterization of the buffer area (50 m) surrounding the buildings are included in this shapefile [the names of table attributes are reported in the square brackets]: averaged values of the daytime summer land surface temperature [LST_media], thermal hot-spot pattern [Thermal_cl], mean values of sky view factor [SVF_medio], surface albedo [alb_medio], and average percentage areas of imperviousness [ImperArea%], tree cover [TreeArea%], grassland [GrassArea%] and water bodies [WaterArea%].
Here attached the .txt file of the GEE code.
Giulia Guerri, CNR-IBE, giulia.guerri@ibe.cnr.it
Marco Morabito, CNR-IBE, marco.morabito@cnr.it
Alfonso Crisci, CNR-IBE, alfonso.crisci@ibe.cnr.it
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Climate reanalysis and climate projection datasets offer the potential for researchers, students and instructors to access physically informed, global scale, temporally and spatially continuous climate data from the latter half of the 20th century to present, and explore different potential future climates. While these data are of significant use to research and teaching within biological, environmental and social sciences, potential users often face barriers to processing and accessing the data that cannot be overcome without specialist knowledge, facilities or assistance. Consequently, climate reanalysis and projection data are currently substantially under-utilised within research and education communities. To address this issue, we present two simple “point-and-click” graphical user interfaces: the Google Earth Engine Climate Tool (GEEClimT), providing access to climate reanalysis data products; and Google Earth Engine CMIP6 Explorer (GEECE), allowing processing and extraction of CMIP6 projection data, including the ability to create custom model ensembles. Together GEEClimT and GEECE provide easy access to over 387 terabytes of data that can be output in commonly used spreadsheet (CSV) or raster (GeoTIFF) formats to aid subsequent offline analysis. Data included in the two tools include: 20 atmospheric, terrestrial and oceanic reanalysis data products; a new dataset of annual resolution climate variables (comparable to WorldClim) calculated from ERA5-Land data for 1950-2022; and CMIP6 climate projection output for 34 model simulations for historical, SSP2-4.5 and SSP5-8.5 scenarios. New data products can also be easily added to the tools as they become available within the Google Earth Engine Data Catalog. Five case studies that use data from both tools are also provided. These show that GEEClimT and GEECE are easily expandable tools that remove multiple barriers to entry that will open use of climate reanalysis and projection data to a new and wider range of users.
We apply a research approach that can inform riparian restoration planning by developing products that show recent trends in vegetation conditions identifying areas potentially more at risk for degradation and the associated relationship between riparian vegetation dynamics and climate conditions. The full suite of data products and a link to the associated publication addressing this analysis can be found on the Parent data release. For this study, the vegetation conditions are characterized using a series of remote sensing vegetation indices developing using satellite imagery, including the Normalized Difference Vegetation Index (NDVI) and the Tasseled Cap (TC) Transformation. The NDVI is a commonly used vegetation index that quantifies relative greenness of the vegetation based on the plant’s photosynthetic activity, measured as a ratio between the Near Infrared (NIR) and Red bands (Tucker, 1979). The NDVI equation follows: NDVI = (NIR band - Red band) / (NIR band + Red band). NDVI has a range of -1 to 1, though green vegetation theoretically ranges from 0 to 1. Dense green vegetation is represented with values closer to 1 while barren soil, rock, and less-dense surface vegetation has values closer to 0. Values below 0 often represent water due to its unique reflective characteristics. The TC transformation is an approached used to transform satellite imagery into a collection of spectral metrics that can quantify various aspects of the vegetation and soil surfaces (Kauth and Thomas, 1976). Specifically, the TC transformation develops 6 separate metrics, though we only assess the three primary metrics: (i) brightness (transformation 1), (ii) greenness (transformation 2), and (iii) wetness (transformation 3). No specific range is identified for the TC transformation metrics, though for both brightness and greenness, positive values represent brighter and greener conditions, respectively, while negative values represent wetter conditions for wetness. The TC transformation metrics are calculated using a series of coefficients multiplied across reflectance values for the suite of Landsat bands, then summed across each metric. Because bandwidths differ slightly between Landsat 4, 5, 7 and Landsat 8, we use two sets of coefficients and complete the calculation separately before combining the collections into a single series of images (DeVries et al., 2016; Zhai et al., 2022). All raster products were developed using the Google Earth Engine (GEE) cloud computing software program for the Upper Gila River watershed. This is a Child Item for the Parent data release, Mapping Riparian Vegetation Response to Climate Change on the San Carlos Apache Reservation and Upper Gila River Watershed to Inform Restoration Priorities: 1935 to Present - Database of Trends in Vegetation Properties and Climate Adaptation Variables. This Child Item consists of a single XML metadata file and four zipped files containing the raster stacks, where each zipped file contains the rasters for each vegetation index, respectively (i.e., NDVI, TC brightness, TC greenness, TC wetness). The raster stacks within each index-specific zipped folder are identified by the season they represent (i.e., spring, late-spring, summer, fall). Each band within the separate raster stacks (n=37) represents a year from 1985 through 2021 (i.e., band 1 is 1985 and band 37 is 2021).
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Spatiotemporal patterns of global forest net primary productivity (NPP) are pivotal for us to understand the interaction between the climate and the terrestrial carbon cycle. In this study, we use Google Earth Engine (GEE), which is a powerful cloud platform, to study the dynamics of the global forest NPP with remote sensing and climate datasets. In contrast with traditional analyses that divide forest areas according to geographical location or climate types to retrieve general conclusions, we categorize forest regions based on their NPP levels. Nine categories of forests are obtained with the self-organizing map (SOM) method, and eight relative factors are considered in the analysis. We found that although forests can achieve higher NPP with taller, denser and more broad-leaved trees, the influence of the climate is stronger on the NPP; for the high-NPP categories, precipitation shows a weak or negative correlation with vegetation greenness, while lacking water may correspond to decrease in productivity for low-NPP categories. The low-NPP categories responded mainly to the La Niña event with an increase in the NPP, while the NPP of the high-NPP categories increased at the onset of the El Niño event and decreased soon afterwards when the warm phase of the El Niño-Southern Oscillation (ENSO) wore off. The influence of the ENSO changes correspondingly with different NPP levels, which infers that the pattern of climate oscillation and forest growth conditions have some degree of synchronization. These findings may facilitate the understanding of global forest NPP variation from a different perspective.
Climate Hazards Center InfraRed Precipitation with Station data (CHIRPS) is a 30+ year quasi-global rainfall dataset. CHIRPS incorporates 0.05° resolution satellite imagery with in-situ station data to create gridded rainfall time series for trend analysis and seasonal drought monitoring.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Data and code used for the manuscript "From white to green: Snow cover loss and increased vegetation productivity in the European Alps" by Rumpf et al., submitted December 2021 to Science
See file ReadMe.txt for a description of the content and the original publication for further explanations.
You are free to use these data and code for scientific purposes but are obliged to cite the above-mentioned publication.
For further questions, contact sabine.rumpf@unibas.ch
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Climate change impacts manifest differently worldwide, with many African countries, including Senegal, being particularly vulnerable. The decline in ground observations and limited access to these observations continue to impede research efforts to understand, plan, and mitigate the current and future impacts of climate change. This occurs at a time of rapid growth in Earth observations (EO) data, methodologies, and computational capabilities, which could potentially augment studies in data-scarce regions. In this study, we utilized satellite remote sensing data leveraging historical EO data using Google Earth Engine to investigate spatio-temporal rainfall and temperature patterns in Senegal from 1981 to 2020. We combined CHIRPS precipitation data and ERA5-Land reanalysis datasets for remote sensing analysis and used the Mann–Kendall and Sen's Slope statistical tests for trend detection. Our results indicate that annual temperatures and precipitation increased by 0.73°C and 18 mm in Senegal from 1981 to 2020. All six of Senegal's agroecological zones showed statistically significant upward precipitation trends. However, the Casamance, Ferlo, Eastern Senegal, Groundnut Basin, and Senegal River Valley regions exhibited statistically significant upward trends in temperature. In the south, the approach to climate change would be centered on the effects of increased rainfall, such as flooding and soil erosion. Conversely, in the drier northern areas such as Podo and Saint Louis, the focus would be on addressing water scarcity and drought conditions. High temperatures in key crop-producing regions, such as Saraya, Goudiry, and Tambacounda in the Eastern Senegal area also threaten crop yields, especially maize, sorghum, millet, and peanuts. By acknowledging and addressing the unique impacts of climate change on various agroecological zones, policymakers and stakeholders can develop and implement customized adaptation strategies that are more successful in fostering resilience and ensuring sustainable agricultural production in the face of a changing climate.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
A European Local Climate Zone map at a 100 m spatial resolution, derived from multiple earth observation datasets and expert LCZ class labels. There are 10 urban LCZ types, each associated with a set of relevant variables such that the map represent a valuable database of urban properties.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
This is the dataset used in all hands-on sessions of the 4th edition of BUCSS.
This Bochum Urban Climate Summer School took place from 26 to 29 September 2022 at Ruhr-University Bochum (Germany), and aimed at 1) providing a general introduction to different facets of urban climatology with a special focus on urban climate informatics, 2) providing structured information and skill-building capabilities related to urban climate monitoring, remote sensing and modelling, and 3) strengthening an active pool of young scientists to tackle the major urban sustainability challenges of future generations.
The programme consisted out of state-of-the-art lectures and hands-on tutorials on remote sensing in urban areas, crowdsourcing and urban climate modelling. All of these teaching resources are available here: https://github.com/RUBclim/BUCSS22
This collection contains data on hydroclimate, land cover change and water budget over land cover classes, used in the MS Thesis: Ghimire, B. (2025). "Investigating Changes in Hydroclimate, Land Cover, and Evapotranspiration across The Great Salt Lake (GSL) Basin and its Major Subbasins," Civil and Environmental Engineering, Utah State University.
This study examined hydrologic processes within the river basins that relate to streamflow entering into the GSL, with a focus on land cover and how land cover changes are related to the hydrology and water balance. The data used in this study is organized into three resources listed in this collection that include: (1) water year averaged hydroclimatic data on precipitation, streamflow, air temperature, and evapotranspiration; (2) remotely sensed data on land cover over the Great Salt Lake (GSL) subbasins for the period of the water year 2004 to 2021; and (3) water budget data over land cover classes within the GSL basin. The hydroclimatic data over the GSL subbasins were obtained from the United States Geological Survey (USGS) national water information system (NWIS) and Climate Engine, using their APIs. Climate Engine (Huntington et al., 2017) is an open-access climate cloud-computing platform that provides point and area-averaged time series climatic data for the continental United States. Land cover maps were collected from the Land Change Monitoring, Assessment, and Projection (LCMAP) (https://eros.usgs.gov/lcmap/apps/data-downloads) collection produced by the USGS. These data were used to analyze the water balance, hydroclimatic trends, land cover change, and evapotranspiration over land cover classes within the river basins that drain to GSL to investigate causes for lake-level changes.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
The following document outlines a generalized procedure to upload as well as maintain the Gravity Recovery and Climate Experiment (GRACE) as well as the Gravity Recovery and Climate Experiment - Follow On (GRACE-FO) data into the Google Earth Engine (GEE). Google Earth Engine is a geospatial visualization platform that allows scientists to directly interact with various satellite data such as MODIS, LANDSAT, and Sentinel data.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
Surface water in arid regions is essential to many organisms including large mammals of conservation concern. For many regions little is known about the extent, ecology and hydrology of ephemeral waters, because they are challenging to map given their ephemeral nature and small sizes. Our goal was to advance surface water knowledge by mapping and monitoring ephemeral water from the wet to dry seasons across the Kavango-Zambezi (KAZA) transfrontier conservation area of southern Africa (300,000 km2). We mapped individual waterholes for six time points each year from mid-2017 to mid-2020, and described their presence, extent, duration, variability, and recurrence. We further analyzed a wide range of physical and landscape aspects of waterhole locations, including soils, geology, and topography, to climate and soil moisture. We identified 2.1 million previously unmapped ephemeral waterholes (85-89% accuracy) that seasonally extend across 23.5% of the study area. We confirmed a distinct ‘blue wave’ with ephemeral water across the region peaking at the end of the rainy season. We observed a wide range of waterhole types and sizes, with large variances in seasonal and interannual hydrology. We found that ephemeral surface water spatiotemporal patterns were was associated with soil type; loam soils were most likely to hold water for longer periods in the study area. From the wettest time period to the driest, there was a ~44,000 km2 (62%) decrease in ephemeral water extent across the region—these dramatic seasonal fluctuations have implications for wildlife movement. A warmer and drier climate, expected human population growth, and associated agricultural expansion and development may threaten these sensitive and highly variable water resources and the wildlife that depend on them.
This contains Google Earth Engine code to generate water coverage data for Schaffer-Smith et al 2022.
Attribution-ShareAlike 4.0 (CC BY-SA 4.0)https://creativecommons.org/licenses/by-sa/4.0/
License information was derived automatically
This starter data kit collects extracts from global, open datasets relating to climate hazards and infrastructure systems.
These extracts are derived from global datasets which have been clipped to the national scale (or subnational, in cases where national boundaries have been split, generally to separate outlying islands or non-contiguous regions), using Natural Earth (2023) boundaries, and is not meant to express an opinion about borders, territory or sovereignty.
Human-induced climate change is increasing the frequency and severity of climate and weather extremes. This is causing widespread, adverse impacts to societies, economies and infrastructures. Climate risk analysis is essential to inform policy decisions aimed at reducing risk. Yet, access to data is often a barrier, particularly in low and middle-income countries. Data are often scattered, hard to find, in formats that are difficult to use or requiring considerable technical expertise. Nevertheless, there are global, open datasets which provide some information about climate hazards, society, infrastructure and the economy. This "data starter kit" aims to kickstart the process and act as a starting point for further model development and scenario analysis.
Hazards:
Exposure:
Contextual information:
The spatial intersection of hazard and exposure datasets is a first step to analyse vulnerability and risk to infrastructure and people.
To learn more about related concepts, there is a free short course available through the Open University on Infrastructure and Climate Resilience. This overview of the course has more details.
These Python libraries may be a useful place to start analysis of the data in the packages produced by this workflow:
snkit
helps clean network data
nismod-snail
is designed to help implement infrastructure
exposure, damage and risk calculations
The open-gira
repository contains a larger workflow for global-scale open-data infrastructure risk and resilience analysis.
For a more developed example, some of these datasets were key inputs to a regional climate risk assessment of current and future flooding risks to transport networks in East Africa, which has a related online visualisation tool at https://east-africa.infrastructureresilience.org/ and is described in detail in Hickford et al (2023).
References
According to our latest research, the global climate-risk underwriting engine market size reached USD 1.54 billion in 2024, reflecting the sector’s rapid evolution and strategic importance. The market is expected to grow at a robust CAGR of 22.6% from 2025 to 2033, with the forecasted market size projected to hit USD 11.83 billion by 2033. This substantial growth is primarily driven by the escalating frequency and severity of climate-related events, which are compelling the insurance and reinsurance industries to adopt sophisticated underwriting solutions that integrate advanced analytics and climate intelligence.
A critical growth factor for the climate-risk underwriting engine market is the increasing recognition of climate change as a major risk factor for the insurance sector. As natural disasters such as hurricanes, floods, and wildfires become more frequent and intense, insurers are under mounting pressure to accurately assess and price climate-related risks. Traditional underwriting models, which often rely on historical data, are proving inadequate in the face of rapidly changing climate patterns. This has created a strong demand for advanced climate-risk underwriting engines that leverage real-time data, artificial intelligence, and predictive analytics to provide more precise risk assessments. The integration of these technologies enables insurers to better evaluate potential losses and set premiums accordingly, ultimately enhancing their resilience and profitability in a volatile environment.
Another significant driver propelling the climate-risk underwriting engine market is the tightening of regulatory frameworks and disclosure requirements worldwide. Governments and regulatory bodies are increasingly mandating that insurers and financial institutions disclose their exposure to climate-related risks and integrate climate considerations into their risk management processes. This regulatory push is especially pronounced in regions such as Europe and North America, where sustainable finance initiatives and climate risk disclosure standards are gaining traction. As a result, insurance companies, reinsurers, and financial institutions are investing heavily in climate-risk underwriting technologies to ensure compliance, improve transparency, and maintain their competitive edge. The ability to demonstrate robust climate-risk management capabilities is also becoming a key differentiator for market participants, further accelerating technology adoption.
The shift towards digital transformation and the proliferation of big data are also fueling the growth of the climate-risk underwriting engine market. The insurance industry is increasingly leveraging vast amounts of environmental, geospatial, and socio-economic data to enhance underwriting accuracy and efficiency. Climate-risk underwriting engines are designed to ingest and analyze diverse data sources, enabling insurers to develop dynamic risk models that reflect current and projected climate conditions. This data-driven approach not only improves risk selection and pricing but also supports the development of innovative insurance products tailored to emerging climate risks. As insurers seek to stay ahead of the curve, investment in advanced underwriting engines is becoming a strategic imperative.
From a regional perspective, North America currently leads the climate-risk underwriting engine market, accounting for the largest share in 2024. This dominance is attributed to the region’s advanced insurance sector, high awareness of climate risks, and strong regulatory frameworks. Europe follows closely, driven by stringent sustainability regulations and a proactive approach to climate risk management. The Asia Pacific region is poised for the fastest growth over the forecast period, fueled by rising climate vulnerability, rapid digitalization, and increasing insurance penetration. Latin America and the Middle East & Africa are also witnessing growing adoption, albeit at a more moderate pace, as insurers in these regions gradually embrace climate-risk technologies to address emerging threats.
This dataset contains continental (Africa) land cover and impervious surface changes over a long period of time (15 years) using high resolution Landsat satellite observations and Google Earth Engine cloud computing platform. The approach applied here to overcome the computational challenges of handling big earth observation data by using cloud computing can help scientists and practitioners who lack high-performance computational resources. The dataset contains seven classes, prepared annually from 2000 to 2015, using high���resolution Landsat 7 images (ETM+) and analyzed by Google Earth Engine cloud computing method. The model that generated the LULC classification was evaluated for predictive accuracy across classes as well as overall accuracy. The model achieved an overall accuracy of 88% with class-specific user���s and producer���s accuracies ranged from 84-94% and 79-96% respectively (Midekisa et al., 2017).
ERA5 is the fifth generation ECMWF atmospheric reanalysis of the global climate. Reanalysis combines model data with observations from across the world into a globally complete and consistent dataset. ERA5 replaces its predecessor, the ERA-Interim reanalysis. ERA5 MONTHLY provides aggregated values for each month for seven ERA5 climate reanalysis parameters: 2m air temperature, 2m dewpoint temperature, total precipitation, mean sea level pressure, surface pressure, 10m u-component of wind and 10m v-component of wind. Additionally, monthly minimum and maximum air temperature at 2m has been calculated based on the hourly 2m air temperature data. Monthly total precipitation values are given as monthly sums. All other parameters are provided as monthly averages. ERA5 data is available from 1940 to three months from real-time, the version in the EE Data Catalog is available from 1979. More information and more ERA5 atmospheric parameters can be found at the Copernicus Climate Data Store. Provider's Note: Monthly aggregates have been calculated based on the ERA5 hourly values of each parameter.