Extracting data points from .xmt xscope file

Technical questions regarding the XTC tools and programming with XMOS.
User avatar
marcoandarcia
Member++
Posts: 16
Joined: Wed Apr 15, 2015 9:31 am

Extracting data points from .xmt xscope file

Post by marcoandarcia »

Hello everyone,

I am new to using Xscope. I would like to extract the data points from the .xmt file gerenated after run time by xScope. I Know how to visualize it on xTime Composer but I would like to plot the data on a Google Spread Sheet.


Thanks in advance.
User avatar
Folknology
XCore Legend
Posts: 1274
Joined: Thu Dec 10, 2009 10:20 pm

Post by Folknology »

Although I have not used it, I believe Google docs has an ImportXml ability which may enable you to do this, however some understanding of Xpath will likely be needed. Alternatively you could write a bit of code that converted it into a more primitive format like CSV perhaps.
User avatar
marcoandarcia
Member++
Posts: 16
Joined: Wed Apr 15, 2015 9:31 am

Post by marcoandarcia »

Folknology wrote:Although I have not used it, I believe Google docs has an ImportXml ability which may enable you to do this, however some understanding of Xpath will likely be needed. Alternatively you could write a bit of code that converted it into a more primitive format like CSV perhaps.
you were right, I can store the data as an XML file, I have an XML parser that puts the data on the spreadsheet.


Thanks!