Open RichardScottOZ opened 1 month ago
and depending on version, this
ImportError Traceback (most recent call last)
Cell In[1], line 16
14 from lib.coregister_crustal_thickness import run_coregister_crustal_thickness
15 from lib.coregister_magnetic import coregister_magnetic
---> 16 from lib.erodep import calculate_erodep
17 from lib.misc import (
18 calculate_slab_flux,
19 calculate_water_thickness,
20 )
21 from lib.pu import generate_grid_points
File ~/data/stellar-data-mining/lib/erodep/__init__.py:3
1 from ._extract_erodep import *
2 from ._ml import *
----> 3 from ._visualisation import *
5 __all__ = [
6 "time_from_filename",
7 "filename_from_time",
(...)
35 "plot_likelihood",
36 ]
File ~/data/stellar-data-mining/lib/erodep/_visualisation.py:20
14 import pandas as pd
15 from gplately import (
16 PlateReconstruction,
17 PlotTopologies,
18 Raster,
19 )
---> 20 from gplately.plot import (
21 SubductionTeeth,
22 shapelify_feature_lines,
23 )
24 try:
25 from gplately.plot import _meridian_from_projection
ImportError: cannot import name 'SubductionTeeth' from 'gplately.plot' (/home/rscott/miniconda3/envs/sdm/lib/python3.12/site-packages/gplately/plot.py)