From 4461ca7cd88223e6c071f0569eb9a5754295d0ef Mon Sep 17 00:00:00 2001 From: Sylvain POULAIN Date: Tue, 12 Sep 2023 15:22:41 +0400 Subject: [PATCH] Typo error typo in endsWith for geotif --- R/geoflow_entity.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/geoflow_entity.R b/R/geoflow_entity.R index d1b429f..5849649 100644 --- a/R/geoflow_entity.R +++ b/R/geoflow_entity.R @@ -655,7 +655,7 @@ geoflow_entity <- R6Class("geoflow_entity", srcType = "shp" }else if(any(endsWith(zip_files$filename, ".csv"))){ srcType = "csv" - }else if(any(endsWIth(zip_files$filename, ".tif"))){ + }else if(any(endsWith(zip_files$filename, ".tif"))){ srcType = "tif" } config$logger.info(sprintf("Resolving sourceType from zip list: '%s'", srcType))