Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
miturbide committed May 31, 2021
1 parent 2222f40 commit 21f0fc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/fillGridDates.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ fillGridDates <- function(grid, tz = "") {
"DD" = "day",
"MM" = "month",
"YY" = "year")
xs <- seq.POSIXt(from = start[1], to = start[length(start)], by = by)
xe <- seq.POSIXt(from = end[1], to = end[length(end)], by = by)
xs <- seq.POSIXt(from = as.POSIXct(start[1]), to = as.POSIXct(start[length(start)]), by = by)
xe <- seq.POSIXt(from = as.POSIXct(end[1]), to = as.POSIXct(end[length(end)]), by = by)
end <- NULL
test <- data.frame("date" = start, "wh" = TRUE)
start <- NULL
Expand Down

0 comments on commit 21f0fc4

Please sign in to comment.