Imports school directory data from a locally downloaded file. Use this function as a fallback when automated download from NH DOE Profiles fails.
Details
Visit the NH DOE Profiles to download the school list manually: https://my.doe.nh.gov/Profiles/PublicReports/PublicReports.aspx?ReportName=SchoolList
Examples
if (FALSE) { # \dontrun{
# Download file manually from NH DOE Profiles, then:
df <- import_local_directory("~/Downloads/school-list.xlsx")
# Process to tidy format
tidy_df <- process_directory(df)
} # }