NEWS
Test Coronavirus Statistics for ioBroker
-
@MartyBr sagte in Test Coronavirus Statistics for ioBroker:
Im VIS Editor? Ich habe den ioBroker schon neu gestartet, finde ihn aber nicht
benutzt du Firefox? Da hab ich auch das Problem gehabt (trotz cache leeren). Mit Chrome hat´s funktioniert.
-
@Latzi
Nein Safari (Mac). Habe Safari neu gestartet und nun ist es da!
Vielen Dank -
@stimezo Würdest du deine VIS teilen?
-
Danke, läuft einwandfrei. Bei einem Land steht "Ich rannte". Auto Complete beim Iran?
-
@leif1 sagte in Test Coronavirus Statistics for ioBroker:
Bei einem Land steht "Ich rannte"
Und Diamantprinzessin
-
es erschreckende derzeit ist eher, dass in A und Co (wo echt harte Maßnahmen getroffen wurden) die Verbreitung stagniert.
Bei uns in D sieht es derzeit anders aus
-
@harrym sagte in Test Coronavirus Statistics for ioBroker:
Bei uns in D sieht es derzeit anders aus
Und Warum wohl ?
-
@sigi234 weil es eben merkel ned so macht wie kurz .... sry 4 OT
-
@All
View fertig.
-
@sigi234 hab ich was über-sehen/lesen? Woher kommt der 7te Wert?
-
@crunchip sagte in Test Coronavirus Statistics for ioBroker:
@sigi234 hab ich was über-sehen/lesen? Woher kommt der 7te Wert?
Gute Frage, kommt vom Widget. In den Objekten gibt es aber nur 6.
-
Der 7. Wert (Aktuell) wird berechnet (Aktuell = Bestätigt - Gesund - Todesfälle, vermute ich) und ein Rechtschreibfehler im widget, "Gesund" anstatt "Gesung".
-
@Latzi Fixed in 0.2.2
-
Habt ihr noch einen Tipp, um das Widget zu sehen?
Ich habe schon den Browser-Cache geleert (Firefox und Chrome getestet), den Browser neu gestartet (Firefox und Chrome getestet), den VIS-Adapter neu gestartet. Ich bekomme das VIS nicht angezeigt... -
@Coffeelover sagte in Test Coronavirus Statistics for ioBroker:
Habt ihr noch einen Tipp, um das Widget zu sehen?
system mal neu gestartet ?
-
@Dutchman Das habe ich gerade erfolgreich nachgeholt. Thx.
Zumindest so, dass ich das Widget sehe. Für Länder bekomme ich noch keine Zahlen angezeigt. Für "Alle" funktioniert es. -
@Coffeelover
Iobroker stop vis
Iobroker upload vis
Iobroker start vis
Browser neu starten und Cache leeren -
@Dutchman
Vielen Dank für den Adapter. Ich fände es schön, wenn man die Symbole in der Farbe anpassen könnte. Ich nutze einen dunklen Hintergrund und da sind die Symbole schwer erkennbar. -
Da mich schon immer die Werte pro Kontinent intressiert haben, aber ich dazu nix brauchbares im Netz finden kann, hab ich mal ein kleines Skript geschrieben, dass die Daten dieses Adapters verwendet.
Voraussetzung:
- Javascript NPM-Module:
country-list-js
Unter der Javascript instanz wird folgende Struktur automatisch angelegt:
Skript:
const countryJs = require("country-list-js"); let selector = `[id=coronavirus-statistics.0.*.cases]` let allCountries = $(selector); // Fehlermeldung ausgeben, wenn selector kein result liefert if (allCountries.length === 0) { console.error(`no result for selector '${selector}'`) } on({ id: 'coronavirus-statistics.0.global_totals.updated', change: 'any' }, statsForContinents); function statsForContinents() { setTimeout(function () { console.log('Corona Statistik für Kontinente wird erstellt'); let countryTranslator = { // https://github.com/i-rocky/country-list-js/blob/master/data/names.json "Vatican_City": "Vatican", "USA": "United States", "UK": "United Kingdom", "UAE": "United Arab Emirates", "US_Virgin_Islands": "U.S. Virgin Islands", "St_Vincent_Grenadines": "Saint Vincent and the Grenadines", "St_Barth": "Saint Barthelemy", "S_Korea": "South Korea", "Palestine": "Palestinian Territory", "North_Macedonia": "Macedonia", "Faeroe_Islands": "Faroe Islands", "Eswatini": "Swaziland", "Czechia": "Czech Republic", "Congo": "Republic of the Congo", "CAR": "Central African Republic", "DRC": "Democratic Republic of the Congo", "Channel_Islands": "France" // gehört zu Europa, deshalb Frankreich einfach vergeben } var continentsStats = {}; countryJs.continents().forEach(function (continent, index) { continentsStats[continent] = { cases: 0, critical: 0, deaths: 0, recovered: 0, todayCases: 0, todayDeaths: 0, } }); for (var i = 0; i <= allCountries.length - 1; i++) { let idCases = allCountries[i]; let idCritical = idCases.replace('.cases', '.critical'); let idDeaths = idCases.replace('.cases', '.deaths'); let idRecovered = idCases.replace('.cases', '.recovered'); let idTodayCases = idCases.replace('.cases', '.todayCases'); let idTodayDeaths = idCases.replace('.cases', '.todayDeaths'); let countryName = idCases.split('.')[2]; let country = countryJs.findByName(countryName.replace(/_/g, ' ').replace('é', 'e').replace('ç', 'c')); if (country) { calcStats(country); } else { country = countryJs.findByName(countryTranslator[countryName]); if (country) { calcStats(country); } else { if (countryName !== 'global_totals' && countryName !== 'Diamond_Princess') { console.warn(`${countryName} nicht in gefunden. Korrekter Name muss im skript manuell hinzugefügt werden!`); } } } function calcStats(country) { if (country.continent) { continentsStats[country.continent].cases = continentsStats[country.continent].cases + getState(idCases).val; continentsStats[country.continent].critical = continentsStats[country.continent].critical + getState(idCritical).val; continentsStats[country.continent].deaths = continentsStats[country.continent].deaths + getState(idDeaths).val; continentsStats[country.continent].recovered = continentsStats[country.continent].recovered + getState(idRecovered).val; continentsStats[country.continent].todayCases = continentsStats[country.continent].todayCases + getState(idTodayCases).val; continentsStats[country.continent].todayDeaths = continentsStats[country.continent].todayDeaths + getState(idTodayDeaths).val; } else { console.warn(`Für ${countryName} existiert kein Kontinent!`); } } } for (var continent in continentsStats) { for (var prop in continentsStats[continent]) { let dpId = `corona.continents.${continent}.${prop}` if (existsState(dpId)) { setState(dpId, continentsStats[continent][prop], true); } else { createState(dpId, continentsStats[continent][prop], { name: `${continent} ${prop}`, read: true, write: false, desc: `${continent} ${prop}`, type: "number", def: 0, }); } } } }, 30000); } // Bei JS Start ausführen statsForContinents();
- Javascript NPM-Module:
-
@sigi234 sagte in Test Coronavirus Statistics for ioBroker:
CSS Font und Text
Ich sehe die unterste Zeile auch kaum bzw. gar nicht, egal welche Schriftart ich einstelle.