-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
get_observations_by_lat_long yielding only one observation #18
Comments
@MattArceri: @pkuong: from noaa_sdk import noaa
n = noaa.NOAA()
res = n.get_observations_by_lat_lon(
lat=40.73,
lon=-73.41,
start='2019-01-01',
end='2019-01-10',
num_of_stations=1
)
my_result = list(res)
my_result In my case my_result = [] |
I get the same result. Keen to see how to resolve this issue. |
I'm having the same issue. |
Looking into it |
@MattArceri |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running
n.get_observations_by_lat_lon(33.7490, 84.3880, start='2020-05-05', end='2020-05-19')
consistently yields only one observation on the end date. It doesn't seem able to yield multiple observations across the range.
The text was updated successfully, but these errors were encountered: