SorooshMani-NOAA / OCSMeshTutorial

This repository stores files and documentation used for OCSMesh tutorial Sessions
Creative Commons Zero v1.0 Universal
2 stars 1 forks source link

Missing Modules/paths for running `Validation_Ian.ipynb` #7

Closed FariborzDaneshvar-NOAA closed 1 year ago

FariborzDaneshvar-NOAA commented 1 year ago

@SorooshMani-NOAA and @yunfangsun I am running the Validation_Ian.ipynb standalone and getting an error for missing modules

ModuleNotFoundError                       Traceback (most recent call last)
Cell In[2], line 5
      1 PathToMyFunctions = Path('.').absolute() / 'utility'
      3 sys.path.append(str(PathToMyFunctions))
----> 5 from SchismFunctions import read_SchismWaterElevation2D
      6 from SchismFunctions import read_ObservedWaterLevel
      7 from PythonFunctions import find_indices2D

ModuleNotFoundError: No module named 'SchismFunctions'

I also see some paths in the next cells (i.e. Path_pahmc = workdir / 'pahmc/outputs') that I don't have either. Can you please help me to resolve these issues?

SorooshMani-NOAA commented 1 year ago

@FariborzDaneshvar-NOAA these notebooks need some scripts from Bahram. I'll share them with you on PW. We haven't figured out how we'd like to share these scripts for the tutorials with the public

yunfangsun commented 1 year ago

@FariborzDaneshvar-NOAA

Path_pahmc = workdir / 'pahmc/outputs' is the model simulation results

SorooshMani-NOAA commented 1 year ago

@FariborzDaneshvar-NOAA see /lustre/Soroosh/from_Bahram/my_schism_utility/utility_functions on the shared cluster for missing modules

SorooshMani-NOAA commented 1 year ago

@FariborzDaneshvar-NOAA the datasets for this notebook are not shared yet, so please feel free to modify to match your usecase. It is not self contained.

FariborzDaneshvar-NOAA commented 1 year ago

Thank you @SorooshMani-NOAA and @yunfangsun for your responses!