mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-11 12:53:10 +00:00
docs(skyplot): update inline comments for clarity
This commit is contained in:
@@ -16,7 +16,7 @@ showing satellite visibility over time.
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Processes RINEX navigation files.
|
- 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).
|
time (--use-obs).
|
||||||
- When enabled, the tool looks for a matching file by replacing the last
|
- 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.
|
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.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
|
./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:
|
`<RINEX_FILE>` replaced by `_`) with:
|
||||||
|
|
||||||
- Satellite trajectories over all epochs in the file.
|
- Satellite trajectories over all epochs in the file.
|
||||||
- Entire NAV file span (default)
|
- NAV file - ephemeris time range (default)
|
||||||
- Receiver active span if `--use-obs` is specified and OBS file is found
|
- Receiver observation if `--use-obs` is specified and OBS file is found
|
||||||
- Color-coded by constellation.
|
- Color-coded by constellation.
|
||||||
- Observer location in title.
|
- Observer location in title.
|
||||||
- Time range in footer.
|
- Time range in footer.
|
||||||
|
|||||||
@@ -532,7 +532,7 @@ def main():
|
|||||||
action='store_true',
|
action='store_true',
|
||||||
help='Run without displaying plot window'
|
help='Run without displaying plot window'
|
||||||
)
|
)
|
||||||
# Add the observation filename
|
# Add the use-obs flag
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--use-obs',
|
'--use-obs',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
|
|||||||
Reference in New Issue
Block a user