2012 Data Discussion Examples: Difference between revisions

From canSAS
(add missing _indices for time and other parameters)
 
(26 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_indices="Q"
@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="*,100"
@Q_indices=1
@I_indices="Time,100"
@I_axes="Time,Q"
@Time_indices=0
I: float[nTime,100]
I: float[nTime,100]
Q: float[100]
Q: float[100]
Time: float[nTime]
Time: float[nTime]
</pre>
</pre>


== example of generic 1D SAS data in a time series, I(Q(t), t) ==
== example of generic 1D SAS data in a time series, I(Q(t), t) ==
Line 37: Line 44:
SASentry
SASentry
SASdata
SASdata
@Q_indices="Time,100"
@Q_indices=0,1
@I_indices="Time,100"
@I_axes="Time,Q"
@Time_indices=0
I: float[nTime,100]
I: float[nTime,100]
Q: float[nTime,100]
Q: float[nTime,100]
Line 55: Line 63:
SASentry
SASentry
SASdata
SASdata
@Q_indices="*,*"
@Q_indices=0,1
@I_indices="Q,Q"
@I_axes="Q,Q"
I: float[100, 512]
I: float[100, 512]
Qx: float[100, 512]
Qx: float[100, 512]
Line 68: Line 76:
SASentry
SASentry
SASdata
SASdata
@Q_indices="*,*"
@Q_indices=0,1
@I_indices="Q,Q"
@I_axes="Q,Q"
@Mask_indices="Q,Q"
@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: float[100, 512]
Mask: int[100, 512]
</pre>
</pre>


Line 85: Line 93:
SASentry
SASentry
SASdata
SASdata
@Q_indices="*"
@Q_indices=0
@I_indices="Q"
@I_axes="Q"
I: float[100*512]
I: float[100*512]
Qx: float[100*512]
Qx: float[100*512]
Line 92: 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 99: Line 165:
SASentry
SASentry
SASdata
SASdata
@Q_indices="time,*"
@Q_indices=0,1
@I_indices="time,Q"
@I_axes="Time,Q"
I: float[ntime,100*512]
@Time_indices=0
Qx: float[ntime,100*512]
I: float[nTime,100*512]
Qy: float[ntime,100*512]
Qx: float[nTime,100*512]
Qz: float[ntime,100*512]
Qy: float[nTime,100*512]
t: float[ntime]
Qz: float[nTime,100*512]
Time: float[nTime]
</pre>
</pre>


== example of generic 2D SAS data in a time, T, & P series, I(Q(t,T,P),t,T,P) ==
== 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.


<pre>
<pre>
Line 114: Line 183:
SASentry
SASentry
SASdata
SASdata
@Q_indices="time,T,P,*"
@Q_indices=0,1,2
@I_indices="time,T,P,Q"
@I_axes="Time,Q,Q"
I: float[ntime,nT,nP,100*512]
@Mask_indices=1,2
Qx: float[ntime,nT,nP,100*512]
@Time_indices=0
Qy: float[ntime,nT,nP,100*512]
I: float[nTime,100,512]
Qz: float[ntime,nT,nP,100*512]
Qx: float[nTime,100,512]
t: float[ntime]
Qy: float[nTime,100,512]
T: float[nT]
Qz: float[nTime,100,512]
P: float[nP]
Time: float[nTime]
Mask: int[100,512]
</pre>
</pre>


== example of generic 2D SAS data in a time, T, & P series, I(T,Q(t),t,P) ==
== example of generic 2D SAS data in a time, T, & P series, I(t,T,P,Q(t,T,P)) ==


<pre>
<pre>
Line 131: Line 201:
SASentry
SASentry
SASdata
SASdata
@Q_indices=",time,,*,*"
@Q_indices=0,1,2,3
@I_indices="T,time,P,Q,Q"
@I_axes="Time,Temperature,Pressure,Q"
I: float[nT,ntime,nP,100,512]
@Time_indices=0
Qx: float[ntime,100,512]
@Temperature_indices=1
Qy: float[ntime,100,512]
@Pressure_indices=2
Qz: float[ntime,100,512]
I: float[nTime,nTemperature,nPressure,100*512]
t: float[ntime]
Qx: float[nTime,nTemperature,nPressure,100*512]
T: float[nT]
Qy: float[nTime,nTemperature,nPressure,100*512]
P: float[nP]
Qz: float[nTime,nTemperature,nPressure,100*512]
Time: float[nTime]
Temperature: float[nTemperature]
Pressure: float[nPressure]
</pre>
</pre>


== example of simple 2D SAS/WAS data, Isas(Q) & Iwas(Q) ==
== example of generic 2D SAS data (images) in a time, T, & P series, I(T,t,P,Q(t)) ==
 
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>
<pre>
Line 150: Line 221:
SASentry
SASentry
SASdata
SASdata
@Q_indices="*,*"
@Q_indices=1,3,4
@I_indices="Q,Q"
@I_axes="Temperature,Time,Pressure,Q,Q"
I: float[100, 512]
@Time_indices=1
Qx: float[100, 512]
@Temperature_indices=0
Qy: float[100, 512]
@Pressure_indices=2
WASdata
I: float[nTemperature,nTime,nPressure,100,512]
@Q_indices="*,*"
Qx: float[nTime,100,512]
@I_indices="Q,Q"
Qy: float[nTime,100,512]
I: float[256, 256]
Qz: float[nTime,100,512]
Qx: float[256, 256]
Time: float[nTime]
Qy: float[256, 256]
Temperature: float[nTemperature]
Pressure: float[nPressure]
</pre>
</pre>


Line 171: 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 176: Line 250:
SASentry
SASentry
SASdata
SASdata
@Q_indices="*"
@Q_indices=0
@I_indices="Q"
@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 199: Line 273:
SASdata
SASdata
@Q_indices="*,*"
@Q_indices="*,*"
@I_indices=" ??? "
@I_axes=" ??? "
I: float[100, 512]
I: float[100, 512]
Qx: float[100]
Qx: float[100]
Line 211: 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 three possible attributes, as shown in this example:
SASdata has some possible attributes, as shown in this example:


<pre>
<pre>
@Q_indices=",time,,*,*"
@Q_indices=1,3,4
@I_indices="T,time,P,Q,Q"
@I_axes="Temperature,Time,Pressure,Q,Q"
@Mask_indices=3,4
</pre>
</pre>


Commas are used as delimiters in all cases.
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 ===
Comma-separated list that describes which indices are used (from the I object) to reference Q. Leave a position empty if that index is not used to describe Q,  Use a "*" to describe an index that uses the Q definition.  For other data storage objects, name the object for the position where it should appear.
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.


=== @I_indices ===
= Algorithm for Readers =
Comma-separated list that describes which objects correspond to the indices of the I object.
For indices that involve Q, use the term "Q" and the @Q_indices attribute will provide more information.

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.

Algorithm for Readers