Convert a UDUNITS compatible time to ISO time
convert_time(
n = NULL,
isoTime = NULL,
units = "seconds since 1970-01-01T00:00:00Z",
url = eurl(),
method = "local",
...
)
numeric; A unix time number.
character; A string time representation.
character; Units to return. Default: "seconds since 1970-01-01T00:00:00Z"
Base URL of the ERDDAP server. See eurl()
for
more information
(character) One of local or web. Local simply uses
as.POSIXct()
, while web method uses the ERDDAP time conversion service
/erddap/convert/time.txt
Curl options passed on to crul::verb-GET
When method = "web"
time zone is GMT/UTC
if (FALSE) {
# local conversions
convert_time(n = 473472000)
convert_time(isoTime = "1985-01-02T00:00:00Z")
# using an erddap web service
convert_time(n = 473472000, method = "web")
convert_time(isoTime = "1985-01-02T00:00:00Z", method = "web")
}