{% extends 'base.html' %} {% block content %} {{ super() }} {% from 'args-table.html' import args_table %} {% from 'content-grid.html' import content_grid %} {% from 'metadata.html' import list_metadata %} {% from 'caption.html' import caption %}

Primary Outputs

{{ accordion_section( 'Coastal exposure and the protective role of habitats', content_grid([ (content_grid([ ('
', 100), (caption(exposure_map_caption, exposure_map_source_list), 100) ]), 50), (content_grid([ ('
', 100), (caption(habitat_map_caption, habitat_map_source_list), 100) ]), 50), ('
', 50), (content_grid([ (habitat_params_table, 100), (caption(habitat_table_caption, habitat_table_source_list), 100) ]), 50) ]) ) }}

Intermediate Outputs

{{ accordion_section( 'Ranked exposure variables', content_grid([ ('
', 100), (caption(rank_vars_figure_caption, rank_vars_figure_source_list), 100) ]) ) }} {{ accordion_section( 'Pre-ranked variables', content_grid([ ('
', 100), (caption(facetted_histograms_caption, facetted_histograms_source_list), 100) ]) ) }} {{ accordion_section( 'Wave Exposure', content_grid([ ('
', 65), (caption(wave_energy_map_caption, wave_energy_map_source_list), 35) ]) ) }}

Inputs

{{ accordion_section( 'Arguments', args_table(args_dict), )}}

Metadata

{{ accordion_section( 'Output Filenames and Descriptions', list_metadata(model_spec_outputs), expanded=False ) }} {% endblock content %} {% from 'vegalite-plot.html' import embed_vega %} {% block scripts %} {{ super() }} {% include 'vega-embed-js.html' %} {% set chart_spec_id_list = [ (exposure_map_json, 'exposure_map'), (habitat_map_json, 'habitat_map'), (exposure_histogram_json, 'exposure_histogram'), (rank_vars_figure_json, 'rank_vars_figure'), (facetted_histograms_json, 'facetted_histograms_figure'), (wave_energy_map_json, 'wave_energy_map'), ] %} {{ embed_vega(chart_spec_id_list) }} {% endblock scripts %}