open-cogsci / eyelinkparser

A parser for EyeLink data files, built on python-datamatrix
GNU General Public License v3.0
20 stars 10 forks source link

Limiting dependency on edf2asc #3

Open maciejskorski opened 2 years ago

maciejskorski commented 2 years ago

As of now, the tool parseedf files only using the edf2asc.exe app. This is limiting to Windows platform and extra EyeLink software. Is it possible to parse edf files with open source and cross-platform tools?

https://github.com/smathot/python-eyelinkparser/blob/78cb1e19c149906deebd8f59dd548173fab48790/eyelinkparser/_eyelinkparser.py#L96-L99

smathot commented 2 years ago

It may be possible, or at least there is a Python tool that parses EyeLink EDF files:

This still requires the EyeLink SDK though, which also includes the edf2asc utility, so I'm not sure there would be any real gain. What is the main issue that you're running into right now?

This is limiting to Windows platform

No, it's not! You can install edf2asc also on Linux (which is what I mainly use) or Mac OS.

maciejskorski commented 2 years ago

@smathot apologizes for the delayed response, thanks for pointing the Linux alternative! Overall, my goal is to be able to work on eyelink data (already generated) with minimal effort and reduced dependencies on the proprietary software.