COVID-19 ======== The COVID-19 Service provides access to the 2019-nCoV dataset compiled by Johns Hopkins University. This dataset includes deaths, confirmed cases, and recoveries related to the COVID-19 pandemic. Vaccination data is provided by Our World in Data. For more information, check out https://data.humdata.org/dataset/novel-coronavirus-2019-ncov-cases and https://github.com/owid/covid-19-data/tree/master/public/data/vaccinations. .. toctree:: :maxdepth: 2 :titlesonly: :caption: RPC Categories Vaccination.rst RPCS ---- .. function:: COVID-19.getConfirmedCounts(country: String, state: String?, city: String?) Get number of confirmed cases of COVID-19 by date for a specific country and state. Date is in month/day/year format. **Arguments:** - ``country: String`` (`String `__) - Country or region - ``state: String?`` (`String `__) - State or province - ``city: String?`` (`String `__) - City .. function:: COVID-19.getDeathCounts(country: String, state: String?, city: String?) Get number of cases of COVID-19 resulting in death by date for a specific country and state. Date is in month/day/year format. **Arguments:** - ``country: String`` (`String `__) - Country or region - ``state: String?`` (`String `__) - State or province - ``city: String?`` (`String `__) - City .. function:: COVID-19.getLocationCoordinates(country: String, state: String?, city: String?) Get the latitude and longitude for a location with data available. **Arguments:** - ``country: String`` (`String `__) - ``state: String?`` (`String `__) - ``city: String?`` (`String `__) - City .. function:: COVID-19.getLocationsWithData() Get a list of all countries (and states, cities) with data available. **Returns:** ``List>`` (`List `__ | `String `__) - an array of ``[country, state, city]`` for each location with data available .. function:: COVID-19.getRecoveredCounts(country: String, state: String?, city: String?) Get number of cases of COVID-19 in which the person recovered by date for a specific country and state. Date is in month/day/year format. **Arguments:** - ``country: String`` (`String `__) - Country or region - ``state: String?`` (`String `__) - State or province - ``city: String?`` (`String `__) - City