Searching for EPD/EPT data with the a.soar.Sensor attribute#

This example demonstrates how to search and download Solar Orbiter data for a specific instrument sensor. Here, we will build a query for EPD data, specifically from the EPT sensor using a.soar.Sensor.

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

Importing sunpy_soar registers the client with sunpy Fido

import sunpy_soar  # NOQA: F401 isort:skip

We shall construct a search query with instrument, time, level, and sensor attributes.

result = Fido.search(
    a.Instrument("EPD"),
    a.Time("2023-02-01", "2023-02-03"),
    a.Level(2),
    a.soar.Sensor("EPT"),
)

And we can see the result as follows:

Results from 1 Provider:

12 Results from the SOARClient:
QueryResponseTable length=12
InstrumentData productLevelStart timeEnd timeFilesizeSOOP NameSensor
Mbyte
str3str19str2str23str23float64objectstr3
EPDepd-ept-asun-ratesL22023-02-01 00:00:00.0002023-02-02 00:00:00.0001.708NoneEPT
EPDepd-ept-south-ratesL22023-02-01 00:00:00.0002023-02-02 00:00:00.0001.785NoneEPT
EPDepd-ept-sun-ratesL22023-02-01 00:00:00.0002023-02-02 00:00:00.0002.297NoneEPT
EPDepd-ept-north-ratesL22023-02-01 00:00:00.0002023-02-02 00:00:00.0001.803NoneEPT
EPDepd-ept-asun-ratesL22023-02-02 00:00:00.0002023-02-03 00:00:00.0002.004NoneEPT
EPDepd-ept-south-ratesL22023-02-02 00:00:00.0002023-02-03 00:00:00.0001.982NoneEPT
EPDepd-ept-sun-ratesL22023-02-02 00:00:00.0002023-02-03 00:00:00.0002.145NoneEPT
EPDepd-ept-north-ratesL22023-02-02 00:00:00.0002023-02-03 00:00:00.0001.899NoneEPT
EPDepd-ept-asun-ratesL22023-02-03 00:00:00.0002023-02-04 00:00:00.0002.078NoneEPT
EPDepd-ept-south-ratesL22023-02-03 00:00:00.0002023-02-04 00:00:00.0002.25NoneEPT
EPDepd-ept-sun-ratesL22023-02-03 00:00:00.0002023-02-04 00:00:00.0002.025NoneEPT
EPDepd-ept-north-ratesL22023-02-03 00:00:00.0002023-02-04 00:00:00.0002.111NoneEPT



To then download the data, you would then use Fido.fetch(result), which will download the data locally.

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

Gallery generated by Sphinx-Gallery