1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-07 10:43:58 +00:00

docs(skyplot): update inline comments for clarity

This commit is contained in:
pedromiguelcp
2025-08-13 16:19:48 +01:00
parent 2c49d0f57e
commit 22e18fee46
2 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ showing satellite visibility over time.
## Features
- Processes RINEX navigation files.
- Optionally uses an OBS file to limit plot to the receiver active processing
- Optionally uses an OBS file to limit plot to the receiver observation
time (--use-obs).
- When enabled, the tool looks for a matching file by replacing the last
character of the NAV filename with O/o and uses it if found.
@@ -63,7 +63,7 @@ showing satellite visibility over time.
```
./skyplot.py brdc0010.22n 40.7128 -74.0060 10.0
```
- Skyplot from custom location (Santiago, Chile) using receiver active window:
- Skyplot from custom location (Santiago, Chile) using receiver observation time:
```
./skyplot.py brdc0010.22n -33.4592 -70.6453 520.0 --use-obs
```
@@ -78,8 +78,8 @@ The script generates a PDF file named `skyplot_<RINEX_FILE>.pdf` (with dots in
`<RINEX_FILE>` replaced by `_`) with:
- Satellite trajectories over all epochs in the file.
- Entire NAV file span (default)
- Receiver active span if `--use-obs` is specified and OBS file is found
- NAV file - ephemeris time range (default)
- Receiver observation if `--use-obs` is specified and OBS file is found
- Color-coded by constellation.
- Observer location in title.
- Time range in footer.

View File

@@ -532,7 +532,7 @@ def main():
action='store_true',
help='Run without displaying plot window'
)
# Add the observation filename
# Add the use-obs flag
parser.add_argument(
'--use-obs',
action='store_true',