Open arthurdurso opened 1 year ago
Hi @arthurdurso. This can be accomplished with something like this
from goes2go import GOES
import pandas as pd
DATES = pd.date_range('2023-01-01 00:00', '2023-01-01 03:00', freq="H")
G = GOES()
ds_list = [G.nearesttime(attime=DATE, return_as="xarray") for DATE in DATES]
# Join the xarray datasets together
ds = xr.concat(ds_list, dim='t')
I'm really considering using your python package, but in my project it would be better if I get data with certain frequency ( every hour for example ) and I'm not finding a way to do that with the Goes2go.
I'm looking for something similar as I do with Pandas as shown below.