refactor: remove coverage report and add weather widget and navigation utility files

This commit is contained in:
David Fencl
2026-06-06 11:41:13 +02:00
parent a3b3d40769
commit 6d77c20c84
34 changed files with 819 additions and 3002 deletions
+27
View File
@@ -0,0 +1,27 @@
export interface NavigationLimit {
level: number;
labelCs: string;
labelEn: string;
type: 'danger' | 'warning';
}
export const NAVIGATION_LIMITS: Record<string, NavigationLimit[]> = {
// Orlík
'VLOR|1': [
{
level: 342.50,
labelCs: 'Minimální hladina pro lodní výtah Orlík',
labelEn: 'Minimum level for Orlík boat lift',
type: 'danger'
}
],
// Slapy
'VLSL|1': [
{
level: 266.50,
labelCs: 'Minimální hladina pro převoz lodí Slapy',
labelEn: 'Minimum level for Slapy boat transport',
type: 'danger'
}
]
};