Example #1
0
def getontario_faster():
    with app.app_context():
        timeout = 60*60
        interval = 60
        while timeout >= 0:
            timeout = timeout - interval
            resp = routes.testsnew_faster()
            if resp == 'Same':
                time.sleep(interval)
                continue

            if resp == 'New':
                plots.total_cases_plot()
                plots.new_tests_plot()
                plots.on_ventilator_plot()
                plots.in_icu_plot()
                plots.in_hospital_plot()
                plots.recovered_plot()
                plots.new_cases_plot()
                plots.total_tests_plot()
                plots.total_deaths_plot()
                plots.tested_positve_plot()
                plots.under_investigation_plot()
                plots.new_deaths_plot()
                plots.new_deaths_plot()
                plots.total_tests_plot()
                break
Example #2
0
def updateplots():
    plots.apple_mobility_plot()
    plots.retail_mobility_plot()
    plots.work_mobility_plot()
    plots.active_cases_plot()
    plots.total_cases_plot()
    plots.new_tests_plot()
    plots.on_ventilator_plot()
    plots.in_icu_plot()
    plots.in_hospital_plot()
    plots.recovered_plot()
    plots.new_cases_plot()
    plots.total_tests_plot()
    plots.total_deaths_plot()
    plots.retail_mobility_plot()
    plots.icu_ontario_plot()
    plots.ventilator_ontario_plot()
    plots.icu_projections_plot()
    plots.tested_positve_plot()
    plots.under_investigation_plot()
    plots.new_deaths_plot()
    plots.ventilator_ontario_plot()
    plots.new_deaths_plot()
    plots.total_tests_plot()
    plots.ltc_deaths_plot()
    plots.ltc_cases_plot()
    plots.ltc_outbreaks_plot()
    plots.ltc_staff_plot()
    plots.hospital_staff_plot()
    plots.rt_analysis_plot()
    plots.acceleration_plot()
    plots.predictive_plots()


    for region in PHU:
        ## Cases
        plots.total_cases_plot(region=region)
        plots.new_cases_plot(region=region)
        plots.new_deaths_plot(region=region)
        plots.total_deaths_plot(region=region)
        ## Hospitalization
        plots.on_ventilator_plot(region=region)
        plots.in_icu_plot(region=region)
        ## Capacity
        plots.icu_ontario_plot(region=region)
        plots.ventilator_ontario_plot(region=region)
        plots.rt_analysis_plot(region=region)
        ## ltc_cases_plot
        plots.ltc_deaths_plot(region=region)
        plots.ltc_cases_plot(region=region)
        plots.ltc_outbreaks_plot(region=region)

    print("Plot htmls updated")