Ocean-Data-Lab / ooipy

Python library and demo code for processing and visualization of data from Ocean Observatories Initiative (OOI)
https://ooipy.readthedocs.io/en/latest/
MIT License
13 stars 8 forks source link

bb get_acoustic data might be broken #118

Closed John-Ragland closed 1 year ago

John-Ragland commented 1 year ago
import ooipy
from datetime import datetime

start_time = datetime(2021,6,24,21)
end_time = datetime(2021,6,25,2)
hdata = ooipy.request.hydrophone_request.get_acoustic_data(start_time, end_time, node='PC03A')

hdata is none type. But there is clearly data in the raw data server (see https://rawdata-west.oceanobservatories.org/files/RS03AXPS/PC03A/08-HYDBBA303/2021/06/24/)

satan-j commented 1 year ago

I also encountered the same problem. What time periods of data are useful?

John-Ragland commented 1 year ago

I think that I was able to fix the problem with the above merge. (This update isn't on pypi though yet so you'd have to clone the environment to get the update. I'm working on getting these changes published.)