SENTSensorDataChunk
Represents a chunk of sensor data.
SWIFT_CLASS_NAMED("SensorDataChunk")
@interface SENTSensorDataChunk : NSObject
SENTSensorDataChunk API
count
count
Returns the number of sensor samples in the chunk. All of x, y, z, and timestamp arrays will be of this size.
@property (nonatomic, readonly) NSInteger count;
timestamps
timestamps
Returns the timestamps in UTC epoch time.
@property (nonatomic, readonly, copy) NSArray<NSNumber *> * _Nonnull timestamps;
xValues
xValues
Returns the x-axis values.
@property (nonatomic, readonly, copy) NSArray<NSNumber *> * _Nonnull xValues;
yValues
yValues
Returns the y-axis values.
@property (nonatomic, readonly, copy) NSArray<NSNumber *> * _Nonnull yValues;
zValues
zValues
Returns the z-axis values.
@property (nonatomic, readonly, copy) NSArray<NSNumber *> * _Nonnull zValues;
Last updated