Skip to content
This repository was archived by the owner on May 6, 2024. It is now read-only.
This repository was archived by the owner on May 6, 2024. It is now read-only.

Support reading TDMS 1.0 files #6

@SewoongLee

Description

@SewoongLee

If I try to read Sample.tdms which was unit test file of TDMSReader package, following exception is occurred.

System.NotImplementedException: 'The method or operation is not implemented.'

The code is,

using System;
using FSharp.Data.Tdms;

namespace FsharpTdmsTest
{
    class Program
    {
        static void Main(string[] args)
        {
            bool ret = File.Read("Sample.tdms", true)
                .TryGetRawData("EXAMPLE", "Time",
                    out double[] data);

            Console.WriteLine("Start!");
            foreach (var d in data)
            {
                Console.WriteLine("{0}", d);
            }
            Console.WriteLine("End!");
        }
    }
}

Do you have any idea why exception is thrown for TDMS 1.0 file?

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requesthelp wantedExtra attention is needed

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions