{# ITD 511 camera detail. Live fetched direct from the source (publicly reachable, no auth). Format may be jpeg/gif/png — handles all. source_jurisdiction surfaced for cross-DOT border-region cameras (UDOT/ ODOT/etc.) per v0.10.0 finding 4. Fields from payload->data->data. #} {%- set d = (event.data.get('data') or {}).get('data') or {} -%} {% if d.get('image_url') %}
View
Camera view
{% endif %} {% if d.get('roadway') %}
Road
{{ d.roadway }}{% if d.get('direction') and d.direction not in ['Unknown', 'None'] %} ({{ d.direction }}){% endif %}
{% endif %} {% if d.get('location') %}
Location
{{ d.location }}
{% endif %} {% if d.get('source_jurisdiction') and not d.get('is_native_source') %}
Source
{{ d.source_jurisdiction }} (cross-DOT mirror)
{% endif %} {% if d.get('view_count') and d.view_count > 1 %}
Views
{{ d.view_count }} camera angles
{% endif %}