> ## Documentation Index
> Fetch the complete documentation index at: https://smartcar.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Location Signals

### IsAtHome

<Badge color="green">GET</Badge> `/vehicles/{vehicleId}/signals/location-isathome`

A boolean indicating if the vehicle is at home. Vehicle owners can set their home location in their OEM application.

<ParamField path="body" type="object">
  <Expandable title="body properties">
    <ParamField path="value" type="boolean" required={false} />

    ```json Example theme={null}
    {
      "value": true
    }
    ```
  </Expandable>
</ParamField>

### PreciseLocation

<Badge color="green">GET</Badge> `/vehicles/{vehicleId}/signals/location-preciselocation`

An object containing information about a vehicle's precise location.

<ParamField path="body" type="object">
  <Expandable title="body properties">
    <ParamField path="heading" type="number" required={false}>
      The precise angular heading of the vehicle.
    </ParamField>

    <ParamField path="latitude" type="number" required={false}>
      The vehicle's current geographic latitude coordinate.
    </ParamField>

    <ParamField path="direction" type="string" required={false}>
      A cardinal or intercardinal direction representing the vehicle's current heading or orientation.

      **Possible values:** `N`, `NE`, `E`, `SE`, `S`, `SW`, `W`, `NW`
    </ParamField>

    <ParamField path="longitude" type="number" required={false}>
      The vehicle's current geographic longitude coordinate.
    </ParamField>

    <ParamField path="locationType" type="string" required={false}>
      Indicates whether the location-related fields are expected to update in real time or when the vehicle is parked.

      **Possible values:** `LAST_PARKED`, `CURRENT`
    </ParamField>

    ```json Example theme={null}
    {
      "latitude": 51.5014,
      "longitude": -0.1419,
      "direction": "NE",
      "heading": 45.3,
      "locationType": "CURRENT"
    }
    ```
  </Expandable>
</ParamField>
