source: trunk/src/python_script/comp_tb_alt.py @ 6

Last change on this file since 6 was 6, checked in by gaclod, 12 years ago

add GC python scripts

  • Property svn:executable set to *
File size: 1.4 KB
Line 
1#realtion tb altitude sur antartique
2
3iterre = (mm_t >= 0.5)
4tb_tcnm=tb_t[iterre]
5alt_ta=alt_t[iterre]
6
7plot(tb_tcnm,alt_ta,'.')
8plt.title('tb vs altitude sur antartique')
9#plt.show()
10plt.savefig('tb_vs_alt_sur_ant.png')
11close()
12
13#est lo positive
14itest = (mm_t >= 0.5) & (lo_t>=0)
15tb_taest=tb_t[itest]
16alt_taest=alt_t[itest]
17
18plot(tb_taest,alt_taest,'.')
19plt.title('tb vs altitude sur antartique est')
20#plt.show()
21plt.savefig('tb_vs_alt_sur_ant_est.png')
22close()
23
24#oest lo negative
25itoest = (mm_t >= 0.5) & (lo_t<=0)
26tb_taoest=tb_t[itoest]
27alt_taoest=alt_t[itoest]
28
29plot(tb_taoest,alt_taoest,'.')
30plt.title('tb vs altitude sur antartique west')
31#plt.show()
32plt.savefig('tb_vs_alt_sur_ant_west.png')
33close()
34
35##################################
36#realtion tb lat sur antartique
37
38iterre = (mm_t >= 0.5)
39tb_tcnm=tb_t[iterre]
40la_ta=la_t[iterre]
41
42plot(tb_tcnm,la_ta,'.')
43plt.title('tb vs latitude sur antartique')
44#plt.show()
45plt.savefig('tb_vs_lat_sur_ant.png')
46close()
47
48#est lo positive
49itest = (mm_t >= 0.5) & (lo_t>=0)
50tb_taest=tb_t[itest]
51la_taest=la_t[itest]
52
53plot(tb_taest,la_taest,'.')
54plt.title('tb vs altitude sur antartique est')
55plt.show()
56plt.savefig('tb_vs_alt_sur_ant_est.png')
57close()
58
59#oest lo negative
60itoest = (mm_t >= 0.5) & (lo_t<=0)
61tb_taoest=tb_t[itoest]
62la_taoest=la_t[itoest]
63
64plot(tb_taoest,la_taoest,'.')
65plt.title('tb vs altitude sur antartique west')
66#plt.show()
67plt.savefig('tb_vs_alt_sur_ant_west.png')
68close()
Note: See TracBrowser for help on using the repository browser.