========================== The trajectory_plot module ========================== Introduction ------------- The objective of this code is to plot or animate in various ways the trajectories and trajectory families generated by :doc:`trajectory_compute`. An example of its use, after running the code example in :doc:`trajectory_compute` is:: from trajectory_plots import * traj_list = tfm.family traj_m = traj_list[-1] sel_list = np.array([14, 44, 72, 74, 79, 85, 92]) mean_prop = traj_m.cloud_properties(version = 1) for cloud in sel_list : plot_traj_animation(traj_m, save_anim=False, \ anim_name='traj_cloud_{:03d}_class'.format(cloud), \ select = np.array([cloud]), fps = 10, \ no_cloud_size = 0.2, cloud_size = 2.0, legend = True, \ title = 'Reference Time {0} Cloud {1} Galilean Trans'.\ format(last_ref_time, cloud), with_boxes = False, galilean = np.array([-8.5,0]), \ plot_class = mean_prop['class'],\ version = mean_prop['version']) Detailed Module Contents ------------------------ The entire module is documented below. .. automodule:: trajectory_plot :members: