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

# GeoPoint

## GeoPoint

Inherits from: `object`

A class to represent a geographic point using latitude, longitude, and altitude.

Attributes:
latitude (float): Latitude in degrees.
longitude (float): Longitude in degrees.
altitude (float): Altitude in meters (e.g., above sea level).

### to\_dict

```python theme={null}
GeoPoint.to_dict() -> dict
```

Serialize to dictionary for JSON transfer

<ResponseField name="Returns">
  <ResponseField name="returns" type="dict" />
</ResponseField>

### from\_dict

```python theme={null}
GeoPoint.from_dict(data: dict) -> 'GeoPoint'
```

Deserialize from dictionary

<ResponseField name="Arguments">
  <ParamField query="data (dict)" type="dict" required>
    *No description provided.*
  </ParamField>
</ResponseField>

<ResponseField name="Returns">
  <ResponseField name="returns" type="'GeoPoint'" />
</ResponseField>
