System: {{p.System}}
Location:{{p.Location}} ({{ p.Latitude_degrees_north}}N, {{p.Longitude_degrees_east }}, {{ p.Altitude_meter_asl }}m asl)
Measurement ID: {{p.Measurement_ID}}
{% for variable in p.data_variables %}
{{variable }} {{ p[variable].shape }}
{% endfor %}
Global attributes
Attribute |
Value |
{% for attribute in p.spec_global_attributes %}
{% if p[attribute] %}
{{ attribute }} |
{{ p[attribute] }} |
{% endif %}
{% endfor %}
Technical variables
Attribute |
Value |
{% for variable in p.technical_variables %}
{% if p[variable] is not none %}
{{ variable }} |
{{ p[variable] }} |
{% endif %}
{% endfor %}
{% if p.has_polarization %}
Polarization parameters
Attribute |
Value |
Statistical error |
Systematic error |
{% for variable in p.polarization_variables %}
{% if p[variable] is not none %}
{{ variable }} |
{{ p[variable] }} |
{{ p[variable ~ "_Statistical_Err"] }} |
{{ p[variable ~ "_Systematic_Err"] }} |
{% endif %}
{% endfor %}
{% endif %}