NoahMarkowitz
NoahMarkowitz
Hi, I'm also very interested in this development. I saw that you created a new type of object called `RawEyelink`. It may make more sense to just have your `read_raw_eyelink()`...
@dominikwelke I could start writing something a basic io function. Though I don't save tobii data in its native format (if it has one) but rather save it through Matlab...
@oruebel implementing a `__getitem__` function sounds like a good idea. If you'll be loading timestamps as well then it would make sense also load the `control` values as well if...
Thanks for sharing those links. I may not have known about the `InvalidTimesTable` object and wish I did sooner before converting some data. I'll refer to these links going forward....
@rob-luke if that extension is a subclass of a `TimeSeries` then it should work the same. It would be hard to encompass all the extensions. I think just having a...
@dsleiter I was just meant that support for all `TimeSeries` subclasses may be difficult. Not impossible though. I've already worked out a way to extract channel information for an `ElectricalSeries`...
@dsleiter I agree, we would probably need separate logic for each case. If it's restricted to the `TimeSeries` subclasses that are part of primary `pynwb` package and the major extensions...
@larsoner im still interested in this. I could start with having data preloaded but ideally I, and I think everyone using NWB files, would like to have lazy loading as...
Here's a list of all the keys output from the tobii-spectrum eyetracker: ``` dict_keys(['device_time_stamp', 'system_time_stamp', 'left_gaze_point_on_display_area', 'left_gaze_point_in_user_coordinate_system', 'left_gaze_point_validity', 'left_pupil_diameter', 'left_pupil_validity', 'left_gaze_origin_in_user_coordinate_system', 'left_gaze_origin_in_trackbox_coordinate_system', 'left_gaze_origin_validity', 'right_gaze_point_on_display_area', 'right_gaze_point_in_user_coordinate_system', 'right_gaze_point_validity', 'right_pupil_diameter', 'right_pupil_validity', 'right_gaze_origin_in_user_coordinate_system', 'right_gaze_origin_in_trackbox_coordinate_system',...
There is no native file format for tobii trackers. They rely on you to specify how the data is saved. The hdf5 file saves a key selection of the raw...