I am trying out the workbench branch and using python 3.12. Since the file structure of the pickle/joblib file has changed since the last tpv version I used, tripyview needed to recompute these the first time.
Despite the new .jlib file existing now and also it being found, the mesh is loaded from out files every time., which is time intensive.
This is because do_redosave is set to True as a default in load_mesh_fesom2 and not changed in the template notebooks.
What I do now is I load the mesh like this:
mesh=tpv.load_mesh_fesom2(mesh_path, do_rot='None', focus=0, do_info=True, do_pickle=True, do_redosave=False)
Does it make sense to set the default to do_redosave=False either in the notebooks or in tpv.load_mesh_fesom2?
I am trying out the workbench branch and using python 3.12. Since the file structure of the pickle/joblib file has changed since the last tpv version I used, tripyview needed to recompute these the first time.
Despite the new
.jlibfile existing now and also it being found, the mesh is loaded from out files every time., which is time intensive.This is because
do_redosaveis set toTrueas a default inload_mesh_fesom2and not changed in the template notebooks.What I do now is I load the mesh like this:
Does it make sense to set the default to
do_redosave=Falseeither in the notebooks or intpv.load_mesh_fesom2?