From: Valery P. <pi...@is...> - 2007-01-26 09:19:52
|
I have plplot-5.7.1 There are some data showing time evolution. I'd like to have scale of x axis large than y. I define it via plvpor (see code below) The ps driver rotate the picture on -90. Can I avoid this with plplot tools? Other drivers, like xwin or png, do job as expected. Note, if I define the aspect ratio less than 1 (y scale > x) ps driver do job nicely but picture is ugly. best regards Valery ########## the code for python def plph (): plscol0(1,0,0,0); plsdev("png");plsfnam("intm1.png"); #plsdev("psttf");plsfnam("intm1.ps"); plscolbg(255,255,255); plinit(); pladv(0); plvpor(0.1, 0.9, 0.3, 0.8); plwind(min(time),max(time), min(emfh),max(emfh)); #plenv(min(time),max(time), min(emfh),max(emfh),0,-1); plwid(2); pllsty(1);plcol0(14); plline(time,emfh) pllsty(1);plcol0(1); plbox("bnit", 0, 0, "bntv", 0, 0); pllab("TIME","E#dz","#gy=0"); plend() |