From 77f8336fdc9af00af2725e53f836a8aae4171047 Mon Sep 17 00:00:00 2001 From: hrodmn Date: Mon, 11 Nov 2024 20:23:25 -0600 Subject: [PATCH] fix description for temporal_interal --- titiler/cmr/timeseries.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/titiler/cmr/timeseries.py b/titiler/cmr/timeseries.py index 0e916df..0d7fb37 100644 --- a/titiler/cmr/timeseries.py +++ b/titiler/cmr/timeseries.py @@ -142,7 +142,8 @@ class TimeseriesParams(DefaultDependency): temporal_mode: Annotated[ Literal[TemporalMode.point, TemporalMode.interval], Query( - description="If true, queries will be made for a point-in-time at each step. If false, queries will be made for the entire interval between steps" + description="Point: CMR queries will be made for specific moments in time. " + "Interval: CMR queries will be made for the intervals between the points along the timeseries and results will be mosaiced into a single array before summarization." ), ] = TemporalMode.interval