Skip to content

Commit

Permalink
BF: sizes were decided to be in meters. Fix examples (#1373)
Browse files Browse the repository at this point in the history
Follow up to #1369
  • Loading branch information
yarikoptic authored Jan 11, 2023
1 parent 83e20a1 commit d5952dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/modality-specific-files/task-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ in the accompanying JSON sidecar as follows (based on the example of the previou
"SoftwareRRID": "SCR_002881",
"SoftwareVersion": "3.0.14",
"Code": "doi:10.5281/zenodo.3361717",
"ScreenDistance": 180,
"ScreenDistance": 1.8,
"ScreenRefreshRate": 60,
"ScreenResolution": [1920, 1200],
"ScreenSize": [47.2, 29.5]
"ScreenSize": [0.472, 0.295]
}
}
```
4 changes: 2 additions & 2 deletions src/schema/objects/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2863,8 +2863,8 @@ ScreenSize:
name: ScreenSize
display_name: Screen Size
description: |
Screen size in cm, excluding potential screen borders
(for example `[47.2, 29.5]` for a screen of 47.2-width by 29.5-height cm),
Screen size in m, excluding potential screen borders
(for example `[0.472, 0.295]` for a screen of 47.2-width by 29.5-height cm),
if no screen use `n/a`.
anyOf:
- type: array
Expand Down

0 comments on commit d5952dc

Please sign in to comment.