aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Types
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2026-03-13 20:27:27 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2026-03-13 20:27:27 +0100
commit3a2982c8ebb09cea53efc558d65c1ec304698997 (patch)
tree41be6564cb90ec3e6222583ae0343f665e8db6fd /src/Enmarcha.Backend/Types
parentece17875d4e454423f55f0623a456c0433ecd502 (diff)
fix: handle exceptions during point transformation and initialize shape points
Diffstat (limited to 'src/Enmarcha.Backend/Types')
-rw-r--r--src/Enmarcha.Backend/Types/ConsolidatedCirculation.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Enmarcha.Backend/Types/ConsolidatedCirculation.cs b/src/Enmarcha.Backend/Types/ConsolidatedCirculation.cs
index bb6a251..298e2f4 100644
--- a/src/Enmarcha.Backend/Types/ConsolidatedCirculation.cs
+++ b/src/Enmarcha.Backend/Types/ConsolidatedCirculation.cs
@@ -46,5 +46,5 @@ public class Epsg25829
public class Shape
{
public string ShapeId { get; set; }
- public List<Epsg25829> Points { get; set; }
+ public List<Epsg25829> Points { get; set; } = [];
}