EO Examples problem

Hi

Totally new to Pyton but got i running on Jupyter notebook with needed modules.
When following SentinelHubTimelapseExamples.ipynb I get error:


ModuleNotFoundError Traceback (most recent call last)
in
1 from sentinelhub import BBox, CRS
----> 2 from time_lapse import SentinelHubTimelapse

ModuleNotFoundError: No module named ‘time_lapse’

Does anyone know the solution?

Hi Nils,

The time_lapse refers to this script. It is not a package, which you could install, but rather a single Python file. That is why you have to have SentinelHubTimelapseExamples.ipynb and time_lapse.py in the same folder when your run the notebook. Otherwise import statement doesn’t know where to find the time_lapse.

@nilsfernquist, did you manage to get everything working?