You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: notebooks/tutorials/parsers.ipynb
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -401,6 +401,41 @@
401
401
"print('Loaded NMEA data with raw data and ECEF coordinates\\n', nmea_navdata)"
402
402
]
403
403
},
404
+
{
405
+
"cell_type": "markdown",
406
+
"id": "fe8e8d6a",
407
+
"metadata": {},
408
+
"source": [
409
+
"## Rinex v3 Observation File Parsing"
410
+
]
411
+
},
412
+
{
413
+
"cell_type": "markdown",
414
+
"id": "af135db1",
415
+
"metadata": {},
416
+
"source": [
417
+
"Rinex is another file standard that is used in the GNSS community to store and transmit navigation information.\n",
418
+
"Files with the extension `.yyo`, where `yy` is the year in which the measurement was made, are used to store and transmit\n",
419
+
"measurements.\n",
420
+
"These measurements files can any constellation and each measurement usually contains the pseudorange, carrier phase (or difference from carrier frequency),\n",
421
+
"doppler, and signal-to-noise ration measurements.\n",
422
+
"In the following lines, we show how to load a ``.o`` file into a NavData instance."
423
+
]
424
+
},
425
+
{
426
+
"cell_type": "code",
427
+
"execution_count": null,
428
+
"id": "9f279032",
429
+
"metadata": {},
430
+
"outputs": [],
431
+
"source": [
432
+
"# download Rinex obs file and load it into NavData instance\n",
0 commit comments