Damages by Tornado Category

The Wind Consequences by Tornado Category API provides probability, damage estimates, and days to repair for a specific Tornado category based on the Fujita / Enhanced Fujita Scale.

You can map wind.consequences.tornado.category.tornadoCategoryIdagainst metadataLookup.fujitaScale.tornadoCategoryId to find the name and speed ranges of the specific tornadoCategoryId.

Example Query

query PropertyWindConsequencesLikelihood($fsid: Int64!, $PropertyWindConsequencesInput: PropertyWindConsequencesInput) {
  property(fsid: $fsid) {
    metadataLookup {
      fujitaScale {
        tornadoCategoryId
        name
        minWindSpeed
        maxWindSpeed
      }
    }
    wind {
      consequences(input: $PropertyWindConsequencesInput) {
        tornado {
          category {
            tornadoCategoryId
          }
          percentile
          damagesLow
          damagesHigh
          daysLow
          daysHigh
        }
      }
    }
  }
}

Last updated