Open daven1985 opened 3 years ago
Using the below, and the new sensor.covid_nsw_doses
in version 0.0.17 I get 31.51
which seems too high?
{% set total_population = 6565651 %}
{% set half_dose_total = (states('sensor.covid_nsw_doses') | int) / 2 %}
{% set state_second_dose_vaccinated_total = half_dose_total / total_population %}
{{ (state_second_dose_vaccinated_total * 100)|round(2, 'floor') }}
Yea still too high. Official stats are it should still be around 21.x%.
I tried changing the population to the 16 and over amount of 6565651 based of (https://www.health.gov.au/sites/default/files/documents/2021/08/covid-19-vaccine-rollout-update-5-august-2021.pdf).
However instead of giving me the 21% or so it only goes up to 9%.
Thoughts?