Skip to content

Commit

Permalink
Typo error
Browse files Browse the repository at this point in the history
typo in endsWith for geotif
  • Loading branch information
kikislater authored Sep 12, 2023
1 parent a8e0f11 commit 4461ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/geoflow_entity.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 4461ca7

Please sign in to comment.