{% extends "record/specimen.html" %} {% block heading %}

GBIF interpreted record

{% endblock %} {% block record_data %} {# Identification #} {% set classification = h.gbif_get_classification(gbif_record) %} {% set errors = h.dqi_parse_errors(gbif_record['issues']) %} {% if classification or gbif_record['specieskey'] or gbif_record['identifiedby'] %} {% if gbif_record['speciesKey'] %} {% endif %} {% if classification %} {% endif %} {% if gbif_record['identifiedBy'] %} {% endif %} {% endif %} {# Occurrence details #} {% if gbif_record['recordedBy'] or gbif_record['eventDate'] or gbif_record['recordNumber'] %} {% if gbif_record['recordedBy'] %} {% endif %} {% if gbif_record['eventDate'] %} {% endif %} {% if gbif_record['recordNumber'] %} {% endif %} {% endif %} {# Location #} {% set geography = h.gbif_get_geography(gbif_record) %} {% if geography or gbif_record['habitat'] or gbif_record['countryCode'] or gbif_record['islandGroup'] or (gbif_record['decimalLongitude'] and gbif_record['decimalLatitude']) %} {% if gbif_record['countryCode'] %} {% endif %} {% if gbif_record['decimalLongitude'] and gbif_record['decimalLatitude'] %} {% endif %} {% if geography %} {% endif %} {% if gbif_record['islandGroup'] %} {% endif %} {% if gbif_record['habitat'] %} {% endif %} {% endif %} {% if errors %} {% for error in errors %} {% endfor %} {% endif %} {# Publication details #}
Identification details According to GBIF Backbone Taxonomy
Identified as species {{ gbif_record['scientificName'] }}
Taxonomic classification {{ classification }}
Identified {{ gbif_record['identifiedBy'] }}
Occurrence details
Recorded by {{ gbif_record['recordedBy'] }}
Date recorded {{ gbif_record['eventDate'] }}
Record number {{ gbif_record['recordNumber'] }}
Location
Country {{ gbif_record['country'] or gbif_record['countryCode'] }}
Coordinates {{ gbif_record['decimalLongitude'] }}, {{ gbif_record['decimalLatitude'] }}
Geographic classification {{ geography }}
Islands {{ gbif_record['islandGroup'] }}
Habitat {{ gbif_record['habitat'] }}
Data Quality Issues
{{ error['title'] }} {{ error['description'] }}
GBIF Publication details
Last interpreted {{ h.gbif_render_datetime(gbif_record['lastInterpreted']) }}
Occurrence {{ gbif_record['gbifID'] }}
Cluster Cluster (this is an experimental feature that highlights possible duplicates and related occurrences)
Dataset Dataset
Publisher Natural History Museum
{% asset 'ckanext-gbif/record' %} {% endblock %}