parse_datehour {mapbayr} | R Documentation |
Parse value to "POSIXct"
Description
A wrapper around functions of lubridate
, mainly in order to transform characters into a date-time ("POSIXct") format.
Usage
parse_datehour(
x,
orders = getOption("mapbayr.datehour", default = c("Ymd HMS", "Ymd HM", "dmY HMS",
"dmY HM"))
)
Arguments
x |
a numeric or a character. |
orders |
format specification for x, passed to |
Value
a POSIXct
Examples
# POSITct are returned as is.
parse_datehour(x = as.POSIXct("2022-02-02 22:22:22", tz = "UTC"))
# Numerics are passed to `lubridate::as_datetime()`.
parse_datehour(1643840542)
# Characters are passed to `lubridate::parse_date_time()`.
# The format used will be the one defined in `orders`
parse_datehour(x = "2022-02-02 22:22:22", orders = "Ymd HMS")
parse_datehour(x = "02-02-2022 22:22", orders = "dmY HM")
# By default, the following formats will be subsequently tried:
# "Ymd HMS", "Ymd HM", "dmY HMS", "dmY HM"
# Alternatively, set a format through `options(mapbayr.datehour)`.
# Convenient for the use `.datehour` in `adm_rows()` and `obs_rows()`.
# Following format will return NA:
adm_rows(.datehour = "22:22 02-02-2022", amt = 100, cmt = 1)
options(mapbayr.datehour = "HM dmY")
adm_rows(.datehour = "22:22 02-02-2022", amt = 100, cmt = 1)
options(mapbayr.datehour = NULL)
[Package mapbayr version 0.10.0 Index]