The Resilience-adjusted Risk API allows you to retrieve detailed resilience-adjusted climate risk data for any location globally.
https://app.alphageo.ai/api/public/v1/resilience_data
$ curl --location 'https://app.alphageo.ai/api/public/v1/resilience_data?longitude=-97.2805288&latitude=32.7376509&period=2035&scenario=SSP245' \
--header 'Authorization: dse3X8de878c37b2fd6835c52390303fk15fc3'
import requests
url = "https://app.alphageo.ai/api/public/v1/resilience_data?longitude=-97.2805288&latitude=32.7376509&period=2035&scenario=SSP245"
payload = {}
headers = {
'Authorization': 'dse3X8de878c37b2fd6835c52390303fk15fc3'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
A successful response containing resilience-adjusted climate risk data of the given location.
{
"identifiers":{
"SCENARIO":"SSP245",
"PERIOD":"2035"
},
"heat_stress":{
"HEAT_ISLAND":50.0,
"BUILDING_DENSITY":33.5,
"URBAN_GREENERY":66.5
},
"inland_flooding":{
"POROSITY":36.7,
"FLOOD_CONTROL":16.0,
"FLOOD_DEFENSE":92.0
},
"coastal_flooding":{
"FLOOD_CONTROL":16.0,
"FLOOD_DEFENSE":92.0
},
"hurricane_wind":{
"BUILDING_STRENGTH":67.4,
"FLOOD_CONTROL":16.0,
"FLOOD_DEFENSE":92.0
},
"drought":{
"WATER_TREATMENT":100.0,
"WATER_SUPPLY":0.0
},
"wildfire":{
"FIRE_RESPONSE":100.0,
"FIRE_DEFENSE":0.0
},
"societal_resilience":{
"LOC_GNI":86226699.96,
"VUL_POP":0.33,
"HDI":0.91,
"GFCP":21.53
},
"data_version":"March 2024"
}