-
Notifications
You must be signed in to change notification settings - Fork 9
Description
I am just writing a .ort file saving algorithm for Mantis and realised that the current standard doesn't allow for (or isn't worded so it is clear it allows) a list of angles which were measured at.
At Isis it is common to measure at several angles and then stitch the datasets together (the correctness of doing this is a discussion for another time). The resulting stitched dataset will therefore be the product of several different runs taken at different angles. I wish to include these angles in the reduced data file, but as far as I can see, the allowable values are Union[value, vale range].
I propose to allow this to be Union[value, list[values], value range] instead so that a dataset which was measured at e.g. 0.3, 0.7, and 2.0 degrees can include these explicitly.
I would also say Wavelength could be similarly modified such that the wavelength ranges used at each of the angles could be included, making it Union[value, list[values], value range, list[value range]].
Any thoughts on this are appreciated