Replies: 1 comment 1 reply
-
You would need to make a metadata query to get the period of record: from synoptic.services import stations_metadata
stations_metadata(stid='KRKP') Interestingly, when I tried you request, I didn't get an error... from synoptic.services import stations_metadata, stations_timeseries
df = stations_timeseries(
stid='KRKP',
vars=['air_temp', 'wind_speed'],
start='2016-01-01',
end='2022-06-01'
) I wonder if you are running into data limits. Can you make smaller requests? (one year at a time?) What is the exact error you are seeing? |
Beta Was this translation helpful? Give feedback.
1 reply
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to pull max timeseries data? If I put in a start date prior to the first available record I get an error. Here is an example.
Thank you ... Frank
Beta Was this translation helpful? Give feedback.
All reactions