Data validation charts: ON | Long-term status and trend charts: ON | Five-year trend charts: ON
SA Geodata + Data_validationvalidated_data_{{ resource.resource_key }}.xlsx + Triclass_trend_thresholdssalinity_trends_{{ resource.resource_key }}.xlsx

Wells with a current salinity:
():

{% for well in current_wells %} {{ well }}
{% endfor %}

Wells included in long-term salinity status (curr_pct_diff):
():

{% for well in curr_pct_diff_wells %} {{ well }}
{% endfor %}

Wells included in long-term salinity trend (tds_trend_pct):
():

{% for well in tds_trend_pct_wells %} {{ well }}
{% endfor %}

Wells included in 5-yr salinity trends:
():

{% for well in trend_wells %} {{ well }}
{% endfor %}

Wells excluded:
():

{% for well in excluded_wells %} {{ well }}
{% endfor %}

WRAP Groundwater Salinity QA: {{ resource.resource_key }}

General information

Data validation rules

{{ data_val.sort_values("action").to_html()|safe }}

Tech Note sentences

{% for sentence in sentences %}

{{ sentence|safe }}

{% endfor %}

Current TDS

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

{{ anntds.to_html()|safe }}

Long-term status (% Δ from mean)

{{ curr_pct_diff_summ.to_html(index=False)|safe }}

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

{{ curr_pct_diff.sort_values("curr_tds_pct_diff").reset_index().round(2)[["well_id", "mean_tds", "curr_tds", "curr_tds_pct_diff", "curr_tds_pct_diff_indicator"]].to_html(index=True)|safe }}

Long-term trend (% Δ over trend pd)

{{ trend_pct_summ.to_html(index=False)|safe }}

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

{{ trend_pct.sort_values("slope_pct_change_yr").reset_index().round(2)[["well_id", "mean_tds", "curr_tds", "slope_pct_change_yr", "slope_pct_change_trend_pd", "tds_trend_pct_change_indicator"]].to_html(index=True)|safe }}

Triclass 5-year trends

... by mg/L/y

Summary statistics of mg/L/y broken down by "status_change":

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

Summary statistics for mg/L/y for all wells with 5-year trend results:

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

... by mg/L per 5 year period and by % change over 5 years

Summary statistics for five-year change in salinity in both mg/L and as % change -- broken down by "status_change":

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

Summary statistics for five-year change in salinity in both mg/L and as % change -- for all wells:

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

All wells with 5-year trend results:

{{ tdstrends.to_html()|safe }}

Long term salinity changes

{{ tds_changes|safe }}

Well charts

{% for well in wells %}

--------- {{ well.well_id }} ----------

Waterkennect | Groundwater Data | Return to table of contents

{{ data_val[data_val.well_id == well.well_id].to_html()|safe }}

{{ indicators_all[indicators_all.well_id == well.well_id][["well_id", "include_curr_pct_diff", "include_trend_pct", "validation_comment"]].to_html(escape=False)|safe }}

{% endfor %}

Triclass trend thresholds

{{ resource.read_table('Definitions_Triclass_trend_thresholds').T.to_html()|safe }}

List of wells

{{ wells_html|safe }}