{$t('flights.liveTitle')}
{#if status === 'loading'}
{:else if status === 'error'}
{error}
{$t('wind.retry')}
{:else if status === 'empty'}
{$t('flights.noneLive')}
{:else}
{#each shown as f (f.id)}
{f.name || $t('flights.untitled')}
{f.packet_count}
{#if f.last_position}
{formatCoords( f.last_position.lat, f.last_position.lon, $settingsStore.format.coords )} · {Math.round(f.last_position.alt)} m
{/if}
{/each}
{/if}