{# NetCDF time-varying variables table — the `nc_variables` panel payload (kind="table"). Transcribed from grid.html's pre-manifest markup. #} {% if nc_meta.get("error") %}
Could not read file: {{ nc_meta.error }}
{% else %}| Variable | Type | Dims | N | Valid | Min / Max | Units | Long name | Standard name | QC flag |
|---|---|---|---|---|---|---|---|---|---|
| {{ v.name }} | {{ v.dtype }} | {{ v.dims }} | {{ "{:,}".format(v.n) }} | {{ "{:,}".format(v.n_valid) if v.n_valid is defined else "—" }} | {% if v.v_min is not none %}{{ v.v_min }} / {{ v.v_max }}{% else %}—{% endif %} | {{ v.units }} | {{ v.long_name }} | {{ v.standard_name }} | {% if v.has_qc %}✓{% else %}–{% endif %} |