%pylab inline from mpl_toolkits.mplot3d.axes3d import Axes3D from pycoasters.coaster import Coaster kanonen = Coaster.load('data/2014-06-22-Ann-Marie-Pendrill/kanonen') figure(figsize=(10,10)) kanonen.plot_portrait_polar(subplot(111,polar=True)) hulk = Coaster.load('data/2014-05-02-Gulf-Coast-Data-Concepts/hulk') figure(figsize=(10,10)) hulk.plot_portrait_polar(subplot(111,polar=True)) seaswing = Coaster.load('data/2009-05-08-Roger-Meike-Sun-SPOT/seaswing/') figure(figsize=(10,10)) seaswing.plot_portrait_polar(subplot(111,polar=True)) hurricane = Coaster.load('data/2009-05-08-Roger-Meike-Sun-SPOT/hurricane/') figure(figsize=(10,10)) hurricane.plot_portrait_polar(subplot(111,polar=True)) starfish = Coaster.load('data/2009-05-08-Roger-Meike-Sun-SPOT/starfish/') figure(figsize=(10,10)) starfish.plot_portrait_polar(subplot(111,polar=True)) dropzone1 = Coaster.load('data/2009-05-08-Roger-Meike-Sun-SPOT/dropzone1/') figure(figsize=(10,10)) dropzone1.plot_portrait_polar(subplot(111,polar=True)) dropzone2 = Coaster.load('data/2009-05-08-Roger-Meike-Sun-SPOT/dropzone2') figure(figsize=(10,10)) dropzone2.plot_portrait_polar(subplot(111,polar=True)) bumper2 = Coaster.load('data/2009-05-08-Roger-Meike-Sun-SPOT/bumper2/') figure(figsize=(10,10)) bumper2.plot_portrait_polar(subplot(111,polar=True))