CROSS has designated access points for adult mental health and disability services that are listed here

cross_mental_health

Format

A data frame with 36 rows and 5 variables:

name

Name of the accesss point

address

Address of the building

state

state abbreviation

zip

zip code

phone

Phone number of the building

longitude

geographic Longitude

latitude

geographic Latitude

classification

column used for classifying the data set

Source

https://crossmentalhealth.org/wp-content/uploads/2020/03/Access-Points.pdf

Examples

library(dplyr) # Leaflet map of Cross Mental Health buildings in Iowa library(leaflet) library(sf) cross_mental_health %>% leaflet() %>% addTiles() %>% addPolygons(data = ia_counties, weight = 1, color="#333333") %>% addCircleMarkers(radius = 1, stroke = 0.1)
#> Assuming "longitude" and "latitude" are longitude and latitude, respectively