Interface JcampInfo

interface JcampInfo {
    dataType?: string;
    origin?: string;
    owner?: string;
    title?: string;
    xFactor?: number;
    xUnits?: string;
    yFactor?: number;
    yUnits?: string;
}

Hierarchy

  • Record<string, any>
    • JcampInfo

Properties

dataType?: string

type of data

Default

''
origin?: string

origin of the file

Default

''
owner?: string

owner of the file

Default

''
title?: string

title of the file

Default

''
xFactor?: number

factor to multiply X values

Default

1
xUnits?: string

units for the x axis

Default

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

factor to multiply Y values

Default

1
yUnits?: string

units for the y axis

Default

'Combination of label and units from variable'