HAZUS | R Documentation |
HAZUS depth-damage reference curves showing the relative damage that a structure receives based on the flood depth from a given storm event. Damage estimates range from 0 to 1 and are referenced to the current structure value (replacement cost). A value of 0 indicates no damage whereas a value of 1 indicates complete damage (equivalent to the replacement cost of the structure). Note that curves apply to structures only (not content) and may represent an oversimplification for individual units. Depth-damage curves in this dataset are limited to short, salt-water exposure from the USACE - New Orleans curve database.
data(HAZUS)
A data frame with 1500 rows and 6 variables:
Depth-damage curve ID.
Structure types applicable to depth-damage curve.
Portional damage (0-1) to the structure from flood water relative to the total structure value (replacement cost).
Floodwater depth in meters for a given structure
Number of floors for a given structure.
HAZUS-MH User Manual FEMA
data(HAZUS)
head(HAZUS)
# Plot depth-damage curve for a single structure type
targetCurve = HAZUS[HAZUS$DDID == "RES1_147",]
plot(targetCurve$depth_m, targetCurve$damage*100, type="b",
xlab="Flood Water Depth (m)",
ylab="Structure Damage Percent (%)",
main = "Curve ID: RES1_147")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.