Source code for geopfa.geopfa3d.data_readers

"""Transition module

All functionalities from this module were moved to
:mod:`~geopfa.data_readers`.
"""

import warnings

import geopfa.data_readers


[docs] class GeospatialDataReaders(geopfa.data_readers.GeospatialDataReaders): """Alias for geopfa.data_readers.GeospatialDataReaders .. deprecated:: 0.1.0 :class:`~geopfa.data_readers.GeospatialDataReaders` instead. """ def __init__(self, *args, **kwargs): """Initialize the GeospatialDataReaders class""" warnings.warn( "The geopfa3d.data_readers.GeospatialDataReaders class is deprecated and will be removed in a future version. " "Please use the geopfa.data_readers module instead.", DeprecationWarning, stacklevel=2, ) super().__init__(*args, **kwargs)