Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected version of changed-files action #264

Merged
merged 4 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion standard_schema/prerelease/HED8.4.0.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ Each term in this vocabulary has a human-readable description and may include ad
***** Refresh-rate <nowiki>{hedId=HED_0012651} [The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.]</nowiki>
****** <nowiki># {takesValue, valueClass=numericClass, hedId=HED_0012652}</nowiki>
***** Sampling-rate <nowiki>{hedId=HED_0012653} [The number of digital samples taken or recorded per unit of time.]</nowiki>
****** <nowiki># {takesValue, unitClass=frequencyUnits, hedId=HED_0012654}</nowiki>
****** <nowiki># {takesValue, valueClass=numericClass, unitClass=frequencyUnits, hedId=HED_0012654}</nowiki>
***** Speed <nowiki>{hedId=HED_0012655} [A scalar measure of the rate of movement of the object expressed either as the distance traveled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.]</nowiki>
****** <nowiki># {takesValue, valueClass=numericClass, unitClass=speedUnits, hedId=HED_0012656}</nowiki>
***** Temporal-rate <nowiki>{hedId=HED_0012657} [The number of items per unit of time.]</nowiki>
Expand Down
4 changes: 4 additions & 0 deletions standard_schema/prerelease/HED8.4.0.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6085,6 +6085,10 @@ Each term in this vocabulary has a human-readable description and may include ad
<attribute>
<name>takesValue</name>
</attribute>
<attribute>
<name>valueClass</name>
<value>numericClass</value>
</attribute>
<attribute>
<name>unitClass</name>
<value>frequencyUnits</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ HED_0012650 Jerk-rate-# 6 Jerk-rate takesValue, valueClass=numericClass, unitCla
HED_0012651 Refresh-rate 5 Rate-of-change The frequency with which the image on a computer monitor or similar electronic display screen is refreshed, usually expressed in hertz.
HED_0012652 Refresh-rate-# 6 Refresh-rate takesValue, valueClass=numericClass Refresh-rate and (valueClass some numericClass)
HED_0012653 Sampling-rate 5 Rate-of-change The number of digital samples taken or recorded per unit of time.
HED_0012654 Sampling-rate-# 6 Sampling-rate takesValue, unitClass=frequencyUnits Sampling-rate and (unitClass some frequencyUnits)
HED_0012654 Sampling-rate-# 6 Sampling-rate takesValue, valueClass=numericClass, unitClass=frequencyUnits Sampling-rate and (valueClass some numericClass) and (unitClass some frequencyUnits)
HED_0012655 Speed 5 Rate-of-change A scalar measure of the rate of movement of the object expressed either as the distance traveled divided by the time taken (average speed) or the rate of change of position with respect to time at a particular point (instantaneous speed). The direction of change should be given separately.
HED_0012656 Speed-# 6 Speed takesValue, valueClass=numericClass, unitClass=speedUnits Speed and (valueClass some numericClass) and (unitClass some speedUnits)
HED_0012657 Temporal-rate 5 Rate-of-change The number of items per unit of time.
Expand Down