Replies: 1 comment 2 replies
-
Here is some data from a fetch I made yesterday:
probabilityOfPrecipitation starts defining values at 10:00, whereas the other two start at 6:00 (when the fetch originated). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am attempting to filter for several variables (temp, wind speed, and probability of precipitation) based off of selected user thresholds. I am running into an issue where sometimes the data is undefined for the first n number of hours for a certain variable.
I understand the duration format and its implications. I am currently controlling for when H is found to be greater than 1.
My guess as to why some time periods still have no data, and why they only ever seem to be in the beginning of the array, is because a previous duration greater than 1H was declared/reported prompting for an "absence" of explicit data for the next n number of hours. Ex: a 4 hour duration for a property value was declared at 11:00, but the fetch happens at 12:00. No value is reported until 15:00, and the user has no way of knowing what the previous value was in order to fill the gap.
Thoughts? Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions