CFTime
encodes and decodes time units conforming to the Climate and Forecasting (CF) conventions.
CFTime
was split out of the NCDatasets Julia package.
Features of CFTime include:
- Time instances as defined Climate and Forecasting (CF) conventions
- Supporting a wide range of the time resolutions, from days down to attoseconds (for feature parity with NumPy's date time type)
- Supporting arbitrary time origins. For CFTime.jl the time origin is part of the parametric type definition and not an additional field of the time data structure. As a consequence, a large array of date times with common time origin only need to store the time counter (64-bit integer by default) for every element, which makes this case as memory efficient as NumPy's or Julia's default date time for this common use case.
- By default, the time counter is a 64-bit integer, but other integers types (such as
Int32
,Int128
orBigInt
) or floating-point types can be used. Using an integer to encode a time instance is recommended for most applications, as it makes reasoning about the time resolution easier. - Basic arithmetic such as computing the duration between two time instances
- Conversion function between CFTime types and Julia's
DateTime
. - Regular time range based on Julia's range type. A time range is a vector of date time elements, but only the start time, the end time and the steps need to be stored in memory.
CFTime currently does not support leap seconds, which were standardized as part of CF conventions version 1.12, released in December 2024.
Inside the Julia shell, you can download and install the package by issuing:
using Pkg
Pkg.add("CFTime")
After installing the package, the test suite of CFTime
can be run using:
Pkg.test("CFTime")
For the Climate and Forecasting (CF) conventions, time is expressed as duration since starting time. The function CFTime.timedecode
allows to convert these
time instances as a Julia DateTime
structure:
using CFTime, Dates
# standard calendar
dt = CFTime.timedecode([0,1,2,3],"days since 2000-01-01 00:00:00")
# 4-element Array{Dates.DateTime,1}:
# 2000-01-01T00:00:00
# 2000-01-02T00:00:00
# 2000-01-03T00:00:00
# 2000-01-04T00:00:00
The function CFTime.timeencode
does the inverse operation: converting a Julia DateTime
structure to a duration since a start time:
CFTime.timeencode(dt,"days since 2000-01-01 00:00:00")
# 4-element Array{Float64,1}:
# 0.0
# 1.0
# 2.0
# 3.0
The CF conventions also allow for different calendars, for example a calendar where every months has a duration of 30 days:
dt = CFTime.timedecode([0,1,2,3],"days since 2000-01-01 00:00:00",DateTime360Day)
# 4-element Array of DateTime360Day
# DateTime360Day(2000-01-01T00:00:00)
# DateTime360Day(2000-01-02T00:00:00)
# DateTime360Day(2000-01-03T00:00:00)
# DateTime360Day(2000-01-04T00:00:00)
CFTime.timeencode(dt,"days since 2000-01-01 00:00:00",DateTime360Day)
# 4-element Array{Float64,1}:
# 0.0
# 1.0
# 2.0
# 3.0
You can replace in the example above the type DateTime360Day
by the string "360_day"
(the name for the calendar according to the CF conventions).
Single time instances can also be created by calling the corresponding constructor function, e.g. DateTimeStandard
for the standard calendar (mixed Gregorian/Julian calendar)
in a similar way than Julias DateTime
type.
The units
argument specifies the time resolutions (either day
, hour
, ... attosecond
) for the common case where the duration is specified as an integer.
For example, the 1 January 2000 + 1 ns would be:
y,m,d = (2000,1,1)
hour,minute,sec = (0,0,0)
µsec,msec,nsec = (0,0,1)
DateTimeStandard(y,m,d,hour,minute,sec,µsec,msec,nsec; units=:nanosecond)
# DateTimeStandard(2000-01-01T00:00:00.000000001)
As in Julia's DateTime
, the default time resolution is milliseconds.
The duration are encoded internally as a 64-bit signed integer. High precision integer (or floating point numbers) can also be used, for example a 128-bit signed integer:
DateTimeStandard(Int128,y,m,d,hour,minute,sec,µsec,msec,nsec; units=:nanosecond)
The default time origin is currently 1 January 1900 00:00:00. A different time origin can be used by setting the origin parameter:
DateTimeStandard(Int128,y,m,d,hour,minute,sec,µsec,msec,nsec; units=:nanosecond, origin=(1970,1,1))
The units and origin argument can be wrapped as a Val
to ensure that these values are known at compile-time:
DateTimeStandard(Int128,y,m,d,hour,minute,sec,µsec,msec,nsec; units=Val(:nanosecond), origin=Val((1970,1,1)))
Several compile-time optimization have been implemented for the particular but common case where date have the same time origin and/or the same time resolution.
Arithmetic operations (+
,-
) and comparision operators on these types are supported, for example:
DateTimeStandard(2000,1,2) - DateTimeStandard(2000,1,1)
# 86400000 milliseconds
Dates.Day(DateTimeStandard(2000,1,2) - DateTimeStandard(2000,1,1))
# 1 day
DateTime360Day(2000,1,1) + Dates.Day(360)
# DateTime360Day(2001-01-01T00:00:00)
DateTimeStandard(2000,1,2) > DateTimeStandard(2000,1,1)
# true
Dates can be parsed by using dateformat
from Julia's Dates
module, for example:
dt = DateTimeNoLeap("21001231",dateformat"yyyymmdd");
# or
# dt = parse(DateTimeNoLeap,"21001231",dateformat"yyyymmdd")
Dates.year(dt),Dates.month(dt),Dates.day(dt)
# output (2100, 12, 31)
Julia packages:
- NanoDates.jl: Dates with nanosecond resolved days
- TimesDates.jl: Nanosecond resolution for Time and Date, TimeZones
- AstroTime.jl: Astronomical time keeping in Julia
Outside of the julia ecosystem:
Thanks to Jeff Whitaker and contributors for python's cftime released under the MIT license which has helped the developpement of this package by providing reference values and a reference implementation for tests. The algorithm is based on Jean Meeus' algorithm published in Astronomical Algorithms (2nd Edition, Willmann-Bell, p. 63, 1998) adapted to years prior to 300 AC.