{% extends "base.html" %} {% block title %}Data coverage · Crawl Control Center{% endblock %} {% block content %}

Data coverage

{{ n_concepts }} concepts with observations · {{ total_rows }} local rows · {% if census %}{{ "{:,}".format(census_total) }} across all stores{% else %}census not yet sampled{% endif %}

{% if census %}

Stores (latest census)

{% for c in census %} {% endfor %}
StoreKindRowsSizeChunksData throughSampled
{{ c.store }} {{ c.kind }} {% if c.error %}error {% elif c.approx_rows is none %}— {% else %}{% if not c.exact %}≈{% endif %}{{ "{:,}".format(c.approx_rows) }}{% endif %} {% if c.total_size_bytes %}{{ (c.total_size_bytes / 1073741824) | round(1) }} GB{% else %}—{% endif %} {{ c.chunks or '—' }} {{ c.time_range_end or '—' }} {% if c.stale %}stale {% endif %}{{ c.age_hours if c.age_hours is not none else '—' }}h ago
{% endif %}
Clear
{% for c in coverage %} {% else %} {% endfor %}
ConceptCategoryRowsLatest dateSourcesLast fetch
{{ c.name_zh or c.name_en or c.code or c.concept_id }} {{ c.category or '—' }} {{ c.rows }} {{ c.latest_date or '—' }} {{ c.sources }} {{ c.last_fetch or '—' }}
No observations match.
{% endblock %}