The three interactive maps below provide location information about agencies that provide services related to health insurance. Click on each tabs to find out more about their address, contact numbers, and more.

Health center location mapping

For general public seeking assistance with signing up for health insurance or SNAP (Supplemental Nutrition Assistance Program), here is a mapping of health center locations, where health insurance enrollment and assistance with SNAP benefits (Food Stamps) are offered.

leaflet(health_center) %>% 
  addProviderTiles(providers$Esri.NatGeoWorldMap) %>% 
  addMarkers(lat = ~latitude, 
             lng = ~longitude, 
             popup = paste("Health Center name:", health_center$health_center, "<br>", "Street address:", health_center$street_address, "<br>", "Telephone number:", health_center$telephone_number, "<br>", "Borough:", health_center$borough),
             clusterOptions = markerClusterOptions())


Time of operation and walk-in:

health_center_table = health_center %>% 
  dplyr::select(health_center, street_address, telephone_number, days_of_operation, hours_of_operation, accept_walk_ins) %>% 
  mutate(
    accept_walk_ins = c(rep("Yes",11))
  ) %>% 
  relocate(
    health_center, days_of_operation, hours_of_operation, accept_walk_ins,
    street_address, telephone_number
    ) %>% 
  dplyr::rename(
    "Health Center name" = health_center,
    "Street address" = street_address,
    "Telephone number" = telephone_number,
    "Days of operation" = days_of_operation,
    "Hours of operation" = hours_of_operation,
    "Accept walk in" = accept_walk_ins
  )
  
rmarkdown::paged_table(health_center_table)

*More information can be found on this website. Search for “insurance” after enter the website


Source: Department of Health and Mental Hygiene. (2018, June 20). Primary care access and planning - health insurance enrollment: NYC Open Data. Primary Care Access and Planning - Health Insurance Enrollment | NYC Open Data. Retrieved November 19, 2021, from https://data.cityofnewyork.us/Health/Primary-Care-Access-and-Planning-Health-Insurance-/gfej-by6h.

Insurance agency location mapping

For those who are interested in purchasing insurance, this map shows the locations of major health insurance carriers in NYC.

leaflet(insurance_agency) %>% 
  addProviderTiles(providers$Esri.NatGeoWorldMap) %>% 
  addMarkers(lat = ~latitude, 
             lng = ~longitude, 
             popup = paste("Insurance agency name:", insurance_agency$insurance_agency, "<br>", "Street address:", insurance_agency$street_address, "<br>", "Telephone number:", insurance_agency$telephone_number, "<br>", "Borough:", insurance_agency$borough),
             clusterOptions = markerClusterOptions())


Time of operation and walk-in:

insurance_agency_table =insurance_agency %>% 
  dplyr::select(insurance_agency, street_address, telephone_number, days_of_operation, hours_of_operation, accept_walk_ins) %>% 
  
  relocate(
    insurance_agency, days_of_operation, hours_of_operation, accept_walk_ins,
    street_address, telephone_number
    ) %>% 
  dplyr::rename(
    "Insurance agency name" = insurance_agency,
    "Street address" = street_address,
    "Telephone number" = telephone_number,
    "Days of operation" = days_of_operation,
    "Hours of operation" = hours_of_operation,
    "Accept walk in" = accept_walk_ins
  )
  
rmarkdown::paged_table(insurance_agency_table)


More information of each carrier can be found on their websites:
Aetna
United Health Care
Molina HealthCare
Cigna
Well Care
Humana
Empire BlueCross BlueShield
Oscar

logo source: https://www.ehealthinsurance.com/health-insurance-companies

Medicaid location mapping

Medicaid provides health coverage to low-income people, including eligible low-income adults, children, pregnant women, elderly adults and people with disabilities. Medicaid is one of the largest payers for health care in the United States and is administered by states, according to federal requirements. The program is funded jointly by states and the federal government.

Related information

Medicaid Enrolled Provider Listing

Medicaid.gov

Source:

Data Provided by New York State Department of Health; Updated at November 22, 2021; Health.Data.NY.Gov