R supports time from 00:00 to 23:59. Is there a way to change it to 24:00. creating a POSIXct object of "2012-12-03 24:00" makes it "2012-12-04 00:00". For my dataset(TMY3) this is problematic.
As a workaround I have replaced all instance of "24:00" with "23:59" and then convert to POSIXct. The problem now is that I cannot use helper functions to extract just the hour. 23:50 and 23:00 both are 23hr. plotting points by hour now have two datapoints at 23hr.
What are my options?