The coordinate system keys, for example, Nifti1 uses Right-Anterior-Superior or "RAS", DICOM (0020,0032) uses Left-Posterior-Superior or "LPS". This type does not distinguish spatial 1/2/3D.
| 528 | |
| 529 | |
| 530 | class SpaceKeys(StrEnum): |
| 531 | """ |
| 532 | The coordinate system keys, for example, Nifti1 uses Right-Anterior-Superior or "RAS", |
| 533 | DICOM (0020,0032) uses Left-Posterior-Superior or "LPS". This type does not distinguish spatial 1/2/3D. |
| 534 | """ |
| 535 | |
| 536 | RAS = "RAS" |
| 537 | LPS = "LPS" |
| 538 | |
| 539 | |
| 540 | class MetaKeys(StrEnum): |