From db28e8f26abc1812002f6691ea4cff17ba902d11 Mon Sep 17 00:00:00 2001 From: Martijn Visser Date: Wed, 13 Sep 2023 14:00:18 +0200 Subject: [PATCH] fix QGIS class LevelBoundaryTime(Input) --- qgis/core/nodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qgis/core/nodes.py b/qgis/core/nodes.py index 5f666e405..94d5624ea 100644 --- a/qgis/core/nodes.py +++ b/qgis/core/nodes.py @@ -397,9 +397,10 @@ class LevelBoundaryStatic(Input): class LevelBoundaryTime(Input): - input_type = "LevelBoundary / static" + input_type = "LevelBoundary / time" geometry_type = "No Geometry" attributes = [ + QgsField("time", QVariant.DateTime), QgsField("node_id", QVariant.Int), QgsField("time", QVariant.DateTime), QgsField("level", QVariant.Double),