From 146634608b5efd00553e605471b6648f56f21f18 Mon Sep 17 00:00:00 2001 From: Felipe Carlos Date: Thu, 18 Jul 2024 11:47:00 -0300 Subject: [PATCH] fix mpc stac error --- R/api_stac.R | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R/api_stac.R b/R/api_stac.R index 0e16a0f97..8c67d1ad4 100644 --- a/R/api_stac.R +++ b/R/api_stac.R @@ -154,6 +154,9 @@ datetime = datetime, limit = limit ) + # adjust limit datatype + rstac_query[["params"]][["limit"]] <- as.numeric(limit) + # return! return(rstac_query) } #' @title Extract bounding box from a STAC Query.