Annualized Damages

Formerly known AAL

The Flood Annualized Damages API provides expected losses over time.

Example Query

For required depths input, Risk Factor uses the default array of depths: [5, 15, 30, 61, 91, 122, 152, 183, 213, 244, 274, 305, 335, 366, 396, 427, 457, 488, 518, 549, 579, 610]

These depths are provided in centimeters and represent the depth of flood event that the damage should be calculated for.

query PropertyFloodConsequencesLikelihood($fsid: Int64!, $input: PropertyFloodConsequencesInput) {
  property(fsid: $fsid) {
    flood {
      consequences(input: $input) {
        annualized {
          days
          damages
          relativeYear
          percentile
        }
      }
    }
  }
}

Last updated