{% extends "base.html" %} {% set title = "Enhanced Mapping Dashboard" %} {% block extra_head %} {% endblock %} {% block content %}

Enhanced Mapping Dashboard

Comprehensive analytics and insights from advanced orchid biodiversity analysis

{{ summary_stats.total_hotspots|default('--') }}
Biodiversity Hotspots
Identified by clustering
{{ summary_stats.habitat_types|default('--') }}
Habitat Types
Ecological categories
{{ summary_stats.regions_analyzed|default('--') }}
Regions Analyzed
Global coverage
{{ summary_stats.most_diverse_habitat|default('--')|title }}
Most Diverse
Habitat type

Biodiversity Hotspots

Habitat Distribution

Regional Diversity Analysis

Top Biodiversity Hotspots

{% if comprehensive_data and comprehensive_data.biodiversity_hotspots %}
{% for hotspot in comprehensive_data.biodiversity_hotspots[:10] %} {% endfor %}
Location Species Specimens Diversity
{{ hotspot.center_lat|round(2) }}, {{ hotspot.center_lng|round(2) }} {{ hotspot.unique_species }} {{ hotspot.total_specimens }} {{ (hotspot.diversity_index * 100)|round(1) }}%
{% else %}

Loading biodiversity data...

{% endif %}

Habitat Analysis

{% if comprehensive_data and comprehensive_data.habitat_correlations and comprehensive_data.habitat_correlations.habitat_breakdown %}
{% for habitat_type, data in comprehensive_data.habitat_correlations.habitat_breakdown.items() %} {% endfor %}
Habitat Type Specimens Species % of Total
{{ habitat_type|replace('_', ' ')|title }} {{ data.specimen_count }} {{ data.unique_species }} {{ data.percentage_of_total|round(1) }}%
{% else %}

Loading habitat analysis...

{% endif %}
{% endblock %}