Skip to contents

Access county-level data on NFIP policies

Usage

get_nfip_claims(
  county_geoids = NULL,
  file_name = "fima_nfip_claims_2025_06_08.parquet",
  api = FALSE
)

Arguments

county_geoids

A character vector of five-digit county codes. NULL by default; must be non-NULL if api = TRUE.

file_name

The name (not the full path) of the Box file containing the raw data.

api

If TRUE, query the API. FALSE by default.

Value

A dataframe comprising county-level data on current NFIP policies

Examples

if (FALSE) { # \dontrun{
get_nfip_claims(
   county_geoids = c("01001", "01003"),
   api = TRUE)
} # }