Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions lib/eofs/extended/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
"""Extended EOF analysis."""
# (c) Copyright 2010-2016 Andrew Dawson. All Rights Reserved.
# This file is part of eofs.
#
# eofs is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# eofs is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with eofs. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import, division, print_function # noqa

from . import standard


__all__ = ["standard"]

try:
from . import xarray

__all__.append("xarray")
except ImportError:
pass

try:
from . import cdms

__all__.append("cdms")
except ImportError:
pass

try:
from . import iris

__all__.append("iris")
except ImportError:
pass
Loading