Depth Damages

Also known as Depth Consequences

The Flood Depth Damages API provides expected losses for specified depths. These depths are indicated by the depth field.

Example Query

This query provides Property Flood Consequences Depth by FSID. 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 PropertyFloodConsequencesByDepth($fsid: Int64!, $input:PropertyFloodConsequencesInput) {
      property(fsid: $fsid) {
        flood {
          consequences(input: $input) {
            byDepth {
              damages
              days
              depth
              percentile
            }
          }
        }
      }
    }

Last updated