Source code for swvo.io.solar_wind.omni

# SPDX-FileCopyrightText: 2025 GFZ Helmholtz Centre for Geosciences
#
# SPDX-License-Identifier: Apache-2.0

"""
Module handling SW data from OMNI High Resolution files.
"""

from swvo.io.omni import OMNIHighRes


[docs] class SWOMNI(OMNIHighRes): """ Class for reading SW data from OMNI High resolution files. Inherits the :func:`download_and_process`, other private methods and attributes from :class:`OMNIHighRes`. """ pass