You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I set a time_range (e.g. time_start=2000-12-18T12%3A00%3A00&time_end=2001-02-14T12%3A00%3A00) including the time slot (2001-01-01T00:00:00), the query cannot run successfully:
>>> data = ncss.get_data(query)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/anikfal/miniconda3/envs/mysat/lib/python3.10/site-packages/siphon/ncss.py", line 114, in get_data
resp = self.get_query(query)
File "/home/anikfal/miniconda3/envs/mysat/lib/python3.10/site-packages/siphon/http_util.py", line 410, in get_query
return self.get(url, query)
File "/home/anikfal/miniconda3/envs/mysat/lib/python3.10/site-packages/siphon/http_util.py", line 492, in get
raise requests.HTTPError('Error accessing {0}\n'
requests.exceptions.HTTPError: Error accessing http://my_web_service/cas2001010100.ncz?var=T_SKIN&time_start=2000-12-18T12%3A00%3A00&time_end=2001-02-14T12%3A00%3A00&longitude=0.1&latitude=47.8
Server Error (400: IllegalArgumentException: No coverage data found for parameters latlonPoint == 47.8000N 0.1000E, var == [T_SKIN], timeRange == 2000-12-18T12:00:00Z - 2001-02-14T12:00:00Z,)
However, if I redefine the query with no time_range, it can run successfully.
The text was updated successfully, but these errors were encountered:
Trying to extract some data from a dataset that has only one single time slot:
If I set a
time_range
(e.g.time_start=2000-12-18T12%3A00%3A00&time_end=2001-02-14T12%3A00%3A00
) including the time slot (2001-01-01T00:00:00
), the query cannot run successfully:However, if I redefine the query with no
time_range
, it can run successfully.The text was updated successfully, but these errors were encountered: