> For the complete documentation index, see [llms.txt](https://docs.sentiance.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sentiance.com/sdk/api-reference/android/transport-sessions/sensordatachunk.md).

# SensorDataChunk

Represents a chunk of sensor data.

## SensorDataChunk API

### `getSize()`

> ```java
> int getSize()
> ```
>
> Returns the number of sensor samples in the chunk. All of x, y, z, and timestamp arrays will be of this size.

### `getTimestamps()`

> ```java
> long[] getTimestamps()
> ```
>
> Returns the timestamps in UTC epoch time.

### `getXValues()`

> ```java
> float[] getXValues()
> ```
>
> Returns the x-axis values.

### `getYValues()`

> ```java
> float[] getYValues()
> ```
>
> Returns the y-axis values.

### `getZValues()`

> ```java
> float[] getZValues()
> ```
>
> Returns the z-axis values.
