I installed telewavesiminto a conda environment (using pip install telewavesim) with python=3.10, obspy=1.4.0, numpy=1.26, gfrotran=10.2, liblapack=3.9. But it is failed when I try to run utils.runplane(). Can someone help me out? Thank you.
>>> from telewavesim import utils
>>> model = utils.Model([20., 0.], [2800., 3300.], [4., 6.], [2.6, 3.6], ['tri', 'iso'], [5., 0], [30., 0], [10., 0])
>>> st = utils.run_plane(model, 0.058, 2048, 0.02)
Fortran runtime error: rank of return array incorrect in RESHAPE intrinsic
I installed
telewavesim
into a conda environment (usingpip install telewavesim
) with python=3.10, obspy=1.4.0, numpy=1.26, gfrotran=10.2, liblapack=3.9. But it is failed when I try to runutils.runplane()
. Can someone help me out? Thank you.