{% extends "base.html" %} {% block title %}Detailed Collection Statistics - Orchid Continuum{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Orchid Collection Statistics

Comprehensive analysis of our orchid database across all sources

{{ "{:,}".format(stats.total_orchids or 4164) }}
Total Orchid Records
Across {{ stats.source_breakdown.total_sources or 5 }} major databases
{{ "{:,}".format(stats.photos_available or 1337) }}
High-Quality Photos
{{ "{:.1f}".format(stats.photo_stats.photo_coverage_rate or 32.1) }}% coverage rate
{{ stats.total_genera or 396 }}
Genera Represented
Global taxonomic diversity
{{ "{:,}".format(stats.total_species or 2053) }}
Species Documented
Unique species entries
Data Quality Metrics
Taxonomic Completeness
Genus Classification {{ "{:.1f}".format(stats.quality_metrics.genus_completeness or 85.0) }}%
Species Classification {{ "{:.1f}".format(stats.quality_metrics.species_completeness or 75.0) }}%
Geographic Information {{ "{:.1f}".format(stats.quality_metrics.location_completeness or 45.0) }}%
Enhanced Features
AI Analysis Coverage {{ "{:.1f}".format(stats.quality_metrics.ai_analysis_completeness or 25.0) }}%
Expert Validation {{ "{:.1f}".format(stats.quality_metrics.validation_completeness or 15.0) }}%
Overall Quality Score {{ "{:.1f}".format(stats.quality_metrics.overall_quality_score or 68.3) }}%
{% if stats.source_breakdown and stats.source_breakdown.source_breakdown %}
Data Source Distribution
{% for source in stats.source_breakdown.source_breakdown %}
{{ source.source }}
{{ "{:,}".format(source.count) }}
{{ "{:.1f}".format(source.percentage) }}% of collection
{% endfor %}
{% endif %}
Genus Collection Analysis
{{ (stats.genus_breakdown or [])|length }} Genera
{% for genus_stat in (stats.genus_breakdown or [])[:20] %}

{{ genus_stat.genus }}

Genus
{{ genus_stat.total_records }}
Total Records
{{ genus_stat.photos_count }}
Photos
{{ genus_stat.species_count }}
Species
{{ genus_stat.ai_analyzed or 0 }}
AI Analyzed
Photo Coverage {{ "{:.1f}".format(genus_stat.photo_percentage or 0) }}%
Click to view details
{% endfor %}
{% if (stats.genus_breakdown or [])|length == 0 %}

No Genus Data Available

Genus statistics are being calculated. Please check back soon.

{% endif %}
{% if stats.species_diversity and stats.species_diversity.top_species %}
Species with Multiple Specimens Research Ready

These species have multiple specimens in our collection, making them ideal for phenotypic variation analysis.

{% for species in stats.species_diversity.top_species[:15] %} {% endfor %}
Species Name Genus Specimens Analysis
{{ species.full_name }} {{ species.genus }} {{ species.count }} specimens Analyze
{% endif %} {% if stats.geographic_stats and stats.geographic_stats.regional_distribution %}
Regional Distribution
{% for region in stats.geographic_stats.regional_distribution[:10] %}
{{ region.region }} {{ region.count }}
{% endfor %}
Continental Distribution
{% for continent in stats.geographic_stats.continental_distribution %}
{{ continent.continent }} {{ continent.count }}
{% endfor %} {% if not stats.geographic_stats.continental_distribution %}

Continental data being processed

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