From a55f9c8590c2ede64a2b0fdc1b163501c81a34f9 Mon Sep 17 00:00:00 2001 From: Gert Mertes Date: Tue, 25 Jun 2024 16:57:10 +0000 Subject: [PATCH] Add new_grib_coder to init --- src/climetlab/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/climetlab/__init__.py b/src/climetlab/__init__.py index b39c5008..f6db12d3 100644 --- a/src/climetlab/__init__.py +++ b/src/climetlab/__init__.py @@ -24,6 +24,7 @@ from .plotting import options as plotting_options from .plotting import plot_map from .readers import Reader +from .readers.grib.output import new_grib_coder from .readers.grib.output import new_grib_output from .sources import Source from .sources import get_source as source # so the user can do: cml.source(...) @@ -44,6 +45,7 @@ "load_source", "loaded_modules", "new_grib_output", + "new_grib_coder", "new_plot", "new_table", "plot_map",