Heat Damages

Also known as Heat Consequences

Heat damages are referenced as heat.consequences in the First Street API.

Input Fields

To run model calculations on Flood Damages, the input of PropertyFloodConsequencesInput should be provided to the flood.consequences query. This input represents various Property Building Values for the property.

If inputs are not provided, default values are used. These default values can be queried through property.building

PropertyHeatConsequencesInput

input PropertyHeatConsequencesInput {
  buildingSqft: Int
  yearBuilt: Int
  landuseCodeId: Int
  """
  Cooling temperature to base calculations off of, represented in fahrenheight
  """
  coolingTemp: Int
  costPerKwh: Float
}

Default Values

Risk Factor uses 70 as the default coolingTemp value.

Example Request Header

{ 
    "fsid": 1202672029, 
    "PropertyWindConsequencesInput": { 
        "landuseCodeId": 1, 
        "stories": 2, 
        "roofCoverId": "0", 
        "designStandard": "HIGH", 
        "buildingOrientation": "N", 
        "yearBuilt": 1981, 
        "units": 1, 
        "buildingSqft": 4630 
    } 
}

Last updated