Retrieves metadata for a specific layer in the National Flood Hazard Layers (NFHL).
Usage
nfhl_describe(layer = 28)
Arguments
- layer
Integer. The NFHL layer ID to query. Default is 28.
Value
A list containing:
Layer
: The name of the queried layer.
Description
: A brief description of the layer.
bbox
: A bounding box of the layer's extent as an sf
object.
Examples
if (FALSE) { # \dontrun{
metadata <- nfhl_describe(layer = 28)
print(metadata$Layer)
print(metadata$Description)
plot(metadata$bbox)
} # }