Skip to content

Commit d09c20b

Browse files
committed
Update parsers.ipynb
1 parent f12e783 commit d09c20b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

notebooks/tutorials/parsers.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@
406406
"id": "fe8e8d6a",
407407
"metadata": {},
408408
"source": [
409-
"## Rinex v3 Observation File Parsing"
409+
"# Rinex Observation File Parsing"
410410
]
411411
},
412412
{
@@ -417,8 +417,8 @@
417417
"Rinex is another file standard that is used in the GNSS community to store and transmit navigation information.\n",
418418
"Files with the extension `.yyo`, where `yy` is the year in which the measurement was made, are used to store and transmit\n",
419419
"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",
420+
"These measurement files can contain any constellation and each measurement usually contains the pseudorange, carrier phase (or difference from carrier frequency),\n",
421+
"doppler, and signal-to-noise ratio measurements.\n",
422422
"In the following lines, we show how to load a ``.o`` file into a NavData instance."
423423
]
424424
},
@@ -430,7 +430,7 @@
430430
"outputs": [],
431431
"source": [
432432
"# download Rinex obs file and load it into NavData instance\n",
433-
"!wget https://raw.githubusercontent.com/Stanford-NavLab/gnss_lib_py/ashwin/rinex-3-o/data/unit_test/rinex/obs/rinex_obs_mixed_types.20o --quiet -O \"rinex_obs_mixed_types.20o\"\n",
433+
"!wget https://raw.githubusercontent.com/Stanford-NavLab/gnss_lib_py/main/data/unit_test/rinex/obs/rinex_obs_mixed_types.20o --quiet -O \"rinex_obs_mixed_types.20o\"\n",
434434
"rinex_obs_3 = glp.RinexObs(\"rinex_obs_mixed_types.20o\")\n",
435435
"print('Loaded Rinex Obs 3 data for the first time instant\\n', \\\n",
436436
" rinex_obs_3.where('gps_millis', rinex_obs_3['gps_millis', 0], 'eq'))"

0 commit comments

Comments
 (0)