@mytec: iter1.6 ready for testing

This commit is contained in:
2026-01-31 12:10:55 +02:00
parent 5821de9a8f
commit 7a5b27bd87
13 changed files with 773 additions and 101 deletions

View File

@@ -28,6 +28,9 @@ export interface ApiCoverageSettings {
use_dominant_path?: boolean;
use_street_canyon?: boolean;
use_reflections?: boolean;
use_water_reflection?: boolean;
use_vegetation?: boolean;
season?: 'summer' | 'winter' | 'spring' | 'autumn';
}
export interface CoverageRequest {
@@ -46,6 +49,7 @@ export interface ApiCoveragePoint {
terrain_loss: number;
building_loss: number;
reflection_gain: number;
vegetation_loss: number;
}
export interface ApiCoverageStats {
@@ -56,6 +60,7 @@ export interface ApiCoverageStats {
points_with_buildings: number;
points_with_terrain_loss: number;
points_with_reflection_gain: number;
points_with_vegetation_loss: number;
}
export interface CoverageResponse {
@@ -75,6 +80,8 @@ export interface Preset {
use_dominant_path: boolean;
use_street_canyon: boolean;
use_reflections: boolean;
use_water_reflection: boolean;
use_vegetation: boolean;
estimated_speed: string;
}