SILO data charts: ON | Annual rainfall charts: ON | Annual (calendar) rainfall charts (internal analysis): ON | Annual (financial year) rainfall charts: ON |
Monthly rainfall charts (Tech Note): ON | Monthly rainfall charts (internal analysis): ON

Charts:

{% for station, sdata in data.items() %}

{{ station }} ({{ sdata['name'] }})

{% endfor %}

Data:

{% for key, df in wide_data.items() %}

{{ key }}

{% endfor %} {% for station, sdata in data.items() %}

{{ station }} ({{ sdata['name'] }})

{% endfor %}

WRAP Rainfall: {{ report.report_key }}

All data and figures at {{ report.rainfall_path|safe }}

{% for station, sdata in data.items() %}

{{ station }} ({{ sdata['name'] }})

BoM Climate Data | Return to table of contents

SILO data quality figures (i.e. data missing or not)

{% for png in sdata['relative_silo_pngs'] %}

{% endfor %}

Annual (financial "wu" year) - for Tech Note

{% for png in sdata['relative_annual_pngs'] %}

{% endfor %}

Annual (calendar year) - ***for internal analysis***

{% for png in sdata['relative_analysis_annual_calendar_pngs'] %}

{% endfor %}

Annual (financial/wu year) - ***for internal analysis***

{% for png in sdata['relative_analysis_annual_financial_pngs'] %}

{% endfor %}

Monthly rainfall - for Tech Note

{% for png in sdata['relative_monthly_pngs'] %}

{% endfor %}

Monthly rainfall - for the past couple of years - ***for internal analysis***

{% for png in sdata['relative_analysis_monthly_pngs'] %}

{% endfor %} {% endfor %}

Data

{% for key, df in wide_data.items() %}

{{ key }}

{{ df.sort_index(ascending=False).to_html(index=True)|safe }}

{% endfor %} {% for station, sdata in data.items() %}

{{ station }} ({{ sdata['name'] }})

{% for name, df in sdata['dfs'].items() %}

{{ name }}

{{ df.to_html(index=True)|safe }}

{% endfor %} {% endfor %}