org-arl / arlpy

ARL Python Tools
BSD 3-Clause "New" or "Revised" License
119 stars 37 forks source link

plot_transmission_loss and plot_ray issue #69

Closed andy88980 closed 3 years ago

andy88980 commented 3 years ago

I try to plot the ray and transmission loss. But I got this error: This tool has been deprecated, use 'gio open' instead. See 'gio help open' for more info.

The ray figure can show like this. bokeh_exp_ray but the transmission loss figure is empty. bokeh_exp_tl

This is my code: import arlpy.uwapm as pm import arlpy.plot as plt

env = pm.create_env2d() ray = pm.compute_rays(env, debug=True) pm.plot_rays(ray, env, width=1000) tl = pm.compute_transmission_loss(env, debug=True) pm.plot_transmission_loss(tl)

Thanks.

andy88980 commented 3 years ago

I think the problem is solved, thanks.