| 1 | restore, filename='yeahyeah' |
|---|
| 2 | filename = 'mesoscale_profile' |
|---|
| 3 | tab1 = HEIGHTP |
|---|
| 4 | |
|---|
| 5 | ;tab2 = reform(WHAT_I_PLOT(*,0)) |
|---|
| 6 | |
|---|
| 7 | tab2 = reform(WHAT_I_PLOT(*,1)+WHAT_I_PLOT(*,2)+WHAT_I_PLOT(*,3)+WHAT_I_PLOT(*,4)+WHAT_I_PLOT(*,5))/5. |
|---|
| 8 | |
|---|
| 9 | make_ascii, filename+'_MEAN', tab1, tab2 |
|---|
| 10 | |
|---|
| 11 | plot, tab1, tab2 |
|---|
| 12 | |
|---|
| 13 | tab2 = reform(WHAT_I_PLOT(*,1)) |
|---|
| 14 | make_ascii, filename+'_LT7', tab1, tab2 |
|---|
| 15 | plot, tab1, tab2 |
|---|
| 16 | |
|---|
| 17 | tab2 = reform(WHAT_I_PLOT(*,2)) |
|---|
| 18 | make_ascii, filename+'_LT8', tab1, tab2 |
|---|
| 19 | plot, tab1, tab2 |
|---|
| 20 | |
|---|
| 21 | tab2 = reform(WHAT_I_PLOT(*,3)) |
|---|
| 22 | make_ascii, filename+'_LT9', tab1, tab2 |
|---|
| 23 | plot, tab1, tab2 |
|---|
| 24 | |
|---|
| 25 | tab2 = reform(WHAT_I_PLOT(*,4)) |
|---|
| 26 | make_ascii, filename+'_LT10', tab1, tab2 |
|---|
| 27 | plot, tab1, tab2 |
|---|
| 28 | |
|---|
| 29 | tab2 = reform(WHAT_I_PLOT(*,5)) |
|---|
| 30 | make_ascii, filename+'_LT11', tab1, tab2 |
|---|
| 31 | plot, tab1, tab2, yrange=[0.,40.] |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|