-
-
Save Baumchen/6d91df0a4c76c45b15576db0632e4329 to your computer and use it in GitHub Desktop.
// Licence: Robert Koch-Institut (RKI), dl-de/by-2-0 | |
// Multiple values: Use with `48.260,11.439,DAH;48.809,11.897,KEH;49.122,12.549,LA` as widget parameter e.g. | |
// Current location can be used with: `current,NAME;48.809,11.897,KEH;49.122,12.549,LA` as widget parameter e.g. | |
const apiUrl = (location) => `https://services7.arcgis.com/mOBPykOjAyBO2ZKk/arcgis/rest/services/RKI_Landkreisdaten/FeatureServer/0/query?where=1%3D1&outFields=GEN,last_update,cases7_per_100k&geometry=${location.longitude.toFixed(3)}%2C${location.latitude.toFixed(3)}&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelWithin&returnGeometry=false&outSR=4326&f=json` | |
function parseLocation(location) { | |
const fixedCoordinates = location.split(",") | |
if (fixedCoordinates[0] === "current") { | |
return { | |
current_location: true, | |
name: fixedCoordinates.length >= 2 ? fixedCoordinates[1] : null, | |
} | |
} | |
return { | |
latitude: parseFloat(fixedCoordinates[0]), | |
longitude: parseFloat(fixedCoordinates[1]), | |
name: fixedCoordinates.length >= 3 ? fixedCoordinates[2] : null, | |
} | |
} | |
async function dataForLocation(location) { | |
let locationData | |
if (location.current_location) { | |
Location.setAccuracyToThreeKilometers() | |
locationData = await Location.current() | |
} else { | |
locationData = location | |
} | |
const data = await new Request(apiUrl(locationData)).loadJSON() | |
if (!data || !data.features || !data.features.length) { | |
return { | |
error: "Keine Ergebnisse für den aktuellen Ort gefunden.", | |
} | |
} | |
const attr = data.features[0].attributes | |
const incidence = attr.cases7_per_100k.toFixed(1) | |
const cityName = location["name"] ? location["name"] : attr.GEN | |
const lastUpdate = parseInt(attr.last_update.split(".")[0]) | |
return { | |
incidence: incidence, | |
name: cityName, | |
updateDay: lastUpdate, | |
} | |
} | |
let widget = await createWidget() | |
if (!config.runsInWidget) { | |
await widget.presentSmall() | |
} | |
Script.setWidget(widget) | |
Script.complete() | |
async function createWidget(items) { | |
let parameters | |
if (args.widgetParameter) { | |
parameters = args.widgetParameter | |
} else { | |
parameters = "current" | |
} | |
const locations = parameters.split(";").map(parseLocation) | |
const list = new ListWidget() | |
const header = list.addStack() | |
header.layoutHorizontally() | |
header.centerAlignContent() | |
const headerTitle = header.addText("🦠 Inzidenz".toUpperCase()) | |
headerTitle.font = Font.mediumSystemFont(13) | |
headerTitle.leftAlignText() | |
header.addSpacer() | |
const currentDate = new Date().getDate() | |
const dateLabel = header.addText(currentDate + ".") | |
dateLabel.font = Font.mediumSystemFont(10) | |
dateLabel.rightAlignText() | |
list.addSpacer() | |
for (location of locations) { | |
const data = await dataForLocation(location) | |
if (data["error"]) { | |
list.addText(data["error"]) | |
continue | |
} | |
const incidence = data["incidence"] | |
const cityName = data["name"] | |
const line = list.addStack() | |
line.layoutHorizontally() | |
line.centerAlignContent() | |
line.useDefaultPadding() | |
const label = line.addText(incidence + "") | |
label.font = Font.boldSystemFont(24) | |
label.leftAlignText() | |
if (incidence >= 50) { | |
label.textColor = Color.red() | |
} else if (incidence >= 35) { | |
label.textColor = Color.orange() | |
} else { | |
label.textColor = Color.green() | |
} | |
line.addSpacer() | |
if (currentDate !== data.updateDay) { | |
const oldData = line.addText("⌛") | |
oldData.font = Font.systemFont(10) | |
} | |
const name = line.addText(cityName) | |
name.rightAlignText() | |
if (currentDate !== data.updateDay) { | |
name.textColor = Color.orange() | |
} | |
} | |
return list | |
} |
Danke, das funktioniert super.
Weiß jemand ob es das für Österreich auch gibt?
Danke, das funktioniert super.
Weiß jemand ob es das für Österreich auch gibt?
Da würde ich vmtl. eher mal im originalen Gist nachfragen: https://gist.github.com/kevinkub/46caebfebc7e26be63403a7f0587f664 da gibt's etwas mehr Aktivität als hier, das ist ja nur eine Variante.
Scheint aber als gäbe es hier (https://www.data.gv.at/suche/?sort=abc#C) tatsächlich ein paar APIs (zwar nicht die Inzidenz, aber zumindest die Anzahl der neuen Fälle pro Tag: https://www.data.gv.at/katalog/dataset/469acdc1-998f-4d04-b5ca-6a722130e85e).
Da kann man sich vmtl. relativ einfach was draus basteln.
Hier (https://covid19-dashboard.ages.at/data/JsonData.json) kriegt man sogar alle Daten die im Board von Österreich angezeigt werden, aber das sind schon sehr viele Daten, die da geladen werden müssen.
Bzw. hier gibt es sogar nach GKZ die Inzidenz: https://covid19-dashboard.ages.at/data/CovidFaelle_GKZ.csv ..
Die Idee mit mehreren Orten ist super. Kann ich sowohl den aktuellen Ort als auch weitere feste Orte hinterlegen? Ähnlich wie es in der Wetter App von Apple der Fall ist.
Hätte gerne auf Reisen den jeweiligen Wert und zusätzlich immer auch noch den Wert meiner Heimatstadt.
Die Idee mit mehreren Orten ist super. Kann ich sowohl den aktuellen Ort als auch weitere feste Orte hinterlegen? Ähnlich wie es in der Wetter App von Apple der Fall ist.
Hätte gerne auf Reisen den jeweiligen Wert und zusätzlich immer auch noch den Wert meiner Heimatstadt.
Das wäre wirklich cool!
Hi ...
Ich habe mir so einen "Smart Stapel" gemacht, in dem ich 3 Forks eingebunden haben.
01 - Fork von marcelrebmann
02 - Fork von Baumchen
03 - Fork von malakka
So kann ich zwischen den verschiedenen Ansichten wählen ... so kannst Du auch einfach verschiedene Orte in einen
"Smart Stapel" packen ... zuerst je ein Widget erstellen und dann ineinander packen.
CU
Hi ...
Ich habe mir so einen "Smart Stapel" gemacht, in dem ich 3 Forks eingebunden haben.
01 - Fork von marcelrebmann
02 - Fork von Baumchen
03 - Fork von malakka
So kann ich zwischen den verschiedenen Ansichten wählen ... so kannst Du auch einfach verschiedene Orte in einen
"Smart Stapel" packen ... zuerst je ein Widget erstellen und dann ineinander packen.
CU
Schon klar. Ich habe das Widget auch in einem Smart Stapel, aber die Idee dieses Widgets hier ist es ja gerade mehrere Orte in einem Widget zu sehen. Da wäre es echt toll wenn der aktuelle Ort und feste Orte in einem Widget kombiniert werden könnten.
@MirkoKas, @idominiki, @NoTrace-Kai
Ist geupdated, einfach als Parameter "current" statt der Longitude, Latitude anzugeben. Als Name wir dann der aktuelle Ort verwendet, wenn man "current,HIER" nimmt, wird immer "HIER" als Name angezeigt.
Als Beispiel: current,NAME;48.809,11.897,KEH;49.122,12.549,LA
.
@Baumchen Super! Vielen Dank für das Update. Das mit der Location habe ich selbst einfach nicht hinbekommen.
Ich habe mir noch das letzte Refresh Datum mit in das Skript integriert und jetzt ist es für mich perfekt.
Ich nutze das Widget übrigens in der mittleren Größe und dann schaut es bei mir so aus.
Danke, das funktioniert super.
Weiß jemand ob es das für Österreich auch gibt?
Probier mal das hier aus:
https://gist.github.com/Baumchen/b8b9aaf5ba0aebef173a4f956a3b4290
Denke, das sollte soweit auch funktionieren..
Wie kann ich denn das Datum einfügen? 😊
Kann ich mir auch den Durchschnitt für ganz Deutschland anzeigen lassen oder alle Neuinfektionen pro Tag?
Wie kann ich denn das Datum einfügen? 😊
Ich pack dir mal meinen Code rein - geht sicherlich besser und ist auch nur im Hinblick auf die mittleren Widgets angepasst:
// Licence: Robert Koch-Institut (RKI), dl-de/by-2-0
// Multiple values: Use with 48.260,11.439,DAH;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
// Current location can be used with: current,NAME;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
const apiUrl = (location) => https://services7.arcgis.com/mOBPykOjAyBO2ZKk/arcgis/rest/services/RKI_Landkreisdaten/FeatureServer/0/query?where=1%3D1&outFields=GEN,cases7_per_100k,last_update&geometry=${location.longitude.toFixed(3)}%2C${location.latitude.toFixed(3)}&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelWithin&returnGeometry=false&outSR=4326&f=json
function parseLocation (location) {
const fixedCoordinates = location.split(",")
if (fixedCoordinates[0] === "current") {
return {
current_location: true,
name: fixedCoordinates.length >= 2 ? fixedCoordinates[1] : null,
}
}
return {
latitude: parseFloat(fixedCoordinates[0]),
longitude: parseFloat(fixedCoordinates[1]),
name: fixedCoordinates.length >= 3 ? fixedCoordinates[2] : null,
}
}
async function dataForLocation(location) {
let locationData
if (location.current_location) {
Location.setAccuracyToThreeKilometers()
locationData = await Location.current()
} else {
locationData = location
}
const data = await new Request(apiUrl(locationData)).loadJSON()
if (!data || !data.features || !data.features.length) {
return {
error: "Keine Ergebnisse für den aktuellen Ort gefunden.",
}
}
const attr = data.features[0].attributes
const incidence = attr.cases7_per_100k.toFixed(1)
const lastRefresh = attr.last_update
const cityName = location["name"] ? location["name"] : attr.GEN
return {
incidence: incidence,
name: cityName,
date: lastRefresh
}
}
let widget = await createWidget()
if (!config.runsInWidget) {
await widget.presentSmall()
}
Script.setWidget(widget)
Script.complete()
async function createWidget(items) {
let parameters
if (args.widgetParameter) {
parameters = args.widgetParameter
} else {
parameters = "current"
}
const locations = parameters.split(";").map(parseLocation)
const list = new ListWidget()
const header = list.addText("🦠 Inzidenz".toUpperCase())
header.font = Font.mediumSystemFont(13)
list.addSpacer()
for (location of locations) {
const data = await dataForLocation(location)
if (data["error"]) {
list.addText(data["error"])
continue
}
const incidence = data["incidence"]
const cityName = data["name"]
const lastRefresh = data["date"]
const line = list.addStack()
line.layoutHorizontally()
line.centerAlignContent()
line.useDefaultPadding()
const label = line.addText(incidence+"")
label.font = Font.boldSystemFont(24)
label.leftAlignText()
if(incidence >= 50) {
label.textColor = Color.red()
} else if(incidence >= 35) {
label.textColor = Color.orange()
} else {
label.textColor = Color.green()
}
line.addSpacer()
const name = line.addText(cityName)
name.rightAlignText()
line.addSpacer()
const label1 = line.addText(lastRefresh.substr(0,10))
label1.font = Font.mediumSystemFont(6)
}
return list
}
Wie kann ich denn das Datum einfügen? 😊
Jetzt wird rechts oben das aktuelle Datum angezeigt.
Wenn die Daten der API nicht am selben Tag sind, dann wird der Ort in Orange angezeigt und ein kleines Icon davor platziert.
Das sollte ja eigentlich reichen, um zu sehen, ob die Daten aktuell sind.
Wie kann ich denn das Datum einfügen? 😊
Jetzt wird rechts oben das aktuelle Datum angezeigt.
Wenn die Daten der API nicht am selben Tag sind, dann wird der Ort in Orange angezeigt und ein kleines Icon davor platziert.
Das sollte ja eigentlich reichen, um zu sehen, ob die Daten aktuell sind.
Guten Morgen
Bei mir kommt dann
2020-10-25 08:49:09: Error on line 5: SyntaxError: Unexpected token ':'. Expected ';' after variable declaration.
Wie kann ich denn das Datum einfügen? 😊
Ich pack dir mal meinen Code rein - geht sicherlich besser und ist auch nur im Hinblick auf die mittleren Widgets angepasst:
// Licence: Robert Koch-Institut (RKI), dl-de/by-2-0
// Multiple values: Use with48.260,11.439,DAH;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
// Current location can be used with:current,NAME;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.const apiUrl = (location) =>
https://services7.arcgis.com/mOBPykOjAyBO2ZKk/arcgis/rest/services/RKI_Landkreisdaten/FeatureServer/0/query?where=1%3D1&outFields=GEN,cases7_per_100k,last_update&geometry=${location.longitude.toFixed(3)}%2C${location.latitude.toFixed(3)}&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelWithin&returnGeometry=false&outSR=4326&f=json
function parseLocation (location) {
const fixedCoordinates = location.split(",")if (fixedCoordinates[0] === "current") {
return {
current_location: true,
name: fixedCoordinates.length >= 2 ? fixedCoordinates[1] : null,
}
}return {
latitude: parseFloat(fixedCoordinates[0]),
longitude: parseFloat(fixedCoordinates[1]),
name: fixedCoordinates.length >= 3 ? fixedCoordinates[2] : null,
}
}async function dataForLocation(location) {
let locationData
if (location.current_location) {
Location.setAccuracyToThreeKilometers()
locationData = await Location.current()
} else {
locationData = location
}const data = await new Request(apiUrl(locationData)).loadJSON()
if (!data || !data.features || !data.features.length) {
return {
error: "Keine Ergebnisse für den aktuellen Ort gefunden.",
}
}const attr = data.features[0].attributes
const incidence = attr.cases7_per_100k.toFixed(1)
const lastRefresh = attr.last_update
const cityName = location["name"] ? location["name"] : attr.GENreturn {
incidence: incidence,
name: cityName,
date: lastRefresh
}
}let widget = await createWidget()
if (!config.runsInWidget) {
await widget.presentSmall()
}Script.setWidget(widget)
Script.complete()async function createWidget(items) {
let parametersif (args.widgetParameter) {
parameters = args.widgetParameter
} else {
parameters = "current"
}const locations = parameters.split(";").map(parseLocation)
const list = new ListWidget()
const header = list.addText("🦠 Inzidenz".toUpperCase())
header.font = Font.mediumSystemFont(13)list.addSpacer()
for (location of locations) {
const data = await dataForLocation(location)if (data["error"]) {
list.addText(data["error"])
continue
}const incidence = data["incidence"]
const cityName = data["name"]
const lastRefresh = data["date"]const line = list.addStack()
line.layoutHorizontally()
line.centerAlignContent()
line.useDefaultPadding()const label = line.addText(incidence+"")
label.font = Font.boldSystemFont(24)
label.leftAlignText()if(incidence >= 50) {
label.textColor = Color.red()
} else if(incidence >= 35) {
label.textColor = Color.orange()
} else {
label.textColor = Color.green()
}line.addSpacer()
const name = line.addText(cityName)
name.rightAlignText()line.addSpacer()
const label1 = line.addText(lastRefresh.substr(0,10))
label1.font = Font.mediumSystemFont(6)
}return list
}
@user: MirkoKas
Hallo, würde gerne dein Widget verwenden. Leider bekomme ich die Fehlermeldung:
Error on line 5: SyntaxError: Unexpected token ':'. Expected ';' after variable declaration.
Weißt Du an was das liegt ?
Servus
Hans
Wie kann ich denn das Datum einfügen? 😊
Ich pack dir mal meinen Code rein - geht sicherlich besser und ist auch nur im Hinblick auf die mittleren Widgets angepasst:
// Licence: Robert Koch-Institut (RKI), dl-de/by-2-0
// Multiple values: Use with48.260,11.439,DAH;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
// Current location can be used with:current,NAME;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
const apiUrl = (location) =>https://services7.arcgis.com/mOBPykOjAyBO2ZKk/arcgis/rest/services/RKI_Landkreisdaten/FeatureServer/0/query?where=1%3D1&outFields=GEN,cases7_per_100k,last_update&geometry=${location.longitude.toFixed(3)}%2C${location.latitude.toFixed(3)}&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelWithin&returnGeometry=false&outSR=4326&f=json
function parseLocation (location) {
const fixedCoordinates = location.split(",")
if (fixedCoordinates[0] === "current") {
return {
current_location: true,
name: fixedCoordinates.length >= 2 ? fixedCoordinates[1] : null,
}
}
return {
latitude: parseFloat(fixedCoordinates[0]),
longitude: parseFloat(fixedCoordinates[1]),
name: fixedCoordinates.length >= 3 ? fixedCoordinates[2] : null,
}
}
async function dataForLocation(location) {
let locationData
if (location.current_location) {
Location.setAccuracyToThreeKilometers()
locationData = await Location.current()
} else {
locationData = location
}
const data = await new Request(apiUrl(locationData)).loadJSON()
if (!data || !data.features || !data.features.length) {
return {
error: "Keine Ergebnisse für den aktuellen Ort gefunden.",
}
}
const attr = data.features[0].attributes
const incidence = attr.cases7_per_100k.toFixed(1)
const lastRefresh = attr.last_update
const cityName = location["name"] ? location["name"] : attr.GEN
return {
incidence: incidence,
name: cityName,
date: lastRefresh
}
}
let widget = await createWidget()
if (!config.runsInWidget) {
await widget.presentSmall()
}
Script.setWidget(widget)
Script.complete()
async function createWidget(items) {
let parameters
if (args.widgetParameter) {
parameters = args.widgetParameter
} else {
parameters = "current"
}
const locations = parameters.split(";").map(parseLocation)
const list = new ListWidget()
const header = list.addText("🦠 Inzidenz".toUpperCase())
header.font = Font.mediumSystemFont(13)
list.addSpacer()
for (location of locations) {
const data = await dataForLocation(location)
if (data["error"]) {
list.addText(data["error"])
continue
}
const incidence = data["incidence"]
const cityName = data["name"]
const lastRefresh = data["date"]
const line = list.addStack()
line.layoutHorizontally()
line.centerAlignContent()
line.useDefaultPadding()
const label = line.addText(incidence+"")
label.font = Font.boldSystemFont(24)
label.leftAlignText()
if(incidence >= 50) {
label.textColor = Color.red()
} else if(incidence >= 35) {
label.textColor = Color.orange()
} else {
label.textColor = Color.green()
}
line.addSpacer()
const name = line.addText(cityName)
name.rightAlignText()
line.addSpacer()
const label1 = line.addText(lastRefresh.substr(0,10))
label1.font = Font.mediumSystemFont(6)
}
return list
}@user: MirkoKas
Hallo, würde gerne dein Widget verwenden. Leider bekomme ich die Fehlermeldung:
Error on line 5: SyntaxError: Unexpected token ':'. Expected ';' after variable declaration.
Weißt Du an was das liegt ?
Servus
Hans
Du musst in Zeile 5 (von dem Skript von MirkoKas die URL in ``` Backticks packen.
Wenn du das hier gepostete Gist verwendest hast du die Anzeige wie im letzten Screenshot (da steht auch das Datum drin, zumindest der Tag eben).
@Baumchen:
Danke Dir das funktioniert jetzt.
Wie kann man bei deinem Widget, mit den 3 Orten, wenn ich die breite Ausführung nutze, den angegeben Tag um Monat und Jahr erweitern ?
Wie kann ich denn das Datum einfügen? 😊
Ich pack dir mal meinen Code rein - geht sicherlich besser und ist auch nur im Hinblick auf die mittleren Widgets angepasst:
// Licence: Robert Koch-Institut (RKI), dl-de/by-2-0
// Multiple values: Use with48.260,11.439,DAH;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
// Current location can be used with:current,NAME;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
const apiUrl = (location) =>https://services7.arcgis.com/mOBPykOjAyBO2ZKk/arcgis/rest/services/RKI_Landkreisdaten/FeatureServer/0/query?where=1%3D1&outFields=GEN,cases7_per_100k,last_update&geometry=${location.longitude.toFixed(3)}%2C${location.latitude.toFixed(3)}&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelWithin&returnGeometry=false&outSR=4326&f=json
function parseLocation (location) {
const fixedCoordinates = location.split(",")
if (fixedCoordinates[0] === "current") {
return {
current_location: true,
name: fixedCoordinates.length >= 2 ? fixedCoordinates[1] : null,
}
}
return {
latitude: parseFloat(fixedCoordinates[0]),
longitude: parseFloat(fixedCoordinates[1]),
name: fixedCoordinates.length >= 3 ? fixedCoordinates[2] : null,
}
}
async function dataForLocation(location) {
let locationData
if (location.current_location) {
Location.setAccuracyToThreeKilometers()
locationData = await Location.current()
} else {
locationData = location
}
const data = await new Request(apiUrl(locationData)).loadJSON()
if (!data || !data.features || !data.features.length) {
return {
error: "Keine Ergebnisse für den aktuellen Ort gefunden.",
}
}
const attr = data.features[0].attributes
const incidence = attr.cases7_per_100k.toFixed(1)
const lastRefresh = attr.last_update
const cityName = location["name"] ? location["name"] : attr.GEN
return {
incidence: incidence,
name: cityName,
date: lastRefresh
}
}
let widget = await createWidget()
if (!config.runsInWidget) {
await widget.presentSmall()
}
Script.setWidget(widget)
Script.complete()
async function createWidget(items) {
let parameters
if (args.widgetParameter) {
parameters = args.widgetParameter
} else {
parameters = "current"
}
const locations = parameters.split(";").map(parseLocation)
const list = new ListWidget()
const header = list.addText("🦠 Inzidenz".toUpperCase())
header.font = Font.mediumSystemFont(13)
list.addSpacer()
for (location of locations) {
const data = await dataForLocation(location)
if (data["error"]) {
list.addText(data["error"])
continue
}
const incidence = data["incidence"]
const cityName = data["name"]
const lastRefresh = data["date"]
const line = list.addStack()
line.layoutHorizontally()
line.centerAlignContent()
line.useDefaultPadding()
const label = line.addText(incidence+"")
label.font = Font.boldSystemFont(24)
label.leftAlignText()
if(incidence >= 50) {
label.textColor = Color.red()
} else if(incidence >= 35) {
label.textColor = Color.orange()
} else {
label.textColor = Color.green()
}
line.addSpacer()
const name = line.addText(cityName)
name.rightAlignText()
line.addSpacer()
const label1 = line.addText(lastRefresh.substr(0,10))
label1.font = Font.mediumSystemFont(6)
}
return list
}@user: MirkoKas
Hallo, würde gerne dein Widget verwenden. Leider bekomme ich die Fehlermeldung:
Error on line 5: SyntaxError: Unexpected token ':'. Expected ';' after variable declaration.
Weißt Du an was das liegt ?
Servus
HansDu musst in Zeile 5 (von dem Skript von MirkoKas die URL in ``` Backticks packen.
Wenn du das hier gepostete Gist verwendest hast du die Anzeige wie im letzten Screenshot (da steht auch das Datum drin, zumindest der Tag eben).
Stelle mich irgendwie dumm an. Ich bekomme es nicht zum laufen. Kann man den richtigen Code vielleicht nochmal richtig einstellen.
Danke
// Licence: Robert Koch-Institut (RKI), dl-de/by-2-0
// Multiple values: Use with 48.260,11.439,DAH;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
// Current location can be used with: current,NAME;48.809,11.897,KEH;49.122,12.549,LA
as widget parameter e.g.
const apiUrl = (location) => https://services7.arcgis.com/mOBPykOjAyBO2ZKk/arcgis/rest/services/RKI_Landkreisdaten/FeatureServer/0/query?where=1%3D1&outFields=GEN,cases7_per_100k,last_update&geometry=${location.longitude.toFixed(3)}%2C${location.latitude.toFixed(3)}&geometryType=esriGeometryPoint&inSR=4326&spatialRel=esriSpatialRelWithin&returnGeometry=false&outSR=4326&f=json
function parseLocation (location) {
const fixedCoordinates = location.split(",")
if (fixedCoordinates[0] === "current") {
return {
current_location: true,
name: fixedCoordinates.length >= 2 ? fixedCoordinates[1] : null,
}
}
return {
latitude: parseFloat(fixedCoordinates[0]),
longitude: parseFloat(fixedCoordinates[1]),
name: fixedCoordinates.length >= 3 ? fixedCoordinates[2] : null,
}
}
async function dataForLocation(location) {
let locationData
if (location.current_location) {
Location.setAccuracyToThreeKilometers()
locationData = await Location.current()
} else {
locationData = location
}
const data = await new Request(apiUrl(locationData)).loadJSON()
if (!data || !data.features || !data.features.length) {
return {
error: "Keine Ergebnisse für den aktuellen Ort gefunden.",
}
}
const attr = data.features[0].attributes
const incidence = attr.cases7_per_100k.toFixed(1)
const lastRefresh = attr.last_update
const cityName = location["name"] ? location["name"] : attr.GEN
return {
incidence: incidence,
name: cityName,
date: lastRefresh
}
}
let widget = await createWidget()
if (!config.runsInWidget) {
await widget.presentSmall()
}
Script.setWidget(widget)
Script.complete()
async function createWidget(items) {
let parameters
if (args.widgetParameter) {
parameters = args.widgetParameter
} else {
parameters = "current"
}
const locations = parameters.split(";").map(parseLocation)
const list = new ListWidget()
const header = list.addText("🦠 Inzidenz".toUpperCase())
header.font = Font.mediumSystemFont(13)
list.addSpacer()
for (location of locations) {
const data = await dataForLocation(location)
if (data["error"]) {
list.addText(data["error"])
continue
}
const incidence = data["incidence"]
const cityName = data["name"]
const lastRefresh = data["date"]
const line = list.addStack()
line.layoutHorizontally()
line.centerAlignContent()
line.useDefaultPadding()
const label = line.addText(incidence+"")
label.font = Font.boldSystemFont(24)
label.leftAlignText()
if(incidence >= 50) {
label.textColor = Color.red()
} else if(incidence >= 35) {
label.textColor = Color.orange()
} else {
label.textColor = Color.green()
}
line.addSpacer()
const name = line.addText(cityName)
name.rightAlignText()
line.addSpacer()
const label1 = line.addText(lastRefresh.substr(0,10))
label1.font = Font.mediumSystemFont(6)
}
return list
}
Hoffe jetzt passt der Code. Das einfügen am iPhone klappt bei mir nicht so richtig. Einfach alles aus meinem vorherigen Post in ein Script einfügen.
Hoffe jetzt passt der Code. Das einfügen am iPhone klappt bei mir nicht so richtig. Einfach alles aus meinem vorherigen Post in ein Script einfügen.
Danke.
Vielen Dank für das tolle Widget
Auf meinem Blog gibt es einen kleinen Beitrag dazu
Perfekt. Vielen DANK