datetime-fortran currently provides no timezone information in the datetime class definition. I believe timezone handling should be implemented as an optional derived type which is a component of datetime:
TYPE :: datetime
...
TYPE :: tz
! tz components
ENDTYPE tz
ENDTYPE datetime
A possible timezone model may the one from Python: http://docs.python.org/2/library/datetime.html#tzinfo-objects
datetime-fortran currently provides no timezone information in the datetime class definition. I believe timezone handling should be implemented as an optional derived type which is a component of datetime:
A possible timezone model may the one from Python: http://docs.python.org/2/library/datetime.html#tzinfo-objects