gtfsTimeToZonedDateTime
Calculates ZonedDateTime from GTFS service day and GTFS time. Implementation is based on the description of Time field described here.
Example:
gtfsTimeToZonedDateTime(LocalDate.of(2022, 1, 1), parseFromString("12:00:00"), ZoneId.of("Asia/Tokyo")) 🡒 2022-01-01T12:00+09:00[Asia/Tokyo]
Content copied to clipboard
Return
ZonedDateTime corresponding to the given parameters
Parameters
date
Service day
seconds
Seconds since midnight of the service day (e.g. arrival time or departure time from xyz.malkki.gtfs.model.StopTime)
timezone
Timezone that is used in the GTFS feed (e.g. xyz.malkki.gtfs.model.Agency.agencyTimezone)