I wanted to track how many new positive tests were recorded daily for people living in my local town, so with some help from @janvda (thanks!), I've created a flow to display the data obtained from coronavirus.gov.uk limited to upper tier Local Authorities (such as Sheffield, Doncaster, Rotherham etc).
A full list of those locations can be seen https://coronavirus.data.gov.uk/#local-authorities
The location is changed in the 'Parse data' change node. It is currently set to London, just change it to whichever upper tier Local Authority you want, but ensure that it's spelled/capitalised exactly as per the website list.
The data is generally updated daily by the Government between 3pm & 4pm, and also previous days data may also be amended.
It's a bit rough & ready, but feel free to further develop it, if you find it useful.
// Sorry - it only holds UK data.
[{"id":"5a81d56f.1408ac","type":"inject","z":"a4801683.1c0448","name":"Run flow","topic":"","payload":"","payloadType":"str","repeat":"","crontab":"","once":true,"onceDelay":0.1,"x":100,"y":1490,"wires":[["6769369c.c727d8"]]},{"id":"6769369c.c727d8","type":"http request","z":"a4801683.1c0448","name":"","method":"GET","ret":"txt","paytoqs":false,"url":"https://coronavirus.data.gov.uk/downloads/csv/coronavirus-cases_latest.csv","tls":"","persist":false,"proxy":"","authType":"","x":250,"y":1490,"wires":[["a0c3e735.8118a8"]]},{"id":"a0c3e735.8118a8","type":"csv","z":"a4801683.1c0448","name":"csv2array","sep":",","hdrin":true,"hdrout":false,"multi":"mult","ret":"\\n","temp":"","skip":"0","strings":true,"x":400,"y":1490,"wires":[["86f34f8b.1002e"]]},{"id":"f26d54ac.167168","type":"ui_chart","z":"a4801683.1c0448","name":"","group":"61d2dced.3db8f4","order":8,"width":"13","height":"8","label":"Daily Positive tests","chartType":"line","legend":"false","xformat":"D/M","interpolate":"linear","nodata":"","dot":false,"ymin":"","ymax":"","removeOlder":"8","removeOlderPoints":"1000","removeOlderUnit":"604800","cutout":0,"useOneColor":false,"useUTC":false,"colors":["#ff0000","#aec7e8","#ff7f0e","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5"],"useOldStyle":false,"outputs":1,"x":890,"y":1490,"wires":[[]]},{"id":"7352b95.7fb5b48","type":"function","z":"a4801683.1c0448","name":"Format chart","func":"msg.payload = [{\n \"series\": [\"New cases\"],\n \"data\": [msg.payload],\n \"labels\": [\"\"]\n}];\nreturn msg;","outputs":1,"noerr":0,"x":710,"y":1490,"wires":[["f26d54ac.167168"]]},{"id":"86f34f8b.1002e","type":"change","z":"a4801683.1c0448","name":"Parse data","rules":[{"t":"set","p":"payload","pt":"msg","to":"payload[`Area name`='London'].{ \"x\" : $toMillis(`Specimen date`), \"y\" : `Daily lab-confirmed cases` }","tot":"jsonata"}],"action":"","property":"","from":"","to":"","reg":false,"x":550,"y":1490,"wires":[["7352b95.7fb5b48"]]},{"id":"61d2dced.3db8f4","type":"ui_group","z":0,"name":"flowtest","tab":"3c94630c.13381c","order":1,"disp":true,"width":22,"collapse":false},{"id":"3c94630c.13381c","type":"ui_tab","z":0,"name":"Test","icon":"dashboard","order":9}]