From 79c7550ec3f6efd7d1fb1ce3f57b84b2d5b8ad2c Mon Sep 17 00:00:00 2001 From: Rosina Derks Date: Mon, 9 Oct 2023 11:28:55 +0200 Subject: [PATCH] KDP-1528 float to string for vertical extent --- src/edr_pydantic/extent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/edr_pydantic/extent.py b/src/edr_pydantic/extent.py index e5a15ba..0fb196a 100644 --- a/src/edr_pydantic/extent.py +++ b/src/edr_pydantic/extent.py @@ -20,8 +20,8 @@ class Temporal(EDRBaseModel): class Vertical(EDRBaseModel): - interval: List[List[float]] - values: List[float] + interval: List[List[str]] + values: List[str] vrs: str