Iowa hospital buildings listed in the federal Geographic Names Information System.

hospital_buildings

Format

A data frame with 1709 rows and 11 variables:

name

Name of building

feature_class

Type of building. All records in this dataset will be "hospital".

state

State of the location

county

County of the location

elevation_meters

Elevation in meters above sea level of the location

elevation_feet

Elevation in feet above sea level of the location

usgs_map_name

Name of the location of the building

date_created

Date that the feature was added to the database

date_edited

Date at which the record was last updated

classification

column used for classifying the data set

geometry

sf point object of geographic location

Source

https://data.iowa.gov/Physical-Geography/Iowa-Hospital-Buildings/ciqq-2z9p

Examples

library(dplyr) # Leaflet map of hospital buildings in Iowa library(leaflet) library(sf) hospital_buildings %>% leaflet() %>% addTiles() %>% addPolygons(data = ia_counties, weight = 1, color="#333333") %>% addCircleMarkers(radius = 1, stroke = 0.1, label=~name) %>% addEasyButton(easyButton( icon="fa-crosshairs", title="Locate Me", onClick=JS("function(btn, map){ map.locate({setView: true}); }")))