Damages by Wind Speed

The Wind Consequences by Wind Gust API provides estimated cost / days to repair damages caused at certain wind gust speeds.

Example Query

For required threshold input, Risk Factor uses the default array of wind speeds (in MPH):

[50, 75, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 240]

These thresholds are provided to the wind.probability.cumulative api in order to calculate the probability that a specific threshold is met to pair with the cost / days to repair if said threshold does occur.

query PropertyWindConsequencesByWindGust$fsid: Int64!, $PropertyWindConsequencesInput: PropertyWindConsequencesInput) {
  property(fsid: $fsid) {
    wind {
      missileEnvironment
      primaryWindDirection
      probability {
        cumulative(
          input: {thresholds: [50, 75, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 240]}
        ) {
          year
          relativeYear
          threshold
          probability
          yMax
          category {
            maxWindSpeed
          }
        }
      }
      consequences(input: $PropertyWindConsequencesInput){
        byWindGust {
          percentile
          gustSpeed
          damages
          days
        }
      }
    }
  }
}

Last updated