Re: MRF-ERROR: Is a directory

2011-03-17 Thread Peter Scott
On Thu, 17 Mar 2011 02:26:06 +0700, indrag wrote: > this is the code: > > #!/usr/bin/perl > > use NetCDF; The error is coming out of NetCDF.pm. Check all of the calls you make to functions from that module against its documentation. Did you write the progr

Re: MRF-ERROR: Is a directory

2011-03-16 Thread Uri Guttman
> "i" == indrag writes: i> #!/usr/bin/perl i> use NetCDF; use strict ; use warnings ; those ask perl to help you. always use them. you will have to declare all your vars with my when using strict but that is the point. i> if(@ARGV == 6){ that makes no sense. you look for 6 args i

Re: MRF-ERROR: Is a directory

2011-03-16 Thread indrag
} if($AZ[$j] > $AZ1 && $AZ[$j] < $AZ2 ){ $VEL[$j*$BIN_NUM+$i]= $missing_value[0]; } } } NetCDF::varput($ncid,$varid,\@start,\@count,\@VEL); NetCDF::close($ncid); } if($opt_

Re: MRF-ERROR: Is a directory

2011-03-16 Thread Bob goolsby
But, with out the context of the code B On Wed, Mar 16, 2011 at 11:44 AM, wrote: > how to overcome this error : > > MRF-ERROR: Is a directory > > > regards, > Indra > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional com

Re: MRF-ERROR: Is a directory

2011-03-16 Thread Parag Kalra
On Wed, Mar 16, 2011 at 11:44 AM, wrote: > how to overcome this error : > > MRF-ERROR: Is a directory > > > Please post the entire code. ~Parag

Re: MRF-ERROR: Is a directory

2011-03-16 Thread Shawn H Corey
On 11-03-16 02:44 PM, ind...@students.itb.ac.id wrote: how to overcome this error : MRF-ERROR: Is a directory Please show the code. -- Just my 0.0002 million dollars worth, Shawn Confusion is the first step of understanding. Programming is as much about organization and

MRF-ERROR: Is a directory

2011-03-16 Thread indrag
how to overcome this error : MRF-ERROR: Is a directory regards, Indra -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/