GPS¶
GPS
¶
GPS sensor for reading UBX binary data.
Attributes:
| Name | Type | Description |
|---|---|---|
data_path |
Path
|
Path to GPS binary file (*.gps.bin). |
logpath |
Path
|
Path to log file for timestamp extraction. |
tstart |
Optional[datetime]
|
Start timestamp from log file (set after load_data). |
data |
Optional[DataFrame]
|
Polars DataFrame with GPS data (None until load_data is called). |
Initialize GPS sensor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path
|
Directory containing GPS binary file. |
required |
logpath
|
Optional[Path]
|
Optional path to log file. If None, will be inferred. |
None
|
Source code in pils/sensors/gps.py
load_data
¶
Load GPS data from UBX binary file.
Reads GPS data in UBX protocol format and parses NAV messages. Merges different NAV message types (POSLLH, VELNED, STATUS, etc.) onto a common time grid with optional interpolation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
freq_interpolation
|
Optional[float]
|
Optional frequency for interpolation in Hz. If None, uses mean time difference from data. If provided, resamples data to this frequency. |
None
|
Notes
Sets self.data: Polars DataFrame with: - unix_time_ms: Unix timestamp in milliseconds - datetime: UTC datetime - timestamp: Unix timestamp in seconds - NAV message columns (prefixed by message type)
Requires log file with "Sensor ZED-F9P started" entry for date extraction.
Source code in pils/sensors/gps.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | |