mettekou/FSharp.Data.Tdms

Support reading TDMS 1.0 files

Opened this issue · 2 comments

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?

@SewoongLee Support for TDMS 1.0 files is not implemented.

@SewoongLee Support for TDMS 1.0 files is not implemented.

Oh I see, thank you!