Skip to content

Commit

Permalink
hotfix: update detect changes api
Browse files Browse the repository at this point in the history
  • Loading branch information
M3nin0 committed May 22, 2024
1 parent ac3b16c commit 9fd41c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/api_detect_changes.R
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
# Fill with zeros remaining NA pixels
values <- C_fill_na(values, 0)
# Used to check values (below)
n_input_pixels <- nrow(values)
input_pixels <- nrow(values)
# Include names in cube predictors
colnames(values) <- .pred_features_name(
.ml_bands(cd_method), tile_timeline
Expand All @@ -163,7 +163,7 @@
# Are the results consistent with the data input?
.check_processed_values(
values = values,
n_input_pixels = n_input_pixels
input_pixels = input_pixels
)
# Log here
.debug_log(
Expand Down

0 comments on commit 9fd41c9

Please sign in to comment.