Updates zone file path
All checks were successful
Build, Push and Run Container / build (push) Successful in 25s

Updates the default zone file path to point to the parking zones file.

This change ensures the application uses the correct GeoJSON file for determining parking zones.
This commit is contained in:
2025-08-21 17:26:26 +02:00
parent b00cebbd0a
commit 3c64228f8c

View File

@@ -67,5 +67,5 @@ public class ZoneDeterminatorService
public class ZoneDeterminatorServiceConfiguration public class ZoneDeterminatorServiceConfiguration
{ {
public string ZoneFilePath { get; set; } = "Resources/zones.geojson"; public string ZoneFilePath { get; set; } = "Resources/parking_zones.geojson";
} }