files/en-us/web/api/devicemotionevent/accelerationincludinggravity/index.md
{{APIRef("Device Orientation Events")}}{{securecontext_header}}
The accelerationIncludingGravity read-only property of the {{domxref("DeviceMotionEvent")}} interface returns the
amount of acceleration recorded by the device, in meters per second squared (m/s²). Unlike {{DOMxRef("DeviceMotionEvent.acceleration")}}
which compensates for the influence of gravity, its value is the sum of the acceleration
of the device as induced by the user and an acceleration equal and opposite to that
caused by gravity. In other words, it measures the
g-force. In practice, this value represents
the raw data measured by an accelerometer.
This value is not typically as useful as {{DOMxRef("DeviceMotionEvent.acceleration")}}, but may be the only value available on devices that aren't able to remove gravity from the acceleration data, such as on devices that don't have a gyroscope.
[!NOTE]
accelerationIncludingGravity's name can be misleading. This property represents acceleration including the effects of gravity. For example, if a device is lying flat on a horizontal surface with the screen pointing up, gravity would be -9.8 along the Z axis, whileacceleration.zwould be 0 andaccelerationIncludingGravity.zwould be 9.8. Similarly, if a device is in free fall with its screen horizontal and pointing up, gravity would be -9.8 along the Z axis, whileacceleration.zwould be -9.8 andaccelerationIncludingGravity.zwould be 0.
The accelerationIncludingGravity property is an object providing
information about acceleration on three axis. Each axis is represented with its own
property:
x
y
z
{{Specifications}}
{{Compat}}