{% extends "base.html" %} {% block title %}Geocode to Commons: Reports{% endblock %} {% block content %}

Geocode reports

Back to index

Logging started {{ log_start_time.strftime("%a %d %b %Y") }}

Total lookups processed: {{ "{:,d}".format(log_count) }}

Average response time: {{ average_response_time | int }} milliseconds

requests per day

{% for day, day_count in by_day %} {% endfor %}
{{ day.strftime("%a %d %b %Y") }} {{ "{:,d}".format(day_count) }}

top places

{% for place, place_count in top_places %} {% endfor %}
{% if place %} {{ place }} {% else %} no place found {% endif %} {{ "{:,d}".format(place_count) }}

missing places

Recent queries that failed to resolve into a place with a category.

{% for log in missing_places %} {% endfor %}
{{ log.dt.strftime("%a %d %b %Y at %H:%M:%S") }} {{ "{:.3f},{:.3f}".format(log.lat, log.lon) }}
{% endblock %}