اطلاعات ایستگاه

اطلاعات ایستگاه: {{ station_name }} (ID: {{ station_id }})

زمان‌بندی اتوبوس‌ها ({{ 'رفت' if direction == '76' else 'برگشت' }}):

{% for stop in stops_eta %} {% endfor %}
کد مسیر مبدأ مقصد ترتیب نوع مسیر زمان رسیدن (دقیقه)
{{ stop.route_code }} {{ stop.origination_name }} {{ stop.destination_name }} {{ stop.order }} {{ stop.route_type }} {{ stop.eta }}

چهار ایستگاه بعدی:

{% for next_station in next_stations_eta[:4] %} {% endfor %}
کد ایستگاه نام ایستگاه کد مسیر زمان رسیدن (دقیقه)
{{ next_station.code }} {{ next_station.name }} {% for eta in next_station.eta %} {{ eta.route_code }}{% if not loop.last %}, {% endif %} {% endfor %} {% for eta in next_station.eta %} {{ eta.eta }}{% if not loop.last %}, {% endif %} {% endfor %}

نمودار ارتباط ایستگاه‌ها:

این نمودار ارتباط ایستگاه فعلی را با ایستگاه‌های قبلی و بعدی نشان می‌دهد.

جزئیات ایستگاه‌ها:

{% if previous_station %}

ایستگاه قبلی

نام: {{ previous_station.name }}

کد: {{ previous_station.code }}

فاصله: {{ previous_station.distance }} متر

{% endif %}

ایستگاه فعلی

نام: {{ station_name }}

کد: {{ station_id }}

جهت: {{ 'رفت' if direction == '76' else 'برگشت' }}

{% for next_station in next_stations_eta[:4] %}

ایستگاه بعدی {{ loop.index }}

نام: {{ next_station.name }}

کد: {{ next_station.code }}

فاصله: {{ next_station.distance }} متر

زمان رسیدن: {% for eta in next_station.eta %} {{ eta.eta }} دقیقه ({{ eta.route_code }}){% if not loop.last %}, {% endif %} {% endfor %}

{% endfor %}
{% if previous_station %} ایستگاه قبلی {% endif %} {% if next_station %} ایستگاه بعدی {% endif %}