From 3c64228f8c85226495a081e8a7d7520d03418868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Alp=C3=A1r=20Zsolt?= Date: Thu, 21 Aug 2025 17:26:26 +0200 Subject: [PATCH] Updates zone file path 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. --- Source/ProofOfConcept/Services/ZoneDeterminatorService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ProofOfConcept/Services/ZoneDeterminatorService.cs b/Source/ProofOfConcept/Services/ZoneDeterminatorService.cs index 68a9b2f..5c71a6c 100644 --- a/Source/ProofOfConcept/Services/ZoneDeterminatorService.cs +++ b/Source/ProofOfConcept/Services/ZoneDeterminatorService.cs @@ -67,5 +67,5 @@ public class ZoneDeterminatorService public class ZoneDeterminatorServiceConfiguration { - public string ZoneFilePath { get; set; } = "Resources/zones.geojson"; + public string ZoneFilePath { get; set; } = "Resources/parking_zones.geojson"; } \ No newline at end of file