{%- extends "layout.html" %} {%- set doi = item.doi %} {%- set pid = item.dataset_id %} {%- set item_type = "dataset" %} {%- block headers %} {%- if item.embargo_type is not defined or item.embargo_type != 'article' %} {%- include 'jsonld.html' %} {%- endif %} {%- endblock %} {%- block body %} {%- 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

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

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) and files %}

DATA

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

To access the source code, use the following command:

git clone {{git_repository_url}}{%- if item.git_repository_name %} "{{item.git_repository_name}}"{%- endif %}

Or download the latest commit as a ZIP.

{%- endif %} {%- if files %}

Files ({{files|length}})

{%- endif %} {%- endif %}
{%- endblock %}