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

Support reading TDMS 1.0 files #6

Open
SewoongLee opened this issue Mar 4, 2021 · 2 comments
Open

Support reading TDMS 1.0 files #6

SewoongLee opened this issue Mar 4, 2021 · 2 comments
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@SewoongLee
Copy link

SewoongLee commented Mar 4, 2021

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?

@mettekou
Copy link
Owner

mettekou commented Mar 4, 2021

@SewoongLee Support for TDMS 1.0 files is not implemented.

@mettekou mettekou added the enhancement New feature or request label Mar 4, 2021
@SewoongLee
Copy link
Author

@SewoongLee Support for TDMS 1.0 files is not implemented.

Oh I see, thank you!

@mettekou mettekou changed the title System.NotImplementedException: 'The method or operation is not implemented.' TDMS 1.0 files not supported Mar 4, 2021
@mettekou mettekou reopened this Mar 4, 2021
@mettekou mettekou changed the title TDMS 1.0 files not supported Support reading TDMS 1.0 files Mar 4, 2021
@mettekou mettekou added the help wanted Extra attention is needed label Dec 7, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants