spc-parser
    Preparing search index...

    Interface UvProbeMeta

    Metadata extracted from a Shimadzu UVProbe .spc file.

    interface UvProbeMeta {
        date?: string;
        kind: "flat" | "ole";
        numberPoints: number;
        properties: Record<string, Record<string, string>>;
        title?: string;
    }
    Index

    Properties

    date?: string

    Acquisition date as an ISO string, when stored in the file.

    undefined
    
    kind: "flat" | "ole"

    Container/encoding variant of the UVProbe export. ole is the compound-document project file; flat is the raw single-spectrum dump.

    numberPoints: number

    Number of data points.

    properties: Record<string, Record<string, string>>

    Property sections (e.g. Measurement Properties, Instrument Properties), each a map of key/value strings. Only populated for the ole variant.

    {}
    
    title?: string

    Sample title, when stored in the file.

    undefined