Quick overview of using sunpy-soar with Fido#

This example demonstrates how to search and download Solar Orbiter data using sunpy.net.Fido.

import sunpy.net.attrs as a
from sunpy.net import Fido

Importing sunpy_soar registers the client with sunpy

import sunpy_soar  # NOQA: F401 isort:skip

We shall start with constructing a search query.

instrument = a.Instrument("EUI")
time = a.Time("2021-02-01", "2021-02-02")
level = a.Level(1)
product = a.soar.Product("EUI-FSI174-IMAGE")

Now do the search.

Results from 1 Provider:

43 Results from the SOARClient:
QueryResponseTable length=43
InstrumentData productLevelStart timeEnd timeFilesizeSOOP NameDetectorWavelength
Mbyte
str3str16str2str23str23float64str4str3float64
EUIeui-fsi174-imageL12021-02-01 00:45:12.2282021-02-01 00:45:22.2283.393noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 01:15:12.2322021-02-01 01:15:22.2320.418noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 01:45:12.2372021-02-01 01:45:22.2370.406noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 02:15:12.2382021-02-01 02:15:22.2383.352noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 02:45:12.2412021-02-01 02:45:22.2410.406noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 03:15:12.2442021-02-01 03:15:22.2440.406noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 03:44:52.2472021-02-01 03:45:02.2470.406noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 04:15:12.2492021-02-01 04:15:22.2493.419noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 04:45:12.2532021-02-01 04:45:22.2530.415noneFSI174.0
...........................
EUIeui-fsi174-imageL12021-02-01 19:45:12.2192021-02-01 19:45:22.2190.412noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 20:15:12.2212021-02-01 20:15:22.2210.412noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 20:44:52.2242021-02-01 20:45:02.2240.409noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 21:15:12.2272021-02-01 21:15:22.2273.387noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 21:45:12.2302021-02-01 21:45:22.2300.412noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 22:15:12.2332021-02-01 22:15:22.2330.415noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 22:44:52.2362021-02-01 22:45:02.2360.423noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 23:15:12.2392021-02-01 23:15:22.2393.459noneFSI174.0
EUIeui-fsi174-imageL12021-02-01 23:45:12.2422021-02-01 23:45:22.2420.415noneFSI174.0



Finally we can download the data.

For this example, we will comment out the download part as we want to avoid downloading data in the documentation build

# files = Fido.fetch(result)
# print(files)

Total running time of the script: (0 minutes 26.705 seconds)

Gallery generated by Sphinx-Gallery