diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-29 00:41:52 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-29 00:41:52 +0100 |
| commit | a304c24b32c0327436bbd8c2853e60668e161b42 (patch) | |
| tree | 08f65c05daca134cf4d2e4f779bd15d98fd66370 /src/Costasdev.Busurbano.Backend/Configuration/AppConfiguration.cs | |
| parent | 120a3c6bddd0fb8d9fa05df4763596956554c025 (diff) | |
Rename a lot of stuff, add Santiago real time
Diffstat (limited to 'src/Costasdev.Busurbano.Backend/Configuration/AppConfiguration.cs')
| -rw-r--r-- | src/Costasdev.Busurbano.Backend/Configuration/AppConfiguration.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Costasdev.Busurbano.Backend/Configuration/AppConfiguration.cs b/src/Costasdev.Busurbano.Backend/Configuration/AppConfiguration.cs deleted file mode 100644 index 9e4d12f..0000000 --- a/src/Costasdev.Busurbano.Backend/Configuration/AppConfiguration.cs +++ /dev/null @@ -1,25 +0,0 @@ -namespace Costasdev.Busurbano.Backend.Configuration; - -public class AppConfiguration -{ - public required string VitrasaScheduleBasePath { get; set; } - public required string RenfeScheduleBasePath { get; set; } - - [Obsolete] - public required string OtpGeocodingBaseUrl { get; set; } = "https://planificador-rutas-api.vigo.org/v1"; - [Obsolete] - public required string OtpPlannerBaseUrl { get; set; } = "https://planificador-rutas.vigo.org/otp/routers/default"; - public required string OpenTripPlannerBaseUrl { get; set; } - public string NominatimBaseUrl { get; set; } = "https://nominatim.openstreetmap.org"; - - // Default Routing Parameters - public double WalkSpeed { get; set; } = 1.4; - public int MaxWalkDistance { get; set; } = 1000; - public int MaxWalkTime { get; set; } = 20; - public int NumItineraries { get; set; } = 4; - - // Comfort/Slack Parameters - public int TransferSlackSeconds { get; set; } = 120; // Extra buffer for transfers - public int MinTransferTimeSeconds { get; set; } = 120; // Minimum transfer time - public double WalkReluctance { get; set; } = 2.0; // Slightly penalize walking to add slack -} |
