npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

iobroker.coronavirus-statistics

v0.9.0

Published

Adapter to show Global Corona Virus information and current reports

Downloads

148

Readme

ioBroker.coronavirus-statistics

NPM version Downloads Number of Installations (latest) Number of Installations (stable) Known Vulnerabilities

NPM

Test and Release Dependency Status

Coronavirus Live Statistics adapter for ioBroker

Adapter to show Global Coronavirus information and current reports

There is no configuration required, after installation it will :

  • Receive global information world-wide and write it to "global_totals"
  • Create a folder for each country with all relevant information regarding COVID-19
  • Update the information every 15 minutes

The following information is available :

| Datapoint | Details | |--|--| | active | Amount of current infected people | | cases | Amount of totally known cases | | casesPerOneMillion | Amount of totally known cases per million citizen | | critical | Amount of critical situation (Hospitalized) | | deaths | Amount of current registered deaths | | deathsPerOneMillion | Amount of current registered deaths per million citizen | | flag | Country flag, link to github location | | recovered | Amount of totally known recovered cases | | todayCases | New Cases by Today | | todayDeaths | Amount of totally known people died today | | test | Total number of COVID-19 tests taken globally | | tests per one million counties | Total number of COVID-19 tests taken globally per one million |

Please be aware this adapter uses as much as possible up-to-date information, but there can be a delay of several hours depending on the country's report.
German Federal States : https://npgeo-corona-npgeo-de.hub.arcgis.com/ s Generic Source : https://coronavirus-19-api.herokuapp.com

Advanced settings

| Option | Description | |--|--| | All Countries | Get data for all countries World-Wide (Default: false) | | Continents | Group total amounts by a continent in separate state (Default: false) | | Delete unused States | Delete data when countries are deselected (Default: false) |

## For Germany only
| Option | Description |
|--|--|
| Federal states| Get federal state data for Germany (Selected only, Default false) |
| counties | Get data for Germany counties (Selected only, Default false) |
| Cities | Get data for Germany cities (Selected only, Default false) |
| All federal states | All Germany federal states  (Default false) |
| All cities | All Germany cities (Default false) |
| All counties | All Germany counties (Default false) |

It's possible to get data for federal states (Bundesländer), cities (Städte) counties (Landeskreise).
You can choose to receive all data or just select specific regions in advanced settings.

<span style="color:red">Vaccination data is currently only available for Germany and will only be retrieved when *"Bundesländer"* is activated</span>

Add missing countries

It may happen that countries are not recognized correctly because the API delivers some country names not ISO conform. In such a case you will get a warning message in the log, which looks like this

coronavirus-statistics.0	2020-03-21 09:05:31.328	warn	(22937) Timor-Leste not found in lib! Must be added to the country name translator.

Using the datapoint coronavirus-statistics.0.countryTranslator you can assign a country yourself. Look for the name of the corresponding country here:

List with country names

With the selected country name you have to create a JSON string and enter it in the datapoint coronavirus-statistics.0.countryTranslator. The JSON string then looks like this, for example:

{
	"Cabo_Verde": "Cape Verde",
	"Timor-Leste": "East Timor"
}

As first value, the name from the warning message must be taken from the log. The name of the country from the List with country names is then assigned to this.

Changelog

0.9.0 (2023-11-16) - Remove unsupported APIs

  • (DutchmanNL) Remove specific data regarding germany as APIs are not available anymore
  • (DutchmanNL) Data source dedicated for https://coronavirus-19-api.herokuapp.com, we are unable to support more APIs due to changes, complexity and available development capacity. But please feel free to provide PR's!

0.8.8-0 (2021-11-19)

  • (jlssmt) added hospital index for germany and federal states of germany

0.8.7 (2021-11-17)

  • (DutchmanNL) Bugfix: Added missing definitions
  • (jlssmt) Error handling for missing state attribute definitions Optimized

0.8.6 (2021-11-15)

  • (Simatec) Design Fix for Admin >=5.1.28 Dark/Blue Theme

0.8.5 (2021-10-29)

  • (jlssmt) Error handling for bundesländer api implemented

License

MIT License

Copyright (c) 2023 DrozmotiX Holding B.V. [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.