The Lemur File Format
Lemur files begin with a header containing data that is global to the analysis, including
some information about the source of the analysis. Following the header, the lemur file
data is organized by frame, and then by peak. Each frame contains a list of data for each
of its peaks, as follows:
Lemur Header
Frame 1 data
Peak 1 data
Peak 2 data
etc...
Peak N1 data
Frame 2 data
Peak 1 data
Peak 2 data
etc...
Peak N2 data
etc...
Frame M data
Peak 1 data
Peak 2 data
etc...
Peak NM data
end of file
The data format for Lemur headers, frames, and
peaks are listed below in the form of C structure definitions. A float
is a 32 bit floating point number, a short is a 16 bit signed integer, a unsigned short is an
unsigned 16 bit integer, a long is a signed 32 bit integer.
struct lemurHeader
{
short formatNumber;
short headerLength;
short FFTlength;
float mainLobeWidth; /* for Kaiser analysis window */
float sidelobeAttenuation; /* for Kaiser analysis window */
float analysisFrameLength;
float analysisThreshold;
float analysisRange;
float frequencyDrift;
long numberOfSamples; /* from analyzed samples file */
float analysisSampleRate; /* from analyzed samples file */
long numberOfFrames;
short originalFormatNumber;
};
The format for Lemur Pro version 4.0.1 is 4001 .
struct lemurFrame
{
unsigned short numberOfPeaks;
short featureID; /* used by the morphing algorithm */
};
struct lemurPeak
{
float magnitude;
float frequency;
float interpolatedFrequency;
short nextPeakIndex;
short label;
float thresholdClearance;
float bandwidth; /* reserved for future use */
};
Back to Exporting Postscript
Up to Lemur Documentation Index
lemur@uiuc.edu