I have a problem fetching data from the OMNI dataset with Fido. In particular, I would like to access daily data ( in the ex. given from 2016/3/4’ to '2016/3/6), however Fido.search only finds the monthly data. I attach the code in the following. Thanks in advance !
import numpy as np
import matplotlib.pyplot as plt
from sunpy.net import Fido
from sunpy.net import attrs as a
from sunpy.timeseries import TimeSeries as ts
trange = a.Time(‘2016/3/4’, ‘2016/3/6’)
print(trange)
dataset = a.cdaweb.Dataset(‘OMNI_HRO2_1MIN’)
result = Fido.search(trange, dataset)
print(result)