{% extends "base.html" %} {% block title %}Darwin Core Export Preview{% endblock %} {% block content %}

🌍 Darwin Core Export Preview

Preview how your Orchid Atlas data will be mapped to Darwin Core standards for GBIF publishing.

Export Statistics

{{ export_stats.total_records }}

Total Records

{{ export_stats.records_with_images }}

With Images

{{ export_stats.image_percentage }}%

{{ export_stats.records_with_coordinates }}

With Coordinates

{{ export_stats.coordinate_percentage }}%
Sample Records - Darwin Core Mapping

Showing how your orchid data will be transformed for GBIF publishing

{% for sample in mapped_samples %}
Original Record
ID: {{ sample.original.id }}
Display Name: {{ sample.original.display_name or 'Not set' }}
Scientific Name: {{ sample.original.scientific_name or 'Not set' }}
Genus: {{ sample.original.genus or 'Not set' }}
Species: {{ sample.original.species or 'Not set' }}
Region: {{ sample.original.region or 'Not set' }}
Photographer: {{ sample.original.photographer or 'Not set' }}
Darwin Core Mapping
{% if sample.darwin_core.decimalLatitude %} {% endif %}
occurrenceID: {{ sample.darwin_core.occurrenceID }}
scientificName: {{ sample.darwin_core.scientificName }}
basisOfRecord: {{ sample.darwin_core.basisOfRecord }}
family: {{ sample.darwin_core.family }}
genus: {{ sample.darwin_core.genus }}
country: {{ sample.darwin_core.country or 'Not mapped' }}
recordedBy: {{ sample.darwin_core.recordedBy or 'Not set' }}
Coordinates: {{ sample.darwin_core.decimalLatitude }}, {{ sample.darwin_core.decimalLongitude }}
{% endfor %}
Complete Darwin Core Fields

All fields included in the export archive

{% for field in dwc_fields %}
{{ field }}
{% endfor %}
GBIF Publishing Instructions
  1. Download the Darwin Core Archive ZIP file using the button above
  2. Validate the archive using GBIF's data validator: https://www.gbif.org/tools/data-validator
  3. Register as a GBIF data publisher if you haven't already
  4. Upload the archive through GBIF's IPT (Integrated Publishing Toolkit)
  5. Publish your dataset to make it globally accessible
📊 Data Quality Notes:
  • {{ export_stats.coordinate_percentage }}% of records have geographic coordinates
  • {{ export_stats.image_percentage }}% of records have associated images
  • All records include institution code "FCOS" (Five Cities Orchid Society)
  • License: CC-BY-NC (Creative Commons Attribution-NonCommercial)
{% endblock %}