2012 Data Discussion Examples: Difference between revisions
(add missing _indices for time and other parameters) |
|||
(19 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
= Key examples = | |||
see these for a quick overview: | |||
* generic | |||
* pathological | |||
= 1D = | = 1D = | ||
Line 8: | Line 15: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0 | ||
@ | @I_axes="Q" | ||
I: float[100] | I: float[100] | ||
Q: float[100] | Q: float[100] | ||
Line 22: | Line 29: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=1 | ||
@ | @I_axes="Time,Q" | ||
@Time_indices=0 | |||
I: float[nTime,100] | I: float[nTime,100] | ||
Q: float[100] | Q: float[100] | ||
Line 36: | Line 44: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0,1 | ||
@ | @I_axes="Time,Q" | ||
@Time_indices=0 | |||
I: float[nTime,100] | I: float[nTime,100] | ||
Q: float[nTime,100] | Q: float[nTime,100] | ||
Line 54: | Line 63: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0,1 | ||
@ | @I_axes="Q,Q" | ||
I: float[100, 512] | I: float[100, 512] | ||
Qx: float[100, 512] | Qx: float[100, 512] | ||
Line 67: | Line 76: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0,1 | ||
@ | @I_axes="Q,Q" | ||
@Mask_indices= | @Mask_indices=0,1 | ||
I: float[100, 512] | I: float[100, 512] | ||
Qx: float[100, 512] | Qx: float[100, 512] | ||
Qy: float[100, 512] | Qy: float[100, 512] | ||
Mask: | Mask: int[100, 512] | ||
</pre> | </pre> | ||
Line 84: | Line 93: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0 | ||
@ | @I_axes="Q" | ||
I: float[100*512] | I: float[100*512] | ||
Qx: float[100*512] | Qx: float[100*512] | ||
Line 91: | Line 100: | ||
Qz: float[100*512] | Qz: float[100*512] | ||
</pre> | </pre> | ||
== example of simple 2D SAS/WAS data, Isas(Q) & Iwas(Q) == | |||
Consider the multi-technique experiment that produces | |||
small-angle and wide-angle scattering data images. | |||
The reduced data results in images as well. | |||
Each image might be described separately (see | |||
[[2012_Data_Discussion_Examples#example_of_SAS_data_with_several_detectors.2C_I.28Q.29 | |||
| example of SAS data with several detectors]] for an alternative). | |||
Here the SAS data image is 100 x 512 pixels. | |||
The WAS data (not covered by this canSAS standard) is 256 x 256 pixels. | |||
<pre> | |||
SASroot | |||
SASentry | |||
SASdata | |||
@name="sasdata" | |||
@Q_indices=0,1 | |||
@I_axes="Q,Q" | |||
I: float[100, 512] | |||
Qx: float[100, 512] | |||
Qy: float[100, 512] | |||
SASdata | |||
@name="wasdata" | |||
@Q_indices=0,1 | |||
@I_axes="Q,Q" | |||
I: float[256, 256] | |||
Qx: float[256, 256] | |||
Qy: float[256, 256] | |||
</pre> | |||
== example of 2D SANS and 2D SAXS, In(Q) & Ix(Q) == | |||
Consider the multi-technique experiment that produces | |||
small-angle neutron and X-ray scattering data. | |||
Here the SANS data image is 100 x 512 pixels and | |||
the SAXS data is 256 x 256 pixels. | |||
<pre> | |||
SASroot | |||
SASentry | |||
SASdata | |||
@name="sans" | |||
@Q_indices=0 | |||
@I_axes="Q" | |||
I: float[100*512] | |||
Qx: float[100*512] | |||
Qy: float[100*512] | |||
SASdata | |||
@name="saxs" | |||
@Q_indices=0 | |||
@I_axes="Q" | |||
I: float[256*256] | |||
Qx: float[256*256] | |||
Qy: float[256*256] | |||
</pre> | |||
= 2D with additional varied parameters = | |||
== example of generic 2D SAS data in a time series, I(Q(t),t) == | == example of generic 2D SAS data in a time series, I(Q(t),t) == | ||
Line 98: | Line 165: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0,1 | ||
@ | @I_axes="Time,Q" | ||
@Time_indices=0 | |||
I: float[nTime,100*512] | I: float[nTime,100*512] | ||
Qx: float[nTime,100*512] | Qx: float[nTime,100*512] | ||
Line 107: | Line 175: | ||
</pre> | </pre> | ||
== example of 2D SAS data as images in a time series with a time- | == example of 2D SAS data as images in a time series with a time-independent mask, I(Q(t),t) == | ||
This example explores a bit of complexity added to the previous example. | This example explores a bit of complexity added to the previous example. | ||
Line 115: | Line 183: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0,1,2 | ||
@ | @I_axes="Time,Q,Q" | ||
@Mask_indices= | @Mask_indices=1,2 | ||
@Time_indices=0 | |||
I: float[nTime,100,512] | I: float[nTime,100,512] | ||
Qx: float[nTime,100,512] | Qx: float[nTime,100,512] | ||
Line 123: | Line 192: | ||
Qz: float[nTime,100,512] | Qz: float[nTime,100,512] | ||
Time: float[nTime] | Time: float[nTime] | ||
Mask: int[ | Mask: int[100,512] | ||
</pre> | </pre> | ||
== example of generic 2D SAS data in a time, T, & P series, I | == example of generic 2D SAS data in a time, T, & P series, I(t,T,P,Q(t,T,P)) == | ||
<pre> | <pre> | ||
Line 132: | Line 201: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0,1,2,3 | ||
@ | @I_axes="Time,Temperature,Pressure,Q" | ||
I: float[nTime, | @Time_indices=0 | ||
Qx: float[nTime, | @Temperature_indices=1 | ||
Qy: float[nTime, | @Pressure_indices=2 | ||
Qz: float[nTime, | I: float[nTime,nTemperature,nPressure,100*512] | ||
Qx: float[nTime,nTemperature,nPressure,100*512] | |||
Qy: float[nTime,nTemperature,nPressure,100*512] | |||
Qz: float[nTime,nTemperature,nPressure,100*512] | |||
Time: float[nTime] | Time: float[nTime] | ||
Temperature: float[nTemperature] | |||
Pressure: float[nPressure] | |||
</pre> | </pre> | ||
== example of generic 2D SAS data in a time, T, & P series, I(T,Q(t) | == example of generic 2D SAS data (images) in a time, T, & P series, I(T,t,P,Q(t)) == | ||
<pre> | <pre> | ||
Line 149: | Line 221: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=1,3,4 | ||
@ | @I_axes="Temperature,Time,Pressure,Q,Q" | ||
I: float[ | @Time_indices=1 | ||
@Temperature_indices=0 | |||
@Pressure_indices=2 | |||
I: float[nTemperature,nTime,nPressure,100,512] | |||
Qx: float[nTime,100,512] | Qx: float[nTime,100,512] | ||
Qy: float[nTime,100,512] | Qy: float[nTime,100,512] | ||
Qz: float[nTime,100,512] | Qz: float[nTime,100,512] | ||
Time: float[nTime] | Time: float[nTime] | ||
Temperature: float[nTemperature] | |||
Pressure: float[nPressure] | |||
</pre> | </pre> | ||
Line 189: | Line 243: | ||
* Ib(Q) is derived from a 1D detector (2000 pixels) | * Ib(Q) is derived from a 1D detector (2000 pixels) | ||
* Ic(Q) is derived from a 2D detector (256 x 256 pixels) | * Ic(Q) is derived from a 2D detector (256 x 256 pixels) | ||
Data from a SAXS/MAXS/WAXS instrument might be represented thus. | |||
<pre> | <pre> | ||
Line 194: | Line 250: | ||
SASentry | SASentry | ||
SASdata | SASdata | ||
@Q_indices= | @Q_indices=0 | ||
@ | @I_axes="Q" | ||
I: float[100*512+2000+256*256] | I: float[100*512 + 2000 + 256*256] | ||
Qx: float[100*512+2000+256*256] | Qx: float[100*512 + 2000 + 256*256] | ||
Qy: float[100*512+2000+256*256] | Qy: float[100*512 + 2000 + 256*256] | ||
Qz: float[100*512+2000+256*256] | Qz: float[100*512 + 2000 + 256*256] | ||
</pre> | </pre> | ||
Line 217: | Line 273: | ||
SASdata | SASdata | ||
@Q_indices="*,*" | @Q_indices="*,*" | ||
@ | @I_axes=" ??? " | ||
I: float[100, 512] | I: float[100, 512] | ||
Qx: float[100] | Qx: float[100] | ||
Line 229: | Line 285: | ||
== SASentry == | == SASentry == | ||
some changes from the original 1D format | some changes from the original 1D format | ||
needs a ''version'' attribute that describes the version of the canSAS definition of SASentry (use version="1.0") | |||
== SASdata == | == SASdata == | ||
different use from original 1D format, refers to a single reduced data set that can be represented thus (such as from one detector) | different use from original 1D format, refers to a single reduced data set that can be represented thus (such as from one detector) | ||
SASdata has | SASdata has some possible attributes, as shown in this example: | ||
<pre> | <pre> | ||
@Q_indices= | @Q_indices=1,3,4 | ||
@ | @I_axes="Temperature,Time,Pressure,Q,Q" | ||
@Mask_indices=3,4 | |||
</pre> | </pre> | ||
To indicate the dependency relationships of other varied parameters, use attributes similar to ''@Mask_indices'' (such as ''@Temperature_indices'' or ''@Pressure_indices''). | |||
=== @Q_indices === | === @Q_indices === | ||
Array attribute that describes which indices (of the I data object) are used to reference Q. | |||
The items in this array use zero-based indexing. | |||
=== @I_axes === | |||
Comma-separated list that describes the names of the data objects that correspond to the indices of the I object. | |||
=== @Mask_indices === | |||
Array attribute that describes which indices (of the I data object) are used to reference Mask. | |||
The items in this array use zero-based indexing. | |||
== | = Algorithm for Readers = | ||
Latest revision as of 16:00, 10 August 2012
Key examples
see these for a quick overview:
- generic
- pathological
1D
example of simple 1D SAS data, I(Q)
SASroot SASentry SASdata @Q_indices=0 @I_axes="Q" I: float[100] Q: float[100]
(see the Discussion page for an XML representation with the recommended minimum content)
example of simple 1D SAS data in a time series, I(Q, t)
SASroot SASentry SASdata @Q_indices=1 @I_axes="Time,Q" @Time_indices=0 I: float[nTime,100] Q: float[100] Time: float[nTime]
example of generic 1D SAS data in a time series, I(Q(t), t)
SASroot SASentry SASdata @Q_indices=0,1 @I_axes="Time,Q" @Time_indices=0 I: float[nTime,100] Q: float[nTime,100] Time: float[nTime]
2D
example of simple 2D (image) SAS data, I(Q)
SASroot SASentry SASdata @Q_indices=0,1 @I_axes="Q,Q" I: float[100, 512] Qx: float[100, 512] Qy: float[100, 512]
example of a simple masked 2D (image) SAS data, I(Q)
SASroot SASentry SASdata @Q_indices=0,1 @I_axes="Q,Q" @Mask_indices=0,1 I: float[100, 512] Qx: float[100, 512] Qy: float[100, 512] Mask: int[100, 512]
example of generic 2D SAS data, I(Q)
Could use this model, for example, to describe data from multiple detectors (by listing individual pixels off all detectors). Or, could describe data from one detector of any geometry. This is the most flexible.
SASroot SASentry SASdata @Q_indices=0 @I_axes="Q" I: float[100*512] Qx: float[100*512] Qy: float[100*512] Qz: float[100*512]
example of simple 2D SAS/WAS data, Isas(Q) & Iwas(Q)
Consider the multi-technique experiment that produces small-angle and wide-angle scattering data images. The reduced data results in images as well. Each image might be described separately (see [[2012_Data_Discussion_Examples#example_of_SAS_data_with_several_detectors.2C_I.28Q.29 | example of SAS data with several detectors]] for an alternative). Here the SAS data image is 100 x 512 pixels. The WAS data (not covered by this canSAS standard) is 256 x 256 pixels.
SASroot SASentry SASdata @name="sasdata" @Q_indices=0,1 @I_axes="Q,Q" I: float[100, 512] Qx: float[100, 512] Qy: float[100, 512] SASdata @name="wasdata" @Q_indices=0,1 @I_axes="Q,Q" I: float[256, 256] Qx: float[256, 256] Qy: float[256, 256]
example of 2D SANS and 2D SAXS, In(Q) & Ix(Q)
Consider the multi-technique experiment that produces small-angle neutron and X-ray scattering data. Here the SANS data image is 100 x 512 pixels and the SAXS data is 256 x 256 pixels.
SASroot SASentry SASdata @name="sans" @Q_indices=0 @I_axes="Q" I: float[100*512] Qx: float[100*512] Qy: float[100*512] SASdata @name="saxs" @Q_indices=0 @I_axes="Q" I: float[256*256] Qx: float[256*256] Qy: float[256*256]
2D with additional varied parameters
example of generic 2D SAS data in a time series, I(Q(t),t)
SASroot SASentry SASdata @Q_indices=0,1 @I_axes="Time,Q" @Time_indices=0 I: float[nTime,100*512] Qx: float[nTime,100*512] Qy: float[nTime,100*512] Qz: float[nTime,100*512] Time: float[nTime]
example of 2D SAS data as images in a time series with a time-independent mask, I(Q(t),t)
This example explores a bit of complexity added to the previous example.
SASroot SASentry SASdata @Q_indices=0,1,2 @I_axes="Time,Q,Q" @Mask_indices=1,2 @Time_indices=0 I: float[nTime,100,512] Qx: float[nTime,100,512] Qy: float[nTime,100,512] Qz: float[nTime,100,512] Time: float[nTime] Mask: int[100,512]
example of generic 2D SAS data in a time, T, & P series, I(t,T,P,Q(t,T,P))
SASroot SASentry SASdata @Q_indices=0,1,2,3 @I_axes="Time,Temperature,Pressure,Q" @Time_indices=0 @Temperature_indices=1 @Pressure_indices=2 I: float[nTime,nTemperature,nPressure,100*512] Qx: float[nTime,nTemperature,nPressure,100*512] Qy: float[nTime,nTemperature,nPressure,100*512] Qz: float[nTime,nTemperature,nPressure,100*512] Time: float[nTime] Temperature: float[nTemperature] Pressure: float[nPressure]
example of generic 2D SAS data (images) in a time, T, & P series, I(T,t,P,Q(t))
SASroot SASentry SASdata @Q_indices=1,3,4 @I_axes="Temperature,Time,Pressure,Q,Q" @Time_indices=1 @Temperature_indices=0 @Pressure_indices=2 I: float[nTemperature,nTime,nPressure,100,512] Qx: float[nTime,100,512] Qy: float[nTime,100,512] Qz: float[nTime,100,512] Time: float[nTime] Temperature: float[nTemperature] Pressure: float[nPressure]
example of SAS data with several detectors, I(Q)
Here, the data are appended to common data objects. This hypothetical case has reduced data derived from three detectors, Ia(Q), Ib(Q), and Ic(Q):
- Ia(Q) is derived from a 2D detector (100 x 512 pixels)
- Ib(Q) is derived from a 1D detector (2000 pixels)
- Ic(Q) is derived from a 2D detector (256 x 256 pixels)
Data from a SAXS/MAXS/WAXS instrument might be represented thus.
SASroot SASentry SASdata @Q_indices=0 @I_axes="Q" I: float[100*512 + 2000 + 256*256] Qx: float[100*512 + 2000 + 256*256] Qy: float[100*512 + 2000 + 256*256] Qz: float[100*512 + 2000 + 256*256]
invalid case
example of **over-simple** 2D (image) SAS data, I(Q)
Invalid because the method of addressing the Q values is different from all the above.
SASroot SASentry SASdata @Q_indices="*,*" @I_axes=" ??? " I: float[100, 512] Qx: float[100] Qy: float[512]
terms
SASroot
same use as original 1D format
SASentry
some changes from the original 1D format
needs a version attribute that describes the version of the canSAS definition of SASentry (use version="1.0")
SASdata
different use from original 1D format, refers to a single reduced data set that can be represented thus (such as from one detector)
SASdata has some possible attributes, as shown in this example:
@Q_indices=1,3,4 @I_axes="Temperature,Time,Pressure,Q,Q" @Mask_indices=3,4
To indicate the dependency relationships of other varied parameters, use attributes similar to @Mask_indices (such as @Temperature_indices or @Pressure_indices).
@Q_indices
Array attribute that describes which indices (of the I data object) are used to reference Q. The items in this array use zero-based indexing.
@I_axes
Comma-separated list that describes the names of the data objects that correspond to the indices of the I object.
@Mask_indices
Array attribute that describes which indices (of the I data object) are used to reference Mask. The items in this array use zero-based indexing.