Skip to content
Wysp Docs

fixes.append

Append GPS fixes

type: object[]

type: object

NameTypeRequiredDescription
latnumberyesLatitude in degrees
lngnumberyesLongitude in degrees
fixedAtstringyesTimestamp of the fix
headingnumber | nullyesEstimated direction the user is facing. North at 0 degress, clockwise to 360.
coursenumber | nullyesCourse over ground in degrees. North at 0 degress, clockwise to 360.
velocitynumber | nullyesVelocity in meters per second
altitudenumber | nullyesMeters above sea level
locationAccuracynumber | nullyesAccuracy of location in meters
altitudeAccuracynumber | nullyesAccuracy of altitude in meters
{
"kind": "fixes.append",
"data": [
{
"lat": 37.7749,
"lng": -122.4194,
"fixedAt": "2026-01-28T08:30:00.000Z",
"heading": 90,
"course": 88,
"velocity": 1.2,
"altitude": 15,
"locationAccuracy": 5,
"altitudeAccuracy": 8
}
]
}