{% extends "base.html" %} {% block title %}Enhanced Gallery - Ecosystem Explorer Integration{% endblock %} {% block content %}

Enhanced Orchid Gallery & Ecosystem Explorer

Comprehensive species exploration with distribution maps, ecological relationships, and cultural information

"Where orchid photos meet ecosystem science — every image tells an ecological story."

Clear

Global Distribution Map {{ orchids|length }} species shown

{{ orchids|length }}
Species Shown
{{ unique_regions|length }}
Regions Covered
{{ unique_genera|length }}
Genera Represented
{{ climate_zones|length }}
Climate Zones
{% for orchid in orchids %}
{% if orchid.google_drive_id %} {{ orchid.display_name }} {% elif orchid.image_url and 'gbif.org/occurrence' not in orchid.image_url %} {{ orchid.display_name }} {% else %} Placeholder {% endif %}
{% if orchid.climate_preference %} {{ orchid.climate_preference|title }} {% endif %} {% if orchid.growth_habit %} {{ orchid.growth_habit|title }} {% endif %}
{% if orchid.region %}
{{ orchid.region }}
{% endif %}
{{ orchid.scientific_name or orchid.display_name }}
{% if orchid.common_names %}
{{ orchid.common_names }}
{% endif %}
{% if orchid.pollinator_types and orchid.pollinator_types|length > 0 %}
Pollinators: {{ orchid.pollinator_types|join(', ')|title }}
{% endif %} {% if orchid.flowering_time %}
Blooms: {{ orchid.flowering_time }}
{% endif %} {% if orchid.light_requirements %}
Light: {{ orchid.light_requirements }}
{% endif %} {% if orchid.mycorrhizal_fungi and orchid.mycorrhizal_fungi|length > 0 %}
Fungi: {{ orchid.mycorrhizal_fungi|join(', ')|truncate(30) }}
{% endif %}
{% if orchid.ai_description %}

{{ orchid.ai_description|truncate(120) }}

{% endif %}
{% endfor %}
{% if orchids %}
{% endif %}
{% endblock %}