Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add contributions/TDM_Tokyo.ipynb (ID: 4a7cae13-d390-48db-950a-397452c25a03) #146

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

eurodatacube-submissions
Copy link
Member

{"path": "contributions/TDM_Tokyo.ipynb", "id": "4a7cae13-d390-48db-950a-397452c25a03", "license": null, "name": "EDC First Steps", "requirements": ["eurodatacube", "eoxhub"], "tags": ["EO Data", "Getting started", "Sentinel Hub", "xcube"], "tosAgree": true, "type": "Jupyter Notebook", "version": "1.0.0", "description": "First steps on the Euro Data Cube platform", "authors": [{"id": "1e90517e-372c-4725-83a3-dda3beed3ddc", "name": "[email protected]"}]}

@github-actions
Copy link

I have scheduled automatic execution for all changed notebooks on the EDC cluster. The results should arrive within minutes.

@eurodatacube-submissions
Copy link
Member Author

❌ The execution resulted in errors:

---------------------------------------------------------------------------
Exception encountered at "In [3]":
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-3-33251dd2d77b> in <module>
----> 1 get_ipython().run_line_magic('matplotlib', 'qt')
      2 import pandas as pd
      3 import numpy as np
      4 import matplotlib.pyplot as plt
      5 from mpl_toolkits import mplot3d

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line, _stack_depth)
   2346                 kwargs['local_ns'] = self.get_local_scope(stack_depth)
   2347             with self.builtin_trap:
-> 2348                 result = fn(*args, **kwargs)
   2349             return result
   2350 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/decorator.py in fun(*args, **kw)
    230             if not kwsyntax:
    231                 args, kw = fix(args, kw, sig)
--> 232             return caller(func, *(extras + args), **kw)
    233     fun.__name__ = func.__name__
    234     fun.__doc__ = func.__doc__

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/magic.py in <lambda>(f, *a, **k)
    185     # but it's overkill for just that one bit of state.
    186     def magic_deco(arg):
--> 187         call = lambda f, *a, **k: f(*a, **k)
    188 
    189         if callable(arg):

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/magics/pylab.py in matplotlib(self, line)
     97             print("Available matplotlib backends: %s" % backends_list)
     98         else:
---> 99             gui, backend = self.shell.enable_matplotlib(args.gui.lower() if isinstance(args.gui, str) else args.gui)
    100             self._show_matplotlib_backend(args.gui, backend)
    101 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/interactiveshell.py in enable_matplotlib(self, gui)
   3528                 gui, backend = pt.find_gui_and_backend(self.pylab_gui_select)
   3529 
-> 3530         pt.activate_matplotlib(backend)
   3531         configure_inline_support(self, backend)
   3532 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/pylabtools.py in activate_matplotlib(backend)
    322     from matplotlib import pyplot as plt
    323 
--> 324     plt.switch_backend(backend)
    325 
    326     plt.show._needmain = False

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/pyplot.py in switch_backend(newbackend)
    275     backend_name = cbook._backend_module_name(newbackend)
    276 
--> 277     class backend_mod(matplotlib.backend_bases._Backend):
    278         locals().update(vars(importlib.import_module(backend_name)))
    279 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/pyplot.py in backend_mod()
    276 
    277     class backend_mod(matplotlib.backend_bases._Backend):
--> 278         locals().update(vars(importlib.import_module(backend_name)))
    279 
    280     required_framework = _get_required_interactive_framework(backend_mod)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/__init__.py in import_module(name, package)
    125                 break
    126             level += 1
--> 127     return _bootstrap._gcd_import(name[level:], package, level)
    128 
    129 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _gcd_import(name, package, level)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _find_and_load(name, import_)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _find_and_load_unlocked(name, import_)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _load_unlocked(spec)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap_external.py in exec_module(self, module)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _call_with_frames_removed(f, *args, **kwds)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/backend_qt5agg.py in <module>
      9 from .. import cbook
     10 from .backend_agg import FigureCanvasAgg
---> 11 from .backend_qt5 import (
     12     QtCore, QtGui, QtWidgets, _BackendQT5, FigureCanvasQT, FigureManagerQT,
     13     NavigationToolbar2QT, backend_version)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/backend_qt5.py in <module>
     11     _Backend, FigureCanvasBase, FigureManagerBase, NavigationToolbar2,
     12     TimerBase, cursors, ToolContainerBase, StatusbarBase, MouseButton)
---> 13 import matplotlib.backends.qt_editor.figureoptions as figureoptions
     14 from matplotlib.backends.qt_editor._formsubplottool import UiSubplotTool
     15 from . import qt_compat

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/qt_editor/figureoptions.py in <module>
      9 
     10 from matplotlib import cbook, cm, colors as mcolors, markers, image as mimage
---> 11 from matplotlib.backends.qt_compat import QtGui
     12 from matplotlib.backends.qt_editor import _formlayout
     13 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/qt_compat.py in <module>
    177         break
    178     else:
--> 179         raise ImportError("Failed to import any qt binding")
    180 else:  # We should not get there.
    181     raise AssertionError("Unexpected QT_API: {}".format(QT_API))

ImportError: Failed to import any qt binding

@eurodatacube-submissions
Copy link
Member Author

❌ The execution resulted in errors:

---------------------------------------------------------------------------
Exception encountered at "In [3]":
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-3-33251dd2d77b> in <module>
----> 1 get_ipython().run_line_magic('matplotlib', 'qt')
      2 import pandas as pd
      3 import numpy as np
      4 import matplotlib.pyplot as plt
      5 from mpl_toolkits import mplot3d

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line, _stack_depth)
   2346                 kwargs['local_ns'] = self.get_local_scope(stack_depth)
   2347             with self.builtin_trap:
-> 2348                 result = fn(*args, **kwargs)
   2349             return result
   2350 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/decorator.py in fun(*args, **kw)
    230             if not kwsyntax:
    231                 args, kw = fix(args, kw, sig)
--> 232             return caller(func, *(extras + args), **kw)
    233     fun.__name__ = func.__name__
    234     fun.__doc__ = func.__doc__

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/magic.py in <lambda>(f, *a, **k)
    185     # but it's overkill for just that one bit of state.
    186     def magic_deco(arg):
--> 187         call = lambda f, *a, **k: f(*a, **k)
    188 
    189         if callable(arg):

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/magics/pylab.py in matplotlib(self, line)
     97             print("Available matplotlib backends: %s" % backends_list)
     98         else:
---> 99             gui, backend = self.shell.enable_matplotlib(args.gui.lower() if isinstance(args.gui, str) else args.gui)
    100             self._show_matplotlib_backend(args.gui, backend)
    101 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/interactiveshell.py in enable_matplotlib(self, gui)
   3528                 gui, backend = pt.find_gui_and_backend(self.pylab_gui_select)
   3529 
-> 3530         pt.activate_matplotlib(backend)
   3531         configure_inline_support(self, backend)
   3532 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/IPython/core/pylabtools.py in activate_matplotlib(backend)
    322     from matplotlib import pyplot as plt
    323 
--> 324     plt.switch_backend(backend)
    325 
    326     plt.show._needmain = False

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/pyplot.py in switch_backend(newbackend)
    275     backend_name = cbook._backend_module_name(newbackend)
    276 
--> 277     class backend_mod(matplotlib.backend_bases._Backend):
    278         locals().update(vars(importlib.import_module(backend_name)))
    279 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/pyplot.py in backend_mod()
    276 
    277     class backend_mod(matplotlib.backend_bases._Backend):
--> 278         locals().update(vars(importlib.import_module(backend_name)))
    279 
    280     required_framework = _get_required_interactive_framework(backend_mod)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/__init__.py in import_module(name, package)
    125                 break
    126             level += 1
--> 127     return _bootstrap._gcd_import(name[level:], package, level)
    128 
    129 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _gcd_import(name, package, level)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _find_and_load(name, import_)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _find_and_load_unlocked(name, import_)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _load_unlocked(spec)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap_external.py in exec_module(self, module)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/importlib/_bootstrap.py in _call_with_frames_removed(f, *args, **kwds)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/backend_qt5agg.py in <module>
      9 from .. import cbook
     10 from .backend_agg import FigureCanvasAgg
---> 11 from .backend_qt5 import (
     12     QtCore, QtGui, QtWidgets, _BackendQT5, FigureCanvasQT, FigureManagerQT,
     13     NavigationToolbar2QT, backend_version)

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/backend_qt5.py in <module>
     11     _Backend, FigureCanvasBase, FigureManagerBase, NavigationToolbar2,
     12     TimerBase, cursors, ToolContainerBase, StatusbarBase, MouseButton)
---> 13 import matplotlib.backends.qt_editor.figureoptions as figureoptions
     14 from matplotlib.backends.qt_editor._formsubplottool import UiSubplotTool
     15 from . import qt_compat

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/qt_editor/figureoptions.py in <module>
      9 
     10 from matplotlib import cbook, cm, colors as mcolors, markers, image as mimage
---> 11 from matplotlib.backends.qt_compat import QtGui
     12 from matplotlib.backends.qt_editor import _formlayout
     13 

/opt/conda/envs/eurodatacube-0.24.5/lib/python3.8/site-packages/matplotlib/backends/qt_compat.py in <module>
    177         break
    178     else:
--> 179         raise ImportError("Failed to import any qt binding")
    180 else:  # We should not get there.
    181     raise AssertionError("Unexpected QT_API: {}".format(QT_API))

ImportError: Failed to import any qt binding

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant