{% if currentGps.lat is defined and currentGps.lat is not iterable %}
{% endif %}
{{ currentGps.lat|number_format(6) }}
Breitengrad
{% endif %}
{% if currentGps.lon is defined and currentGps.lon is not iterable %}
{{ currentGps.lon|number_format(6) }}
Längengrad
{% endif %}
{% set speedVal = currentGps.speed_kmh is defined ? currentGps.speed_kmh : (currentGps.speed is defined ? currentGps.speed : null) %}
{% if speedVal is not null and speedVal is not iterable and speedVal is not same as('') %}
{{ speedVal }} km/h
Geschwindigkeit
{% endif %}
{% if currentGps.source is defined and currentGps.source %}
{{ currentGps.source }}
Quelle
{% endif %}
{% if currentGps.altitude is defined and currentGps.altitude is not iterable and currentGps.altitude is not same as('') %}
{{ currentGps.altitude }} m
Höhe
{% endif %}
{% if currentGps.satellites is defined and currentGps.satellites is not iterable and currentGps.satellites is not same as('') %}
{{ currentGps.satellites }}
Satelliten
{% endif %}
Aktueller GPS-Punkt
{% if currentGps.error is defined %}
Fehler: {{ currentGps.error }}
{% elseif currentGps is not empty %}
{% if currentGps.lat is defined and currentGps.lat is not iterable and currentGps.lat is not same as('') %}
{% if currentGps.lat is defined and currentGps.lat is not iterable and currentGps.lon is defined and currentGps.lon is not iterable %}
{% endif %}
{% else %}
Breitengrad
{{ currentGps.lat }}
{% endif %}
{% if currentGps.lon is defined and currentGps.lon is not iterable and currentGps.lon is not same as('') %}
Längengrad
{{ currentGps.lon }}
{% endif %}
{% if currentGps.datetime is defined and currentGps.datetime is not iterable and currentGps.datetime is not same as('') %}
Datum/Zeit
{{ currentGps.datetime }}
{% elseif currentGps.timestamp is defined and currentGps.timestamp is not iterable and currentGps.timestamp is not same as('') %}
Zeitstempel
{{ currentGps.timestamp|round|date('d.m.Y H:i:s') }}
{% endif %}
{% if currentGps.accuracy is defined and currentGps.accuracy is not iterable and currentGps.accuracy is not same as('') %}
Genauigkeit
{{ currentGps.accuracy }} m
{% endif %}
{% if currentGps.source is defined and currentGps.source %}
Positionsquelle
{{ currentGps.source }}
{% endif %}
Keine GPS-Daten verfügbar
{% endif %}GPS-Punkte (letzte {{ hours }} Stunden, max. {{ limit }})
{% if gpsPoints.error is defined %}
{% else %}
Fehler: {{ gpsPoints.error }}
{% elseif gpsPoints is iterable %}
Keine GPS-Punkte verfügbar
{% endif %}