{# 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 %}

Variables — {{ nc_file }}

{% for v in nc_meta.time_vars %} {% if not v.is_qc %} {% endif %} {% endfor %}
VariableTypeDimsNValidMin / MaxUnitsLong nameStandard nameQC 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 %}
{% endif %}