-
Notifications
You must be signed in to change notification settings - Fork 7
Remove hard-coded use of "lat", "ele", "ax" #365
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
Conversation
| dims: Annotated[Tuple[str, str, str], OpenLIFUFieldData("Dimension keys", "Codenames of the axes in the coordinate system being used")] = ("lat", "ele", "ax") | ||
| """Names of the axes in the coordinate system being used""" | ||
|
|
||
| names: Annotated[Tuple[str, str, str], OpenLIFUFieldData("Dimension names", "Human readable names of the axes in the coordinate system being used")] = ("Lateral", "Elevation", "Axial") | ||
| """"Human readable names of the axes in the coordinate system being used""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this we should we should update the example data in dvc -- I will push that change shortly
ebrahimebrahim
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thank you!
(force pushing to adjust a commit message)
|
(also rebasing to handle a merge conflict) |
For better backwards compatibility with protocols prior to #364
Ran the standardize_database.py script to do this.
15e02f4 to
50e6943
Compare
Updates the codebase to be less expectant of particular dimension names, and removes the ability to specify them in SimSetup, as this level of configuration doesn't provide enough benefit to overcome the risk of confusion
Closes #364