-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change output filename & ScreenResolution return values (#34)
* Change output filename & ScreenResolution return values - output filenames: according to issue #24: output file has now the prefix of the edf file. If edf file already contains "_eyetrack" suffix, it is not written again. - ScreenResolution threw an error because it expected integers but it returned strings --> changed to integers * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * include code for extracting eyetrack.tsv samples table * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update ignore * lint * fix some tests * adapt test * run on python 3.12 * only work with full asc files * refactor and fix * add xfail --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Remi Gau <[email protected]>
- Loading branch information
1 parent
361d6f3
commit aa55681
Showing
8 changed files
with
162 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
--- | ||
# manual_metadata | ||
# Please find the BIDS specification here: https://bids-specification--1128.org.readthedocs.build/en/1128/modality-specific-files/eye-tracking.html | ||
# Please go through the specification and fille the fields below according to the data types given in the specification. | ||
# Please find the BIDS specification here: | ||
# https://bids-specification--1128.org.readthedocs.build/en/1128/modality-specific-files/eye-tracking.html | ||
# Please go through the specification | ||
# and fill the fields below according to the data types given in the specification. | ||
# !Note that ScreenSize and EyeTrackerDistance units are in meter, not centimeter! | ||
|
||
# REQUIRED, fill according to BIDS specification (!the converter will not run successfully if you leave this empty!): | ||
SampleCoordinateUnits: !!str | ||
SampleCoordinateSystem: !!str | ||
EnvironmentCoordinates: !!str | ||
ScreenDistance: !!int | ||
ScreenRefreshRate: !!int | ||
ScreenSize: [!!float] | ||
SampleCoordinateUnits: str | ||
SampleCoordinateSystem: str | ||
EnvironmentCoordinates: str | ||
ScreenDistance: int | ||
ScreenRefreshRate: int | ||
ScreenSize: [float] | ||
|
||
# Recommended (leave empty if not available but put information you want to share with your dataset here!): | ||
SoftwareVersion: !!str | ||
ScreenAOIDefinition: [!!str [!!int]] | ||
SoftwareVersion: str | ||
ScreenAOIDefinition: [str, [int]] | ||
EyeCameraSettings: | ||
EyeTrackerDistance: !!float | ||
EyeTrackerDistance: float | ||
FeatureDetectionSettings: | ||
GazeMappingSettings: | ||
RawDataFilters: | ||
InstitutionName: !!str | ||
InstitutionAddress: !!str | ||
|
||
... | ||
InstitutionName: str | ||
InstitutionAddress: str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters