from obspy.taup import TauPyModel
model = TauPyModel(model=“qguo”)
arrivals = model.get_travel_times(source_depth_in_km=5,distance_in_degree=1.278)
print(arrivals)
arrivals = model.get_ray_paths(source_depth_in_km=5,distance_in_degree=1,phase_list=[“Pn”,“sPn”,“PvmP”])
arrivals.plot(plot_type=“cartesian”)
The above codes is used to make the following plot.
Is this have a problem in the phase sPn, Pn or PvmP? the sPn and Pn do not get to the station(triangle), The angle of incidence of Pn is smaller than PvmP, is it right?
which version of TauP is loaded in Obspy by importing TauPyModel?
I'm currently using the following version
updated to 17.12.2015.
TauP-2.3.0-SNAPSHOT.tgz
Yes,
my email was to point that the problem seems to me to be in the Java version.
I attach a quick plot I made to show the differences between the 2 before mentioned versions of TauP program in the calculation of the raypaths.
In the newer version the rays are reaching the receiver position(sorry no triangle is placed in the receiver location).