Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Oct 18, 2013
1 parent 05acc7a commit c26354f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions catbed_temp_pline_analysis.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
msids = ['PLINE02T', 'PLINE03T', 'PLINE08T', 'PLINE09T']

tlm = fetch.Msidset(msids, '2000:001', stat='5min')

figure(1)
zipvals = zip([1,2,3,4], msids, ['A','A','B','A']))
for thr, msid, ab in zipvals:
subplot(2,2,thr)
plot_cxctime(x[msid].times, x[msid].vals)
title(msid + ' - near MUPS-' + str(thr) + '-' + ab)
ylabel('deg F')

figure(2)
subplot(2,1,1)
if all(x['PLINE02T'].times == x['PLINE03T'].times):
plot_cxctime(x['PLINE02T'].times, x['PLINE02T'].vals - x['PLINE03T'].vals)
title('PLINE02T minus PLINE03T (MUPS-1A proxy minus MUPS-2A proxy)')
ylabel('deg F')
subplot(2,1,2)
if all(x['PLINE08T'].times == x['PLINE09T'].times):
plot_cxctime(x['PLINE08T'].times, x['PLINE08T'].vals - x['PLINE09T'].vals)
title('PLINE08T minus PLINE09T (MUPS-3B proxy minus MUPS-4A proxy)')
ylabel('deg F')

0 comments on commit c26354f

Please sign in to comment.