Wind Probability

Within the Current & Future Risk section of Risk Factor's Wind Factor Report, we provide a graph similiar to the below showing tropical storm winds risk over 30 years.

This graph can be generated using the following query

{
  property(fsid: $fsid) {
    wind {
      probability {
        cumulative(filter: {threshold: 50}) {
          year
          relativeYear
          probability
          yMax
        }
      }
    }
  }
}

When displaying the data on a bar graph, similar to above, utilize the following rules based on the field names above.

FieldDescription

probability

The label for the value represented on the x-axis. This is represented as a percent.

yMax

The maximum fill of the y-axis, represented from 0-100. The max of each bar should be 100.

relativeYear

The x-axis representation of year. Using relative year will allow for future-proofing later updates.

Last updated