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
When requesting a cube with same end and start date, a Value Error is returned: ValueError: Could not determine any valid time stamps
To reproduce:
from xcube.core.store import find_data_store_extensions
from xcube.core.store import new_data_store
store = new_data_store('sentinelhub')
store
cube = store.open_data(data_id='S2L2A',
variable_names=['B04','B03', 'B02'],
spatial_res = 0.001,
bbox=[8, 40, 9, 41],
time_range=['2016-12-05', '2016-12-05'])
When increasing the end date by one day, it shows that there is a time stamp available for 2016-12-05. I would expect the same outcome when defining the same start and end date as shown above.
When requesting a cube with same end and start date, a Value Error is returned:
ValueError: Could not determine any valid time stamps
To reproduce:
When increasing the end date by one day, it shows that there is a time stamp available for 2016-12-05. I would expect the same outcome when defining the same start and end date as shown above.
The text was updated successfully, but these errors were encountered: