Microsoft Windows 10 · Schema
CompassReading
Compass reading data
DesktopOperating SystemUWPWin32Windows
Properties
| Name | Type | Description |
|---|---|---|
| headingMagneticNorth | number | Heading in degrees relative to magnetic north |
| headingTrueNorth | number | Heading in degrees relative to true north (nullable) |
| headingAccuracy | string | Magnetometer accuracy |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompassReading",
"title": "CompassReading",
"type": "object",
"description": "Compass reading data",
"properties": {
"headingMagneticNorth": {
"type": "number",
"format": "double",
"description": "Heading in degrees relative to magnetic north"
},
"headingTrueNorth": {
"type": "number",
"format": "double",
"description": "Heading in degrees relative to true north (nullable)"
},
"headingAccuracy": {
"type": "string",
"enum": [
"Unknown",
"Unreliable",
"Approximate",
"High"
],
"description": "Magnetometer accuracy"
},
"timestamp": {
"type": "string",
"format": "date-time"
}
}
}