Quick answer:
Yes
Longer answer:
Yes, although I believe that data switches over in the 3 o’clock hours.
(IE: from approximately 3:15pm to 3:15am, [0] will always be null)
For example:
3:05PM: temperatureMax:[79, 73, 72, 73, 73, 65, 59, 62, 64, 68, 69, 68, 69, 70, 71]
3:35PM: temperatureMax:[null, 73, 72, 72, 73, 66, 59, 62, 64, 68, 68, 68, 69, 70, 72]
To see this in action, let’s examine the 24 hours period on a Monday:
Monday from 12am to ≈3am
[0] = null
[1] = Monday’s data
Monday from ≈3am to ≈3pm
[0] = Monday’s data
[1] = Tuesday’s data
Monday from ≈3pm to 11:59pm
[0] = null
[1] = Tuesday’s data
The ≈ represents “approximately” here.
Note: The earliest I have ever seen it change over is 2:58… The latest is 3:36…
(you can see a 33 day graph of these variances here)