source: trunk/MESOSCALE/PLOT/RESERVE/genanim.pro @ 163

Last change on this file since 163 was 85, checked in by aslmd, 14 years ago

LMD_MM_MARS et LMD_LES_MARS: ajout des routines IDL pour tracer les sorties --> voir mesoscale/PLOT

File size: 479 bytes
Line 
1pro genanim, num, folder, name
2
3last=num-1
4
5OPENW, 1, 'templist'
6
7FOR i=0,last do begin
8        ;; on ne met plus de dossier car on nomme les images
9        ;printf, 1, 'modImages['+STRTRIM(STRING(i),2)+'] = "'+folder+'/',$
10        ;;      +STRTRIM(STRING(i+1000),2)+'.ps.png";'
11printf, 1, 'modImages['+STRTRIM(STRING(i),2)+'] = "',$
12       +name+STRTRIM(STRING(i+1000),2)+'.png";'
13ENDFOR
14
15printf, 1, 'first_image = '+string(0,'(I0)')+';'
16printf, 1, 'last_image = '+string(last,'(I0)')+';'
17
18CLOSE, 1
19
20end
Note: See TracBrowser for help on using the repository browser.