Re: SciPy and NetCDF

2005-08-04 Thread Scott Kilpatrick
Thanks for your help guys! That cleared some stuff up for me. Now I just have to wait for the sysadmin to get back from his vacation, bah. Scott -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-27 Thread Scott Kilpatrick
So wherever pycdf does a: from Numeric import * what is the equivalent for SciPy? i.e. where is the full Numeric module in SciPy? -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-27 Thread Robert Kern
Scott Kilpatrick wrote: So wherever pycdf does a: from Numeric import * what is the equivalent for SciPy? i.e. where is the full Numeric module in SciPy? Scipy also does a from Numeric import * Numeric isn't contained within Scipy; Scipy uses Numeric like pycdf does. -- Robert Kern

Re: SciPy and NetCDF

2005-07-27 Thread Scott Kilpatrick
Oh ok, so if my sysadmin installs SciPy, then to get the netCDF support we need he just needs to then install pycdf? I really appreciate the help. Scott -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-27 Thread Robert Kern
Scott Kilpatrick wrote: Oh ok, so if my sysadmin installs SciPy, then to get the netCDF support we need he just needs to then install pycdf? 1. Install Numeric. 2. Install Scipy. 3. Install pycdf. Numeric is not, yet, bundled into Scipy. -- Robert Kern [EMAIL PROTECTED] In the fields of

Re: SciPy and NetCDF

2005-07-27 Thread Rocco Moretti
Scott Kilpatrick wrote: So wherever pycdf does a: from Numeric import * what is the equivalent for SciPy? i.e. where is the full Numeric module in SciPy? Python packages are in a pretty flat hierarchy. There really isn't a SciPy Numeric and a pycdf Numeric - Numeric, as an independant

SciPy and NetCDF

2005-07-26 Thread [EMAIL PROTECTED]
I am going to be doing a lot of work with large data sets stored in various netCDF files, and after checking out the alternatives, I would really like to go with SciPy. The problem is that SciPy offers no native netCDF support. I have checked out pycdf at http://pysclint.sourceforge.net/pycdf/,

Re: SciPy and NetCDF

2005-07-26 Thread Rocco Moretti
[EMAIL PROTECTED] wrote: I am going to be doing a lot of work with large data sets stored in various netCDF files, and after checking out the alternatives, I would really like to go with SciPy. The problem is that SciPy offers no native netCDF support. You may be having an issue because

Re: SciPy and NetCDF

2005-07-26 Thread [EMAIL PROTECTED]
Also, I am aware that ScientificPython offers netCDF support, but its lack of robust documentation is a big downer. Plus we haven't been able to successfully install it yet. Scott -- http://mail.python.org/mailman/listinfo/python-list

Re: SciPy and NetCDF

2005-07-26 Thread Robert Kern
[EMAIL PROTECTED] wrote: I am going to be doing a lot of work with large data sets stored in various netCDF files, and after checking out the alternatives, I would really like to go with SciPy. The problem is that SciPy offers no native netCDF support. I have checked out pycdf at