Depth

Property

For RiskFactor.com's Flood Factor, our API allows you to retrieve average and mean depth probabilities.

Sample Request

This query provides Property Flood Probability Depth by FSID. For average depth probability, or depthMean, we utilize a filter for 'MEAN' depthFlavor to pull the average depth probability. Likewise for max depth, or depthMax, we utilize a filter for 'MAX' depthFlavor to pull the max depth probability.

{
  property(fsid: ...) {
    flood {
      probability {
        depthMean: depth(filter: {depthFlavor: MEAN}) {
          returnPeriod
          relativeYear
          low
          mid
          high
        }
        depthMax: depth(filter: {depthFlavor: MAX}) {
          returnPeriod
          relativeYear
          low
          mid
          high
        }
      }
    }
  }
}
FieldDescription

low

The depth in centimeters for the specified return period based on the low scenario of the RCP 4.5 emissions curve.

mid

The depth in centimeters for the specified return period based on the mid scenario of the RCP 4.5 emissions curve.

high

The depth in centimeters for the specified return period based on the high scenario of the RCP 4.5 emissions curve.

returnPeriod

The return period (500, 250, 100, 50, 20, 10, 5, or 2 years) that the depth was calculated for.

relativeYear

The year relative to 2020.

Last updated