|
| 1 | +# |
| 2 | +# Groups of related metadata fields |
| 3 | +# |
| 4 | +# Assumptions: never need disjunction of selectors |
| 5 | +# Assumptions: top-to-bottom overrides is sufficient logic |
| 6 | + |
| 7 | +--- |
| 8 | +# General fields |
| 9 | +EEGCoordsystemGeneral: |
| 10 | + selectors: |
| 11 | + - datatype == "eeg" |
| 12 | + - suffix == "coordsystem" |
| 13 | + fields: |
| 14 | + IntendedFor: |
| 15 | + level: optional |
| 16 | + description_addendum: | |
| 17 | + This identifies the MRI or CT scan associated with the electrodes, |
| 18 | + landmarks, and fiducials. |
| 19 | +
|
| 20 | +# Fields relating to the EEG electrode positions |
| 21 | +EEGCoordsystemPositions: |
| 22 | + selectors: |
| 23 | + - datatype == "eeg" |
| 24 | + - suffix == "coordsystem" |
| 25 | + fields: |
| 26 | + EEGCoordinateSystem: required |
| 27 | + EEGCoordinateUnits: required |
| 28 | + EEGCoordinateSystemDescription: |
| 29 | + level: recommended |
| 30 | + level_addendum: required if `EEGCoordinateSystem` is `"Other"` |
| 31 | + |
| 32 | +EEGCoordsystemOther: |
| 33 | + selectors: |
| 34 | + - datatype == "eeg" |
| 35 | + - suffix == "coordsystem" |
| 36 | + - '"EEGCoordinateSystem" in json' |
| 37 | + - json.EEGCoordinateSystem == "Other" |
| 38 | + fields: |
| 39 | + EEGCoordinateSystemDescription: required |
| 40 | + |
| 41 | +# Fields relating to the position of fiducials measured during an EEG session/run |
| 42 | +EEGCoordsystemFiducials: |
| 43 | + selectors: |
| 44 | + - datatype == "eeg" |
| 45 | + - suffix == "coordsystem" |
| 46 | + fields: |
| 47 | + FiducialsDescription: optional |
| 48 | + FiducialsCoordinates: recommended |
| 49 | + FiducialsCoordinateSystem: recommended |
| 50 | + FiducialsCoordinateUnits: recommended |
| 51 | + FiducialsCoordinateSystemDescription: |
| 52 | + level: recommended |
| 53 | + level_addendum: required if `FiducialsCoordinateSystem` is `"Other"` |
| 54 | + |
| 55 | +EEGCoordsystemOtherFiducialCoordinateSystem: |
| 56 | + selectors: |
| 57 | + - datatype == "eeg" |
| 58 | + - suffix == "coordsystem" |
| 59 | + - json.FiducialsCoordinateSystem == "Other" |
| 60 | + fields: |
| 61 | + FiducialsCoordinateSystemDescription: required |
| 62 | + |
| 63 | +# Fields relating to the position of anatomical landmark measured during an EEG session/run |
| 64 | +EEGCoordsystemLandmark: |
| 65 | + selectors: |
| 66 | + - datatype == "eeg" |
| 67 | + - suffix == "coordsystem" |
| 68 | + fields: |
| 69 | + AnatomicalLandmarkCoordinates: recommended |
| 70 | + AnatomicalLandmarkCoordinateSystem: |
| 71 | + level: recommended |
| 72 | + description_addendum: Preferably the same as the `EEGCoordinateSystem`. |
| 73 | + AnatomicalLandmarkCoordinateUnits: recommended |
| 74 | + |
| 75 | +EEGCoordsystemLandmarkDescriptionRec: |
| 76 | + selectors: |
| 77 | + - datatype == "eeg" |
| 78 | + - suffix == "coordsystem" |
| 79 | + - json.AnatomicalLandmarkCoordinateSystem != "Other" |
| 80 | + fields: |
| 81 | + AnatomicalLandmarkCoordinateSystemDescription: |
| 82 | + level: recommended |
| 83 | + level_addendum: required if `AnatomicalLandmarkCoordinateSystem` is `"Other"` |
| 84 | + |
| 85 | +EEGCoordsystemLandmarkDescriptionReq: |
| 86 | + selectors: |
| 87 | + - datatype == "eeg" |
| 88 | + - suffix == "coordsystem" |
| 89 | + - json.AnatomicalLandmarkCoordinateSystem == "Other" |
| 90 | + fields: |
| 91 | + AnatomicalLandmarkCoordinateSystemDescription: required |
0 commit comments