- Scientific applications are known for their ability to generate huge amounts of data which are sometimes hard to manage. This page lists some of the tools which have been made available for interfacing with standard scientific file formats, as well as Python-specific tools for manipulating arrays and text files.
Interfaces to Standard Formats
- NetCDF Interfaces
Interface to [http://www.unidata.ucar.edu/packages/netcdf/ Unidata NetCDF] array-oriented data interface files.
+ [http://starship.python.net/crew/hinsen/scientific.html NetCDF interface] - NetCDF interface that makes array variables look like
NumPy arrays. (Konrad Hinsen)
+ [http://snow.cit.cornell.edu/noon/ncmodule.html NetCDF interface] - Interface to NetCDF portable data files (William
- Noon)
+ [http://www.geog.ubc.ca/~kschalmNetCDF interface] - A Numeric-Python aware NetCDF portable data file
- interface (Kyle Schalm)
+ [http://www.pyngl.ucar.edu/Nio.shtml PyNIO] - A Numeric-based Python package that allows read and/or write access to a variety of data formats (NetCDF, HDF 4, GRIB) using an interface modelled on Konrad Hinsen's [http://starship.python.net/crew/hinsen/scientific.html NetCDF interface].
+ [http://www.pyacts.org/pypnetcdf PyPnetCDF] - A Numeric-based Python package that allows read and/or write access to NetCDF file in a parallel environment using MPI and an interface to the [http://www-unix.mcs.anl.gov/parallel-netcdf/ PnetCDF] library. The object PNetCDFVariable and PNetCDFFile are very similar to Konrad Hinsen's definitions but PyPnetCDF implements a parallel access in a transparent and simple way to the programmer.
+ [http://code.google.com/p/netcdf4-python/ netcdf4-python] - python/numpy interface to netCDF version 4 library. netCDF version 4 has many features not found in earlier versions of the library, such as hierarchical groups, zlib compression, multiple unlimited dimensions, and new data types. It is implemented on top of HDF5. This module implements many of the new features, and can read and write netCDF files compatibile with older versions of the library. The API is modelled after Scientific.IO.NetCDF, and should be familiar to users of that module (Jeff Whitaker).
+ [http://taoetc.org/24 pupynere] - a PUre PYthon NEtcdf REader. It allows read-access to netCDF files using the same syntax as the Scientific.IO.NetCDF module.
- PyPDB is an interface to the PDB Portable Data Format library which is part
- of the PACT system (by the LLNL crew). It is available as part of the LLNLPython distribution.
- HDF5 interfaces
Interface to the [http://hdf.ncsa.uiuc.edu/HDF5/ HDF5] format (hierachically organised datasets).
+ [ftp://ftp.ncsa.uiuc.edu/HDF/HDF5/contrib/hl-hdf5/README.html PyHL interface] - A High Level Interface to the HDF5 File Format. (Anders Henja and Daniel B. Michelson)
+ [http://pytables.sf.net/ PyTables interface] - HDF5 interface with full support of 64-bit data address and data indexing. (Carabos Coop. V.)
Python-specific Tools
[http://php.iupui.edu/~mmiller3/python/#TableIO TableIO] by Mike Miller.
- "When I first started using Python, I wanted to read lots of numbers into
NumPy arrays. This can be done with the standard Python file reading methods, but I found that to be prohibitively slow for largish data sets. So I wrote TableIO (_tableio.c and TableIO.py), which lets me start with a file containing a rectangular array of ASCII data (a `table') and read it into Python so I can manipulate it. For example, if I have a file containing an table in a file with 10 columns and 50 rows, I can use
>>> d = TableIO.readTableAsArray(file)
to get an array with shape (50,10). If I only want to read a couple of columns,say the first and ninth and tenth, I can use
>>> [x, y, dy] = TableIO.readColumns(file, [0, 8, 9])
to read the first column in to the 1D array x and the eigth and ninth into yand dy."
- "When I first started using Python, I wanted to read lots of numbers into
[http://starship.python.net/crew/hinsen/scientific.html FortranFormat.py] by Konrad Hinsen.
- "This module provides two classes that aid in reading and writing Fortran-formatted text files. Only a subset of formatting options is supported: A, D, E, F, G, I, and X formats, plus string constants for output. Repetition (e.g. 4I5 or 3(1X,A4)) is supported. Complex numbers are not supported; you have to treat real and imaginary parts separately."
[http://starship.python.net/~da/Travis/numpyio/ numpyio] by Travis Oliphant.
- "Once compiled, numpyio is a loadable module that can be used in python for reading and writing arbitrary binary data to and from Numerical Python arrays. I work in Medical Imaging and often have large data sets to manipulate. I do much of my interactive data analysis with MATLAB, however, only having doubles to work with really puts a crimp on the sizes of the data sets I can manipulate. The fact that Numerical Python has more data types defined than doubles encouraged me to try it out. I have been very impressed with its speed and utility, but I needed some way to read large data sets from an arbitrary binary file into Numerical Python arrays. I didn't see any obvious way to do this so I wrote an extension module. Although there is not much documentation, having the sources available is ultimately better than documentation. But, as this is my first extension module, my style may not be elegant as I may not be using the correct APIs. Feel free to send me corrections."