|
406 | 406 | "id": "fe8e8d6a", |
407 | 407 | "metadata": {}, |
408 | 408 | "source": [ |
409 | | - "## Rinex v3 Observation File Parsing" |
| 409 | + "# Rinex Observation File Parsing" |
410 | 410 | ] |
411 | 411 | }, |
412 | 412 | { |
|
417 | 417 | "Rinex is another file standard that is used in the GNSS community to store and transmit navigation information.\n", |
418 | 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 | 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", |
| 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", |
422 | 422 | "In the following lines, we show how to load a ``.o`` file into a NavData instance." |
423 | 423 | ] |
424 | 424 | }, |
|
430 | 430 | "outputs": [], |
431 | 431 | "source": [ |
432 | 432 | "# 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", |
434 | 434 | "rinex_obs_3 = glp.RinexObs(\"rinex_obs_mixed_types.20o\")\n", |
435 | 435 | "print('Loaded Rinex Obs 3 data for the first time instant\\n', \\\n", |
436 | 436 | " rinex_obs_3.where('gps_millis', rinex_obs_3['gps_millis', 0], 'eq'))" |
|
0 commit comments