Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
xumi1993 committed Jun 25, 2024
1 parent c2cff27 commit 3089590
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion seispy/psrayp.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def taup_rayp(self, this_dis=50, this_dep=10, taup='taup_time'):

def get_rayp(self):
for i in range(self.dis.shape[0]):
print('{}'.format(self.dis[i]))
for j in range(self.dep.shape[0]):
self.rayp[i, j, :] = self.taup_rayp(this_dis=self.dis[i], this_dep=self.dep[j])[1]

Expand Down
1 change: 0 additions & 1 deletion seispy/rfcorrect.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,6 @@ def psrf_1D_raytracing(stadatar, YAxisRange, velmod='iasp91', srayp=None, sphere
for i in range(stadatar.ev_num):
tps[i], x_s, x_p, raylength_s[i], raylength_p[i] = xps_tps_map(
dep_mod, stadatar.rayp[i], stadatar.rayp[i], is_raylen=True, sphere=sphere, phase=phase)
print(type(stadatar.bazi[i]), type(rad2deg(x_s)))
pplat_s[i], pplon_s[i] = latlon_from(stadatar.stla, stadatar.stlo, stadatar.bazi[i], rad2deg(x_s))
pplat_p[i], pplon_p[i] = latlon_from(stadatar.stla, stadatar.stlo, stadatar.bazi[i], rad2deg(x_p))
elif isinstance(srayp, str) or isinstance(srayp, np.lib.npyio.NpzFile):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()


VERSION = "1.3.7"
VERSION = "1.3.8"
setup(name='python-seispy',
version=VERSION,
author='Mijian Xu',
Expand Down

0 comments on commit 3089590

Please sign in to comment.