Get historical data.
1) When HDSRequestType is RAWDATA
count is the number of rows (records) of the retrieved data. It is a simple number.
dateTime is a one-dimensional array with the number of rows (number of records). It can be obtained with dateTime[row].
data is a two-dimensional array with the number of columns (fields) x rows (records). It is obtained as data[column, row].
2) When HDSRequestType is MULTIRAWDATA
count is a one-dimensional array that is the number of columns (number of fields). It can be obtained by using count[column].
dateTime is a two-dimensional array with the number of columns (fields) x the number of rows (records). It is obtained as dateTime[ column, row].
data is a two-dimensional array with the number of columns (fields) x rows (records). It is obtained as data[column, row].
|