TUW-GEO / ismn

Readers for the data from the International Soil Moisture Network
https://ismn.earth/en/
MIT License
31 stars 21 forks source link

no 'display' is found in 'docs/examples/interface.ipynb' #49

Closed pipipercy closed 1 year ago

pipipercy commented 1 year ago

Hi, I am trying to implement some scripts in docs/examples/interface.ipynb. However, when it comes to the lines - display(network). The error occurs - undefined. I check the whole text and do not find the relevant definition. Could you help me figure it out?

wpreimes commented 1 year ago

display is an IPython function. See here https://stackoverflow.com/a/49328495 If you are not working in an ipython environment (the example runs in a jupyter notebook) the command might not work, and you might want to replace it with print() or just skip these lines.

pipipercy commented 1 year ago

Thanks for your help!