From e2c71b704fc9e9f2ced11b8e503126983f7e5bf5 Mon Sep 17 00:00:00 2001 From: Solomon Negusse Date: Wed, 13 Nov 2024 21:24:01 +0300 Subject: [PATCH] minor doc fix --- app/routes/titiler/umd_glad_dist_alerts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/titiler/umd_glad_dist_alerts.py b/app/routes/titiler/umd_glad_dist_alerts.py index cd419818..bc173313 100644 --- a/app/routes/titiler/umd_glad_dist_alerts.py +++ b/app/routes/titiler/umd_glad_dist_alerts.py @@ -64,7 +64,7 @@ async def glad_dist_alerts_raster_tile( "with a maximum value of `55`. " "For example, a pixel RGB value of `(3, 26, 255)` would decode to: " "**alert date**: `3 * 255 + 26 = 791` (or 2023-03-02), " - "**confidence**: `floor(255, 100) = 2` (high), and " + "**confidence**: `floor(255 / 100) = 2` (high), and " "**intensity**: `mod(255, 100) = 55`" ), ),