{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Grid report – {{ mooring_name }}{% endblock %} {% block page_styles %} :root { --accent:#8e44ad; --accent-link:#e8d5ff; } /* No width here: the slot class (.slot-*) sets each figure's width; a bare .fig fills via base.html's max-width:100%. Setting width:100% here would override the slot and force every figure full-width (U0.2). */ .fig { border:1px solid var(--rule); border-radius:var(--radius-btn); margin-bottom:0.5rem; } /* Dense NetCDF-table sub-headings and cells (rep/06 sweep). Values verbatim from the attributes they replaced; they relocate to a shared sheet when the other pages port. */ h3.subhead-sm { font-size:0.88rem; color:var(--ocean); margin:1rem 0 0.4rem; } h3.subhead-md { font-size:0.88rem; color:var(--ocean); margin:1.4rem 0 0.4rem; } .var-table td.cell-xs { font-size:0.75rem; } .var-table td.cell-minmax { font-size:0.76rem; white-space:nowrap; } .var-table td.cell-muted { font-size:0.78rem; color:var(--muted); } .var-table td.cell-break { font-size:0.78rem; word-break:break-all; } .var-table td.cell-break-lg { font-size:0.8rem; word-break:break-all; } .var-table td.cell-center { text-align:center; } .var-table td.cell-bad { color:var(--bad); font-weight:600; } {% endblock %} {% block masthead_type %}Gridded{% endblock %} {% block masthead_meta %}
Cruise
{{ cruise }}
Ship
{{ ship }}
Latitude
{{ latitude }}
Longitude
{{ longitude }}
Water depth
{{ waterdepth }}{% if waterdepth != '—' %} m{% endif %}
Deployment
{{ deploy_time }}
Recovery
{{ recover_time }}
Duration
{{ duration }}
Samp. Δt
{{ grid_dt_s }}{% if grid_dt_s != '—' %} s{% endif %}
Records
{{ n_time }}
Grid ΔP
{{ grid_dp }}
Pressure levels
{{ n_levels }}
Pressure range
{{ p_range }}
Instruments
{{ n_instr }}
Source file
{{ nc_file }}
{% endblock %} {% block content %} {{ m.report_body(report, "deployment", generated, cruise) }} {% endblock %}