PDL::IO::FlexRaw

PDL::IO::FlexRaw is a flexible binary i/o format for PerlDL.
Download

PDL::IO::FlexRaw Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Robin Williams
  • Publisher web site:
  • http://search.cpan.org/~kgb/PDL-2.3.2/IO/FlexRaw/FlexRaw.pm

PDL::IO::FlexRaw Tags


PDL::IO::FlexRaw Description

PDL::IO::FlexRaw is a flexible binary i/o format for PerlDL. PDL::IO::FlexRaw is a flexible binary I/O format for PerlDL.SYNOPSIS use PDL; use PDL::IO::FlexRaw; ($x,$y,...) = readflex("filename" ) ($x,$y,...) = mapflex("filename" ) $hdr = writeflex($file, $pdl1, $pdl2,...) writeflexhdr($file, $hdr)FlexRaw is a generic method for the input and output of `raw' data arrays. In particular, it is designed to read output from FORTRAN 77 UNFORMATTED files and the low-level C write function, even if the files are compressed or gzipped. As in FastRaw, the data file is supplemented by a header file (although this can be replaced by the optional $hdr argument). More information can be included in the header file than for FastRaw -- the description can be extended to several data objects within a single input file.For example, to read the output of a FORTRAN program real*4 a(4,600,600) open (8,file='banana',status='new',form='unformatted') write (8) a close (8)the header file (`banana.hdr') could look like # FlexRaw file header # Header word for F77 form=unformatted Byte 1 4 # Data Float 3 # this is ignored 4 600 600 Byte 1 4 As is this, as we've got all dimsThe data can then be input using $a = (readflex('banana'));The format of the hdr file is an extension of that used by FastRaw. Comment lines (starting with #) are allowed, as are descriptive names (as elsewhere: byte, short, ushort, long, float, double) for the data types -- note that case is ignored by FlexRaw. After the type, one integer specifies the number of dimensions of the data `chunk', and subsequent integers the size of each dimension. So the specifier above (`Float 3 4 600 600') describes our FORTRAN array. A scalar can be described as `float 0' (or `float 1 1', or `float 2 1 1', etc.). When all the dimensions are read -- or a # appears after whitespace -- the rest of the current input line is ignored.What about the extra 4 bytes at the head and tail, which we just threw away? These are added by FORTRAN (at least on Suns, Alphas and Linux), and specify the number of bytes written by each WRITE -- the same number is put at the start and the end of each chunk of data. You may need to know all this in some cases. In general, FlexRaw tries to handle it itself, if you simply add a line saying `f77' to the header file, before any data specifiers: # FlexRaw file header for F77 form=unformatted F77 # Data Float 3 4 600 600-- the redundancy in FORTRAN data files even allows FlexRaw to automatically deal with files written on other machines which use back-to-front byte ordering. This won't always work -- it's a 1 in 4 billion chance it won't, even if you regularly read 4Gb files! Also, it currently doesn't work for compressed files, so you can say `swap' (again before any data specifiers) to make certain the byte order is swapped.The optional $hdr argument allows the use of an anonymous array to give header information, rather than using a .hdr file. For example, $header = } ]; @a = readflex('banana',$header);reads our example file again. As a special case, when NDims is 1, Dims may be given as a scalar.Within PDL, readflex and writeflex can be used to write several pdls to a single file -- e.g. use PDL; use PDL::IO::FastRaw; @pdls = ($pdl1, $pdl2, ...); $hdr = writeflex("fname",@pdls); @pdl2 = readflex("fname",$hdr); writeflexhdr("fname",$hdr); @pdl3 = readflex("fname");-- writeflex produces the data file and returns the file header as an anonymous hash, which can be written to a .hdr file using writeflexhdr.The reading of compressed data is switched on automatically if the filename requested ends in .gz or .Z, or if the originally specified filename does not exist, but one of these compressed forms does.Mapflex memory maps, rather than reads, the data files. Its interface is similar to `readflex'. Extra options specify if the data is to be loaded `ReadOnly', if the data file is to be `Creat'-ed anew on the basis of the header information or `Trunc'-ated to the length of the data read. The extra speed of access brings with it some limitations: mapflex won't read compressed data, auto-detect f77 files or read f77 files written by more than a single unformatted write statement. More seriously, data alignment constraints mean that mapflex cannot read some files, depending on the requirements of the host OS (it may also vary depending on the setting of the `uac' flag on any given machine). You may have run into similar problems with common blocks in FORTRAN.For instance, floating point numbers may have to align on 4 byte boundaries -- if the data file consists of 3 bytes then a float, it cannot be read. Mapflex will warn about this problem when it occurs, and return the PDLs mapped before the problem arose. This can be dealt with either by reorganizing the data file (large types first helps, as a rule-of-thumb), or more simply by using `readflex'. Requirements: · Perl


PDL::IO::FlexRaw Related Software