<div dir="ltr">Hi Jennifer,<br><br>Thansk for your reply but using appending -ap doesn&#39;t make any difference. I am again pasting my question down for you. Please open any data and and display both the variables before writing and then display the newly written variables after opening the new file. You will clearly see the difference. Myy last question is pasted again to reconsider if you can click it:<br>
******************************************************************************<br>Dear GrADS users,<br>
<br>
I have 2 spatial variables in one file. I wanted to do some operation<br>
on each one and wanted to save 2 new variables in a new GrADS file. I<br>
am doing some thing as given below:<br>
<br>
&#39;open File.ctl&#39;<br>
&#39;set gxout fwrite&#39;<br>
&#39;set fwrite -ap NEW_FILE.dat&#39;<br>
t=1                       ********************T=1 is Jan1900 and it is<br>
monthly data<br>
tmax=60<br>
while (t&lt;=tmax)<br>
&#39;set t &#39;t<br>
&#39;d aave(temp,lon=-150,lon=-90,lat=-5,lat=5)&#39;<br>&#39;d aave(temp,lon=160,lon=210,lat=-5,lat=5)&#39;<br>t=t+1<br>endwhile<br>&#39;disable fwrite&#39;<br>********************************<br>As the new variables are a 1-D time series, so my ctl file to open<br>
newly written data file is as:<br>dset NEW_FILE.dat<br>title N3 and N4 indices<br>undef -9.99e+08<br>xdef 1 linear 1 1<br>ydef 1 linear 1 1<br>zdef 1 linear 1 1<br>tdef 103 linear jan1900 1yr<br>vars 2<br>
<div>N3   0 99  N3 variable<br>N4   0 99  N4 variable<br>endvars<br><br>It works fine but it looks that the values of both variables are not<br>representing to original values. How can I work with two or more <br>variables in one file?Thanks,<br>
Mubashar<br>
</div>*****************************************************<br>From: Jennifer Adams &lt;<a href="mailto:jma@cola.iges.org">jma@cola.iges.org</a>&gt;<br>
Subject: Re: [gradsusr] saving more than one variable in one file<br>
To: GrADS Users Forum &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:EA8F4F69-2E29-4827-A703-D42BA6B88308@cola.iges.org">EA8F4F69-2E29-4827-A703-D42BA6B88308@cola.iges.org</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
Use the -ap flag with &#39;set fwrite&#39; to append to an existing file. Also, 
it is not necessary to define N3 and N4 before displaying them -- why 
waste the memory? Simply change your &#39;define&#39; to a &#39;d&#39; and then you can 
remove the two &#39;d N3&#39; and &#39;d N4&#39; lines.<br>
--Jennifer<br><br><br><br><br><br><div class="gmail_quote">On Tue, Sep 25, 2012 at 6:27 PM,  <span dir="ltr">&lt;<a href="mailto:gradsusr-request@gradsusr.org" target="_blank">gradsusr-request@gradsusr.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Send gradsusr mailing list submissions to<br>
        <a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:gradsusr-request@gradsusr.org">gradsusr-request@gradsusr.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:gradsusr-owner@gradsusr.org">gradsusr-owner@gradsusr.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of gradsusr digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. If else condition in GRADS (Mubashar Dogar)<br>
   2. Re: If else condition in GRADS (M.Adnan Abid)<br>
   3. Help with wind barb? (Howard Staines)<br>
   4. Re: If else condition in GRADS ( ?? )<br>
   5. saving more than one variable in one file (Mubashar Dogar)<br>
   6. Why fwrite writes more data? (Rupak Rajbhandari)<br>
   7. Re: saving more than one variable in one file (Jennifer Adams)<br>
   8. Re: Why fwrite writes more data? (Jennifer Adams)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 24 Sep 2012 19:05:04 +0300<br>
From: Mubashar Dogar &lt;<a href="mailto:mubashardogar@gmail.com">mubashardogar@gmail.com</a>&gt;<br>
Subject: [gradsusr] If else condition in GRADS<br>
To: gradsusr &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAHBht21wno-ztQDt1Zm0Tq%2Becu_SZTamuAgKhMy6fjf9EdFWxQ@mail.gmail.com">CAHBht21wno-ztQDt1Zm0Tq+ecu_SZTamuAgKhMy6fjf9EdFWxQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Dear GrADS users,<br>
<br>
I have 30 years time series data in a file named &quot;File.ctl&quot;. The name<br>
of the variable in the file is &quot;output&quot; and it has different value for<br>
each year.<br>
<br>
I wanted to use if/else in GrADS. My condition is that if my output<br>
value is greater than &quot;0&quot; then write a new variable as &quot;alpha=0.4&quot;<br>
else &quot;alpha=0&quot;.<br>
<br>
Following are few lines that I tried but it is only saving one value<br>
for each year<br>
&#39;open File.ctl&#39;<br>
&#39;set gxout fwrite &#39;<br>
&#39;set fwrite alpha.dat&#39;<br>
&#39;set t 1 30&#39;<br>
if (output&gt;0)<br>
&#39;define alpha=0.4&#39;<br>
else<br>
&#39;define alpha=0&#39;<br>
endif<br>
&#39;d alpha&#39;<br>
But it is giving only one value that is 0.4 for all years. what&#39;s wrong in this?<br>
<br>
Thanks,<br>
<br>
Mubashar<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 24 Sep 2012 19:24:33 +0300<br>
From: &quot;M.Adnan Abid&quot; &lt;<a href="mailto:madnanabid@gmail.com">madnanabid@gmail.com</a>&gt;<br>
Subject: Re: [gradsusr] If else condition in GRADS<br>
To: GrADS Users Forum &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAL%2BVpnv%2BGkbxdqD9AUd_mzbzCJx1tS%2BodgpDOhKgfY8fu_Nv4g@mail.gmail.com">CAL+Vpnv+GkbxdqD9AUd_mzbzCJx1tS+odgpDOhKgfY8fu_Nv4g@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Hi Mubashar<br>
<br>
Try maskout function<br>
<br>
Adnan<br>
<br>
On Mon, Sep 24, 2012 at 7:05 PM, Mubashar Dogar &lt;<a href="mailto:mubashardogar@gmail.com">mubashardogar@gmail.com</a>&gt; wrote:<br>
&gt; Dear GrADS users,<br>
&gt;<br>
&gt; I have 30 years time series data in a file named &quot;File.ctl&quot;. The name<br>
&gt; of the variable in the file is &quot;output&quot; and it has different value for<br>
&gt; each year.<br>
&gt;<br>
&gt; I wanted to use if/else in GrADS. My condition is that if my output<br>
&gt; value is greater than &quot;0&quot; then write a new variable as &quot;alpha=0.4&quot;<br>
&gt; else &quot;alpha=0&quot;.<br>
&gt;<br>
&gt; Following are few lines that I tried but it is only saving one value<br>
&gt; for each year<br>
&gt; &#39;open File.ctl&#39;<br>
&gt; &#39;set gxout fwrite &#39;<br>
&gt; &#39;set fwrite alpha.dat&#39;<br>
&gt; &#39;set t 1 30&#39;<br>
&gt; if (output&gt;0)<br>
&gt; &#39;define alpha=0.4&#39;<br>
&gt; else<br>
&gt; &#39;define alpha=0&#39;<br>
&gt; endif<br>
&gt; &#39;d alpha&#39;<br>
&gt; But it is giving only one value that is 0.4 for all years. what&#39;s wrong in this?<br>
&gt;<br>
&gt; Thanks,<br>
&gt;<br>
&gt; Mubashar<br>
&gt; _______________________________________________<br>
&gt; gradsusr mailing list<br>
&gt; <a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
&gt; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Tue, 25 Sep 2012 06:42:03 +1200<br>
From: Howard Staines &lt;<a href="mailto:metris@clear.net.nz">metris@clear.net.nz</a>&gt;<br>
Subject: [gradsusr] Help with wind barb?<br>
To: <a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
Message-ID: &lt;050601cd9a84$4a3f10a0$debd31e0$@<a href="http://net.nz" target="_blank">net.nz</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Your script below ...<br>
You set your background to white ... the default is black.<br>
<br>
So to get a black barb color<br>
<br>
<br>
&#39;set lat 32&#39;<br>
&#39;set lon 35&#39;<br>
&#39;set grads off&#39;<br>
&#39;set timelab off&#39;<br>
&#39;set parea 0.5 10.7 6.7 8.2&#39;<br>
&#39;set frame on&#39;<br>
&#39;set xlab off&#39;<br>
&#39;set t &#39;t1&#39; &#39;t2&#39;&#39;<br>
&#39;set gxout tserbarb&#39;<br>
&#39;set digsiz 0.05&#39;<br>
&#39;set lev 925&#39;<br>
&#39;set line color &#39;<br>
<br>
This should be<br>
&#39;set line 1&#39;<br>
<br>
This may fix the boundary issue as well<br>
The grads default colours numbers are<br>
<br>
0 same as the background (in your script white)<br>
&amp;<br>
1 a foreground color ... ie either black or white depending on the<br>
background, so on a background<br>
Of white ... the foreground color would be black (that&#39;s the way I<br>
understand it)<br>
<br>
<br>
<br>
<br>
&#39;d gr2stn(ugrdprs, 35, 32);gr2stn(vgrdprs, 35, 32)&#39;<br>
<br>
<br>
<br>
Regards<br>
<br>
Howard Staines<br>
<br>
     Metris Limited<br>
<br>
WEATHER FORECAST SERVICES<br>
<br>
phone 0800 372 433 - mobile 027 2785586 - P O Box 24 FEATHERSTON<br>
email <a href="mailto:info@metris.co.nz">info@metris.co.nz</a> - <a href="mailto:info@metscape.net.nz">info@metscape.net.nz</a> - website <a href="http://www.metris.co.nz" target="_blank">www.metris.co.nz</a> -<br>
<a href="http://www.metscape.net.nz" target="_blank">www.metscape.net.nz</a><br>
<br>
<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Tue, 25 Sep 2012 11:53:58 +0800<br>
From: &quot; ?? &quot; &lt;<a href="mailto:497805453@qq.com">497805453@qq.com</a>&gt;<br>
Subject: Re: [gradsusr] If else condition in GRADS<br>
To: &quot; GrADS Users Forum &quot; &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:tencent_481D24560D23DEDA794F3A04@qq.com">tencent_481D24560D23DEDA794F3A04@qq.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;gb18030&quot;<br>
<br>
Hi,Mubashar<br>
 there is an example  GrADS Function Documentation,here is the link:<br>
 <a href="http://grads.iges.org/grads/gadoc/gradfuncconst.html" target="_blank">http://grads.iges.org/grads/gadoc/gradfuncconst.html</a><br>
<br>
 use const and maskout function together.<br>
<br>
 Qingfeng<br>
<br>
<br>
<br>
<br>
 ------------------ Original ------------------<br>
  From:  &quot;Mubashar Dogar&quot;&lt;<a href="mailto:mubashardogar@gmail.com">mubashardogar@gmail.com</a>&gt;;<br>
 Date:  Tue, Sep 25, 2012 00:05 AM<br>
 To:  &quot;gradsusr&quot;&lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;;<br>
<br>
 Subject:  [gradsusr] If else condition in GRADS<br>
<br>
<br>
<br>
Dear GrADS users,<br>
<br>
I have 30 years time series data in a file named &quot;File.ctl&quot;. The name<br>
of the variable in the file is &quot;output&quot; and it has different value for<br>
each year.<br>
<br>
I wanted to use if/else in GrADS. My condition is that if my output<br>
value is greater than &quot;0&quot; then write a new variable as &quot;alpha=0.4&quot;<br>
else &quot;alpha=0&quot;.<br>
<br>
Following are few lines that I tried but it is only saving one value<br>
for each year<br>
&#39;open File.ctl&#39;<br>
&#39;set gxout fwrite &#39;<br>
&#39;set fwrite alpha.dat&#39;<br>
&#39;set t 1 30&#39;<br>
if (output&gt;0)<br>
&#39;define alpha=0.4&#39;<br>
else<br>
&#39;define alpha=0&#39;<br>
endif<br>
&#39;d alpha&#39;<br>
But it is giving only one value that is 0.4 for all years. what&#39;s wrong in this?<br>
<br>
Thanks,<br>
<br>
Mubashar<br>
_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20120925/4b008327/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20120925/4b008327/attachment-0001.html</a><br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Tue, 25 Sep 2012 12:20:08 +0300<br>
From: Mubashar Dogar &lt;<a href="mailto:mubashardogar@gmail.com">mubashardogar@gmail.com</a>&gt;<br>
Subject: [gradsusr] saving more than one variable in one file<br>
To: gradsusr &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAHBht208O8gmgQOT4_NQnHsCwm2X1gtCh0u1Mm454wfYKyw3qw@mail.gmail.com">CAHBht208O8gmgQOT4_NQnHsCwm2X1gtCh0u1Mm454wfYKyw3qw@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Dear GrADS users,<br>
<br>
I have 2 spatial variables in one file. I wanted to do some operation<br>
on each one and wanted to save 2 new variables in a new GrADS file. I<br>
am doing some thing as given below:<br>
<br>
&#39;open File.ctl&#39;<br>
&#39;set gxout fwrite&#39;<br>
&#39;set fwrite NEW_FILE.dat&#39;<br>
t=1                       ********************T=1 is Jan1900 and it is<br>
monthly data<br>
tmax=60<br>
while (t&lt;=tmax)<br>
&#39;set t &#39;t<br>
&#39;define N3=aave(temp,lon=-150,lon=-90,lat=-5,lat=5)&#39;<br>
&#39;define N4=aave(temp,lon=160,lon=210,lat=-5,lat=5)&#39;<br>
&#39;d N3&#39;<br>
&#39;d N4&#39;<br>
t=t+1<br>
endwhile<br>
&#39;disable fwrite&#39;<br>
********************************<br>
As the new variables are a 1-D time series, so my ctl file to open<br>
newly written data file is as:<br>
<br>
dset NEW_FILE.dat<br>
title N3 and N4 indices<br>
undef -9.99e+08<br>
xdef 1 linear 1 1<br>
ydef 1 linear 1 1<br>
zdef 1 linear 1 1<br>
tdef 103 linear jan1900 1yr<br>
vars 2<br>
N3   0 99  N3 variable<br>
N4   0 99  N4 variable<br>
endvars<br>
<br>
It works fine but it looks that the values of both variables are not<br>
representing to original values. How can I work with two or more<br>
variables in one file?<br>
<br>
Thanks,<br>
<br>
Mubashar<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Tue, 25 Sep 2012 21:04:05 +0545<br>
From: Rupak Rajbhandari &lt;<a href="mailto:rupak.rajbhandari@gmail.com">rupak.rajbhandari@gmail.com</a>&gt;<br>
Subject: [gradsusr] Why fwrite writes more data?<br>
To: GrADS Users Forum &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID:<br>
        &lt;CAPUBxUQ_L4XXEHd0=<a href="mailto:LvuY612DqrGL4WzKiviWyPwAL6QTNFPuQ@mail.gmail.com">LvuY612DqrGL4WzKiviWyPwAL6QTNFPuQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi all,<br>
<br>
Greetings!<br>
<br>
PRINCETON University generated Hydroclimatology corrected NetCDF global 1<br>
degree temperature file or data  (eg. <a href="http://tmax_daily_1970-1970.nc" target="_blank">tmax_daily_1970-1970.nc</a>) has<br>
dimension of 360x180. When I write the data to a file using fwrite command,<br>
it says &quot;wrote 65160 of 65160 elements ...&quot;, which is 360x181 and the image<br>
is distorted. Could someone experienced in NetCDF file explain to US<br>
(novice in NetCDF), why and what is happening and perhaps how to correct?<br>
<br>
Thanks for the help!<br>
<br>
-rupak<br>
<br>
Rupak Rajbhandari<br>
Department of Meteorology<br>
TriChandra College<br>
Kathmandu, NEPAL<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20120925/7a85d30c/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20120925/7a85d30c/attachment-0001.html</a><br>
<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Tue, 25 Sep 2012 11:24:49 -0400<br>
From: Jennifer Adams &lt;<a href="mailto:jma@cola.iges.org">jma@cola.iges.org</a>&gt;<br>
Subject: Re: [gradsusr] saving more than one variable in one file<br>
To: GrADS Users Forum &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:EA8F4F69-2E29-4827-A703-D42BA6B88308@cola.iges.org">EA8F4F69-2E29-4827-A703-D42BA6B88308@cola.iges.org</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
Use the -ap flag with &#39;set fwrite&#39; to append to an existing file. Also, it is not necessary to define N3 and N4 before displaying them -- why waste the memory? Simply change your &#39;define&#39; to a &#39;d&#39; and then you can remove the two &#39;d N3&#39; and &#39;d N4&#39; lines.<br>

--Jennifer<br>
<br>
<br>
On Sep 25, 2012, at 5:20 AM, Mubashar Dogar wrote:<br>
<br>
&gt; Dear GrADS users,<br>
&gt;<br>
&gt; I have 2 spatial variables in one file. I wanted to do some operation<br>
&gt; on each one and wanted to save 2 new variables in a new GrADS file. I<br>
&gt; am doing some thing as given below:<br>
&gt;<br>
&gt; &#39;open File.ctl&#39;<br>
&gt; &#39;set gxout fwrite&#39;<br>
&gt; &#39;set fwrite NEW_FILE.dat&#39;<br>
&gt; t=1                       ********************T=1 is Jan1900 and it is<br>
&gt; monthly data<br>
&gt; tmax=60<br>
&gt; while (t&lt;=tmax)<br>
&gt; &#39;set t &#39;t<br>
&gt; &#39;define N3=aave(temp,lon=-150,lon=-90,lat=-5,lat=5)&#39;<br>
&gt; &#39;define N4=aave(temp,lon=160,lon=210,lat=-5,lat=5)&#39;<br>
&gt; &#39;d N3&#39;<br>
&gt; &#39;d N4&#39;<br>
&gt; t=t+1<br>
&gt; endwhile<br>
&gt; &#39;disable fwrite&#39;<br>
&gt; ********************************<br>
&gt; As the new variables are a 1-D time series, so my ctl file to open<br>
&gt; newly written data file is as:<br>
&gt;<br>
&gt; dset NEW_FILE.dat<br>
&gt; title N3 and N4 indices<br>
&gt; undef -9.99e+08<br>
&gt; xdef 1 linear 1 1<br>
&gt; ydef 1 linear 1 1<br>
&gt; zdef 1 linear 1 1<br>
&gt; tdef 103 linear jan1900 1yr<br>
&gt; vars 2<br>
&gt; N3   0 99  N3 variable<br>
&gt; N4   0 99  N4 variable<br>
&gt; endvars<br>
&gt;<br>
&gt; It works fine but it looks that the values of both variables are not<br>
&gt; representing to original values. How can I work with two or more<br>
&gt; variables in one file?<br>
&gt;<br>
&gt; Thanks,<br>
&gt;<br>
&gt; Mubashar<br>
&gt; _______________________________________________<br>
&gt; gradsusr mailing list<br>
&gt; <a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
&gt; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br>
--<br>
Jennifer M. Adams<br>
IGES/COLA<br>
4041 Powder Mill Road, Suite 302<br>
Calverton, MD 20705<br>
<a href="mailto:jma@cola.iges.org">jma@cola.iges.org</a><br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20120925/36e68c52/attachment-0001.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20120925/36e68c52/attachment-0001.html</a><br>
<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Tue, 25 Sep 2012 11:27:52 -0400<br>
From: Jennifer Adams &lt;<a href="mailto:jma@cola.iges.org">jma@cola.iges.org</a>&gt;<br>
Subject: Re: [gradsusr] Why fwrite writes more data?<br>
To: GrADS Users Forum &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:2A3717FF-B4CD-4DE0-B6C5-A7467895332C@cola.iges.org">2A3717FF-B4CD-4DE0-B6C5-A7467895332C@cola.iges.org</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Be sure to use the &#39;set x&#39; and &#39;set y&#39; commands to set the dimension environment to the exact grid dimensions before using fwrite. By default, when GrADS opens a global data set, it invokes a &#39;set lon 0 360&#39; command which can add an extra column to the fwrite output. --Jennifer<br>

<br>
<br>
<br>
On Sep 25, 2012, at 11:19 AM, Rupak Rajbhandari wrote:<br>
<br>
&gt; Hi all,<br>
&gt;<br>
&gt; Greetings!<br>
&gt;<br>
&gt; PRINCETON University generated Hydroclimatology corrected NetCDF global 1 degree temperature file or data  (eg. <a href="http://tmax_daily_1970-1970.nc" target="_blank">tmax_daily_1970-1970.nc</a>) has dimension of 360x180. When I write the data to a file using fwrite command, it says &quot;wrote 65160 of 65160 elements ...&quot;, which is 360x181 and the image is distorted. Could someone experienced in NetCDF file explain to US (novice in NetCDF), why and what is happening and perhaps how to correct?<br>

&gt;<br>
&gt; Thanks for the help!<br>
&gt;<br>
&gt; -rupak<br>
&gt;<br>
&gt; Rupak Rajbhandari<br>
&gt; Department of Meteorology<br>
&gt; TriChandra College<br>
&gt; Kathmandu, NEPAL<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; gradsusr mailing list<br>
&gt; <a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
&gt; <a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br>
--<br>
Jennifer M. Adams<br>
IGES/COLA<br>
4041 Powder Mill Road, Suite 302<br>
Calverton, MD 20705<br>
<a href="mailto:jma@cola.iges.org">jma@cola.iges.org</a><br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://gradsusr.org/pipermail/gradsusr/attachments/20120925/db4e680b/attachment.html" target="_blank">http://gradsusr.org/pipermail/gradsusr/attachments/20120925/db4e680b/attachment.html</a><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br>
<br>
End of gradsusr Digest, Vol 31, Issue 32<br>
****************************************<br>
</blockquote></div><br><br clear="all"><br>-- <br>Muhammad Mubashar Ahmad Dogar<br>Scientific Officer (Climatology Section),<br>Global Change Impact Studies Centre (GCISC),<br>NCP complex, Quaid-e-Azam University Campus,<br>
Shahdra road, Islamabad, Pakistan.<br>Tel:  +92519230226<br>Mob:+923315144169<br>email: <a href="mailto:mubashardogar@yahoo.com">mubashardogar@yahoo.com</a><br>          <a href="mailto:mubashar.ahmad@gcisc.org.pk">mubashar.ahmad@gcisc.org.pk</a><br>

</div>