Skip to contents

The dataset contains information on main healthcare services considered to be 'hospitals' by Member States. The definition varies slightly from country to country, but roughly includes the following:

"'Hospitals' comprises licensed establishments primarily engaged in providing medical, diagnostic, and treatment services that include physician, nursing, and other health services to in-patients and the specialised accommodation services required by inpatients.

Usage

gisco_get_healthcare(
  year = c(2023, 2020),
  cache = TRUE,
  update_cache = FALSE,
  cache_dir = NULL,
  verbose = FALSE,
  country = NULL
)

Source

https://ec.europa.eu/eurostat/web/gisco/geodata/basic-services

There are no specific download rules for the datasets shown below. However, please refer to the general copyright notice and licence provisions, which must be complied with. Permission to download and use these data is subject to these rules being accepted.

The data are extracted from official national registers. They may contain inconsistencies, inaccuracies and gaps, due to the heterogeneity of the input national data.

Arguments

year

character string or number. Release year of the file. One of 2023, 2020.

cache

logical. Whether to do caching. Default is TRUE. See Caching strategies section in gisco_set_cache_dir().

update_cache

logical. Should the cached file be refreshed?. Default is FALSE. When set to TRUE it would force a new download.

cache_dir

character string. A path to a cache directory. See Caching strategies section in gisco_set_cache_dir().

verbose

logical. If TRUE displays informational messages.

country

character vector of country codes. It could be either a vector of country names, a vector of ISO3 country codes or a vector of Eurostat country codes. See also countrycode::countrycode().

Value

A sf object.

Details

Files are distributed EPSG:4326.

Brief description of each attribute:

AttributeDescription
idThe healthcare service identifier. This identifier is based on national identification codes, if it exists.
hospital_nameThe name of the healthcare institution.
site_nameThe name of the specific site or branch of a healthcare institution.
latLatitude (WGS 84).
lonLongitude (WGS 84).
streetStreet name.
house_numberHouse number.
postcodePostcode.
addressAddress information when the different components of the address are not separated in the source.
cityCity name (sometimes refers to a region or municipality).
cntr_idCountry code (2 letters, ISO 3166-1 alpha-2).
emergency'yes/no' for whether the healthcare site provides emergency medical services.
cap_bedsMeasure of capacity by number of beds (most common).
cap_pracMeasure of capacity by number of practitioners.
cap_roomsMeasure of capacity by number of rooms.
facility_typeType of healthcare service (e.g., psychiatric hospital), based on national classification.
public_private'public/private' status of the healthcare service.
list_specsList of specialties recognized in the EU and EEA according to the 2005 EU Directive (Annex V).
telTelephone number.
emailEmail address.
urlURL link to the institution’s website.
ref_dateThe date (DD/MM/YYYY) the data refers to (reference date).
pub_dateThe publication date of the dataset by Eurostat (DD/MM/YYYY).
geo_qualGeolocation quality indicator: 1=Good, 2=Medium, 3=Low, 4=From source, -1=Unknown, -2=Not geocoded.
commentsAdditional information on the healthcare service.

See also

Other basic services datasets: gisco_get_education()

Examples

health_be <- gisco_get_healthcare(country = "Belgium")

# Plot if downloaded
if (inherits(health_be, "sf")) {
  library(ggplot2)
  ggplot(health_be) +
    geom_sf()
}