Skip to contents

Get Individuals and Households Program (IHP) registrations

Usage

get_ihp_registrations(
  geography = NULL,
  state_fips = NULL,
  file_name = "IndividualsAndHouseholdsProgramValidRegistrations_2025_06_10.csv",
  api = TRUE,
  outpath = NULL
)

Arguments

geography

Included only for API consistency; this must be NULL.

state_fips

A character vector of two-letter state abbreviations. If NULL (default), return data for all 51 states. Otherwise return data for the specified states.

file_name

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

api

If TRUE (default), query the API.

outpath

The path to save the parquet-formatted datafile. Applicable only when api = FALSE.

Value

A dataframe comprising county-level data on current NFIP policies

Examples

if (FALSE) { # \dontrun{
get_ihp_registrations(
   state_fips = "NJ",
   api = TRUE)
} # }