{% extends "layout.html" %} {% block headers %} {% endblock %} {% block body %} {% set doi = item.doi %} {% set pid = item.dataset_id %} {% set item_type = "dataset" %} {% include 'public_metadata.html' %}
{% if item.is_embargoed %}

DATA - under embargo

The files in this dataset are under embargo{% if item.embargo_until_date %} until {{item.embargo_until_date}}{% endif %}.

{% if item.embargo_reason or item.confidential_reason %}

Reason

{% autoescape false %} {% if item.embargo_reason %} {{item.embargo_reason}} {% else %} {{item.confidential_reason}} {% endif %} {% endautoescape %} {% endif %}
{% elif item.is_restricted %}

DATA - restricted access

{# test 12999575 #}

Reason

{% autoescape false %} {% if item.embargo_reason %} {{item.embargo_reason}} {% elif item.confidential_reason %} {{item.confidential_reason}} {% else %} Data is confidential. {% endif %} {% if item.eula %}

End User Licence Agreement

{{item.eula}} {% endif %} {% endautoescape %}
{% include 'dataset_access_request.html' %} {% elif item.is_metadata_record %} {# test 18586031 #}

DATA - not available

{% if item.metadata_reason %} {{item.metadata_reason}} {% else %} Data is undisclosed. {% endif %}
{% endif %} {% if is_own_item and (item.is_restricted or item.is_embargoed) %}
As the owner of this dataset, you have access to the data files.
{% elif private_view and (item.is_restricted or item.is_embargoed) %}
As you are on a private link, you have access to the data files.
{% endif %} {% if not(item.is_restricted or item.is_embargoed) %}

DATA

{% endif %} {% if is_own_item or private_view or not(item.is_restricted or item.is_embargoed) %} {% if services %} {# test 12717890 #}
data service
{% endif%} {% if opendap %} {# test 17122553 #}
OPeNDAP data service
{% endif%} {%- if git_repository_url %}

To access the source code, use the following command:

git clone {{git_repository_url}}
{%- endif %} {% if files %} {# test 16545714 #}
files ({{files|length}})
{% endif %} {% endif %}
{% endblock %}