Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Coronavirus Statistics for ioBroker

NEWS

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    17
    1
    2.8k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.1k

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.4k

Test Coronavirus Statistics for ioBroker

Scheduled Pinned Locked Moved Tester
adapter installationadapterentwicklungtesten
1.2k Posts 120 Posters 357.2k Views 94 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • LatziL Online
    LatziL Online
    Latzi
    wrote on last edited by
    #37

    Der 7. Wert (Aktuell) wird berechnet (Aktuell = Bestätigt - Gesund - Todesfälle, vermute ich) und ein Rechtschreibfehler im widget, "Gesund" anstatt "Gesung".

    BluefoxB 1 Reply Last reply
    0
    • LatziL Latzi

      Der 7. Wert (Aktuell) wird berechnet (Aktuell = Bestätigt - Gesund - Todesfälle, vermute ich) und ein Rechtschreibfehler im widget, "Gesund" anstatt "Gesung".

      BluefoxB Offline
      BluefoxB Offline
      Bluefox
      wrote on last edited by
      #38

      @Latzi Fixed in 0.2.2

      1 Reply Last reply
      2
      • C Offline
        C Offline
        Coffeelover
        wrote on last edited by
        #39

        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...

        DutchmanD 1 Reply Last reply
        0
        • C Coffeelover

          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...

          DutchmanD Offline
          DutchmanD Offline
          Dutchman
          Developer Most Active Administrators
          wrote on last edited by
          #40

          @Coffeelover sagte in Test Coronavirus Statistics for ioBroker:

          Habt ihr noch einen Tipp, um das Widget zu sehen?

          system mal neu gestartet ?

          C 1 Reply Last reply
          1
          • DutchmanD Dutchman

            @Coffeelover sagte in Test Coronavirus Statistics for ioBroker:

            Habt ihr noch einen Tipp, um das Widget zu sehen?

            system mal neu gestartet ?

            C Offline
            C Offline
            Coffeelover
            wrote on last edited by Coffeelover
            #41

            @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.

            LatziL 1 Reply Last reply
            0
            • C Coffeelover

              @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.

              LatziL Online
              LatziL Online
              Latzi
              wrote on last edited by
              #42

              @Coffeelover
              Iobroker stop vis
              Iobroker upload vis
              Iobroker start vis
              Browser neu starten und Cache leeren

              1 Reply Last reply
              2
              • Dominik F.D Offline
                Dominik F.D Offline
                Dominik F.
                wrote on last edited by
                #43

                @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.

                1 Reply Last reply
                0
                • ScroungerS Offline
                  ScroungerS Offline
                  Scrounger
                  Developer
                  wrote on last edited by
                  #44

                  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:
                  c7461f3c-0149-4062-817f-b195e9a6c3a6-grafik.png

                  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();
                  
                  
                  sigi234S DutchmanD Uli977U 3 Replies Last reply
                  1
                  • sigi234S sigi234

                    @Tobias

                    CSS Font und Text

                    1Topf1 Offline
                    1Topf1 Offline
                    1Topf
                    wrote on last edited by
                    #45

                    @sigi234 sagte in Test Coronavirus Statistics for ioBroker:

                    @Tobias

                    CSS Font und Text

                    Ich sehe die unterste Zeile auch kaum bzw. gar nicht, egal welche Schriftart ich einstelle. :confused:

                    ? 1 Reply Last reply
                    0
                    • 1Topf1 1Topf

                      @sigi234 sagte in Test Coronavirus Statistics for ioBroker:

                      @Tobias

                      CSS Font und Text

                      Ich sehe die unterste Zeile auch kaum bzw. gar nicht, egal welche Schriftart ich einstelle. :confused:

                      ? Offline
                      ? Offline
                      A Former User
                      wrote on last edited by
                      #46

                      @1Topf Dann verbreitere das Widget mal...

                      ScroungerS 1 Reply Last reply
                      1
                      • ? A Former User

                        @1Topf Dann verbreitere das Widget mal...

                        ScroungerS Offline
                        ScroungerS Offline
                        Scrounger
                        Developer
                        wrote on last edited by
                        #47

                        @Yetiberg @1Topf

                        per css könnt ihr gezielt alles einstellen:

                        .covid-div-title{
                            color: #44739e;
                            font-family: RobotoCondensed-Regular;
                            font-weight: normal !important;
                            margin-bottom: 4px;
                        }
                        
                        .covid-div-number{
                            color: gray;
                            font-family: RobotoCondensed-LightItalic;
                            margin-top: 2px;
                        }
                        
                        .covid-div-img {
                            height: 30px !important;
                        }
                        
                        1 Reply Last reply
                        0
                        • ScroungerS Scrounger

                          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:
                          c7461f3c-0149-4062-817f-b195e9a6c3a6-grafik.png

                          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();
                          
                          
                          sigi234S Online
                          sigi234S Online
                          sigi234
                          Forum Testing Most Active
                          wrote on last edited by
                          #48

                          @Scrounger sagte in Test Coronavirus Statistics for ioBroker:

                          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.

                          Danke.

                          Screenshot (2065).png

                          Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                          Immer Daten sichern!

                          1 Reply Last reply
                          0
                          • harrymH Offline
                            harrymH Offline
                            harrym
                            wrote on last edited by
                            #49

                            Bildschirmfoto vom 2020-03-17 22-46-53.png

                            und mich interessiert eher die Entwicklung über nen Zeitraum .... dafür verwende ich den Adapter. DANKE dafür.

                            ASRock FM2A88X-ITX+ mit 32GB RAM, 128GB SSD mit Proxmox, 3x1 TB SSD als RAID mit CT und VMs.

                            1 Reply Last reply
                            0
                            • C Offline
                              C Offline
                              Coffeelover
                              wrote on last edited by Coffeelover
                              #50

                              Mich interessieren auch die Verläufe. Mit material-design line history tauchen die Werte häufig nicht auf. Deswegen aktuell mit Float. Ich vergleiche für Deutschland gerade noch 2 Quellen. Auch von mir jedenfalls Danke für den Adapter.
                              4aac328f-197a-448f-8fa8-baf11ceb1739-grafik.png
                              Edit: So sollte es mit Material-Design aussehen:
                              8a26b58d-5a05-420c-b521-a33f5551599f-grafik.png

                              1 Reply Last reply
                              0
                              • ScroungerS Scrounger

                                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:
                                c7461f3c-0149-4062-817f-b195e9a6c3a6-grafik.png

                                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();
                                
                                
                                DutchmanD Offline
                                DutchmanD Offline
                                Dutchman
                                Developer Most Active Administrators
                                wrote on last edited by
                                #51

                                @Scrounger sagte in Test Coronavirus Statistics for ioBroker:

                                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.

                                danke, das werde ich im adapter integrieren :)

                                hast du ein GitHub account damit ich dich verlinken kan als contributor ?

                                C 1 Reply Last reply
                                0
                                • DutchmanD Dutchman

                                  @Scrounger sagte in Test Coronavirus Statistics for ioBroker:

                                  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.

                                  danke, das werde ich im adapter integrieren :)

                                  hast du ein GitHub account damit ich dich verlinken kan als contributor ?

                                  C Offline
                                  C Offline
                                  Coffeelover
                                  wrote on last edited by
                                  #52

                                  @Dutchman https://github.com/Scrounger

                                  1 Reply Last reply
                                  0
                                  • ScroungerS Offline
                                    ScroungerS Offline
                                    Scrounger
                                    Developer
                                    wrote on last edited by
                                    #53

                                    Hab mein Skript noch erweitert um:

                                    • Kontinent Amerika (Zusammenfassung von Nord- & Süd Amerika)
                                    • Welt, fehlende Werte für todayCases & todayDeaths

                                    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,
                                                }
                                            });
                                    
                                            continentsStats['America'] = {
                                                cases: 0,
                                                critical: 0,
                                                deaths: 0,
                                                recovered: 0,
                                                todayCases: 0,
                                                todayDeaths: 0,
                                            };
                                    
                                            continentsStats['World'] = {
                                                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;
                                    
                                                        if (country.continent === 'South America' || country.continent === 'North America') {
                                                            continentsStats['America'].cases = continentsStats['America'].cases + getState(idCases).val;
                                                            continentsStats['America'].critical = continentsStats['America'].critical + getState(idCritical).val;
                                                            continentsStats['America'].deaths = continentsStats['America'].deaths + getState(idDeaths).val;
                                                            continentsStats['America'].recovered = continentsStats['America'].recovered + getState(idRecovered).val;
                                                            continentsStats['America'].todayCases = continentsStats['America'].todayCases + getState(idTodayCases).val;
                                                            continentsStats['America'].todayDeaths = continentsStats['America'].todayDeaths + getState(idTodayDeaths).val;
                                                        }
                                    
                                                        continentsStats['World'].todayCases = continentsStats['World'].todayCases + getState(idTodayCases).val;
                                                        continentsStats['World'].todayDeaths = continentsStats['World'].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();
                                    
                                    1 Reply Last reply
                                    0
                                    • sigi234S sigi234

                                      @All

                                      View fertig.

                                      Screenshot (2058).png

                                      Uli977U Offline
                                      Uli977U Offline
                                      Uli977
                                      wrote on last edited by Uli977
                                      #54

                                      @sigi234 stellst du das View mal zur Verfügung?
                                      Inkl der nötigen Icons und ggf. Skripte wenn erforderlich.

                                      sigi234S 1 Reply Last reply
                                      0
                                      • Uli977U Uli977

                                        @sigi234 stellst du das View mal zur Verfügung?
                                        Inkl der nötigen Icons und ggf. Skripte wenn erforderlich.

                                        sigi234S Online
                                        sigi234S Online
                                        sigi234
                                        Forum Testing Most Active
                                        wrote on last edited by
                                        #55

                                        @Uli977 sagte in Test Coronavirus Statistics for ioBroker:

                                        @sigi234 stellst du das View mal zur Verfügung?
                                        Inkl der nötigen Icons und ggf. Skripte wenn erforderlich.

                                        https://forum.iobroker.net/topic/28717/vis-von-sigi234/180

                                        Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                        Immer Daten sichern!

                                        Uli977U 1 Reply Last reply
                                        0
                                        • sigi234S sigi234

                                          @Uli977 sagte in Test Coronavirus Statistics for ioBroker:

                                          @sigi234 stellst du das View mal zur Verfügung?
                                          Inkl der nötigen Icons und ggf. Skripte wenn erforderlich.

                                          https://forum.iobroker.net/topic/28717/vis-von-sigi234/180

                                          Uli977U Offline
                                          Uli977U Offline
                                          Uli977
                                          wrote on last edited by
                                          #56

                                          @sigi234 Danke!

                                          Aber was habe ich vergessen?

                                          1f23f323-8004-4221-9194-e67b8832f98b-image.png

                                          vis-materialdesign.0 ist installiert

                                          sigi234S 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          609

                                          Online

                                          32.6k

                                          Users

                                          82.3k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Home
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe