ncl for os x 10.4

From: James McPhee <jmcphee_at_nyahnyahspammersnyahnyah>
Date: Mon, 05 Jun 2006 10:27:35 -0700

Hi,
I'm trying to install ncl on os x tiger using fink, but i get the
following error:

> sun-4292bh:~ jmcphee$ fink install ncl
> Password:
> Information about 1767 packages read in 3 seconds.
> The following package will be installed or updated:
> ncl
> curl -f -L -O http://ngwww.ucar.edu/ngbin/ncl-4.2.0.a032.Panther_GNU_MAC.tar.gz
> % Total % Received % Xferd Average Speed Time Time Time Current
> Dload Upload Total Spent Left Speed
> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
> curl: (22) The requested URL returned error: 404
> ### execution of curl failed, exit code 22
> Downloading the file "ncl-4.2.0.a032.Panther_GNU_MAC.tar.gz" failed.
>
> (1) Give up
> (2) Retry the same mirror

I'll appreciate any help offered...

James

Dennis Shea wrote:
> On Sun, 4 Jun 2006, Siraj Ul Islam wrote:
>> Dear All,
>> I an having a model out put data in netcdf format for ten years. this
>> data
>> is monthly data. What I want to is to make sorting of data in each
>> grid cell
>> and want to display it after calculating 9th percentile (as for
>> percentile
>> calculation sorting is the first step) calculation. Actually I want to
>> display number of days in each grid box. Is there any FORTRAN code or NCL
>> code which can sort my Grided data.
>> Thanks in advance
> --------------------------------------------------
> The following will do the sort:
>
> http://www.ncl.ucar.edu/Document/Functions/Built-in/dim_pqsort.shtml
>
> --------------
> f = addfile ("foo.nc" , "r")
> x = f->xData ; (time,lat,lon)
>
> dimx = dimsizes( x )
> ntim = dimx(0)
>
>
> xSort = x(lat|:,lon|:,time|:)
> ; sort
> iSort = dim_avg( xSort, 2 ) ; return permutation vector (not
> used here)
> ; and
> ; values in ascending order
> printVarSummary(xSort)
>
>
> n = floattointger( (ntim-1)*0.9 ); subscript of 9th percentile
>
> data to plot
>
> xSort(:,:,n)
>
> good luck
>
>
>
>
> _______________________________________________
> ncl-talk mailing list
> ncl-talk_at_ucar.edu
> http://mailman.ucar.edu/mailman/listinfo/ncl-talk
>
_______________________________________________
ncl-talk mailing list
ncl-talk_at_ucar.edu
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Mon Jun 05 2006 - 11:27:35 MDT

This archive was generated by hypermail 2.2.0 : Mon Jun 05 2006 - 14:29:35 MDT