We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The day for spring DST change (when the day has 23 hours), currently returns reading for hours from 0 to 22:
[ { hour: 0, consumption: 123 }, { hour: 1, consumption: 213 }, { hour: 2, consumption: 312 }, { hour: 3, consumption: 231 }, [...] { hour: 22, consumption: 321 } ]
But should return from 0 to 1 and from 3 to 23 (because the hour 2 does not exists), in order to match the with esios format
[ { hour: 0, consumption: 123 }, { hour: 1, consumption: 213 }, { hour: 3, consumption: 231 }, [...] { hour: 23, consumption: 321 } ]
The text was updated successfully, but these errors were encountered:
alvaro-octal
No branches or pull requests
The day for spring DST change (when the day has 23 hours), currently returns reading for hours from 0 to 22:
But should return from 0 to 1 and from 3 to 23 (because the hour 2 does not exists), in order to match the with esios format
The text was updated successfully, but these errors were encountered: