Interface NmrJcampInfo

interface NmrJcampInfo {
    dataType?: string;
    decim?: number;
    digitalFilter?: number;
    dspfvs?: number;
    isFid: boolean;
    origin?: string;
    originFrequency: number;
    owner?: string;
    title?: string;
    xFactor?: number;
    xUnits?: string;
    yFactor?: number;
    yUnits?: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

dataType?: string

type of data

''
decim?: number

metadata to calculate the digitalFilter value

digitalFilter?: number

the number of points to be shifted at the moment to apply FFT, only needed for RAW data

dspfvs?: number

metadata to calculate the digitalFilter value

isFid: boolean

used internally to scale the x axis

origin?: string

origin of the file

''
originFrequency: number

origin frequency of the spectrum

owner?: string

owner of the file

''
title?: string

title of the file

''
xFactor?: number

factor to multiply X values

1
xUnits?: string

units for the x axis

'Combination of label and units from variable'
yFactor?: number

factor to multiply Y values

1
yUnits?: string

units for the y axis

'Combination of label and units from variable'