.
│ └─── .gitignore
│ └─── DIRECTORY_STRUCTURE.md
│ └─── LICENSE
│ └─── README.md
│ └─── pygnsslab_logo.png
│ └─── pyproject.toml
│ └─── requirements.txt
│ └─── setup.py
│ └───src
│ │ └─── __init__.py
│ │ └───pygnsslab
│ │ │ └─── __init__.py
│ │ │ └───io
│ │ │ │ └───rinex2
│ │ │ │ │ └─── __init__.py
│ │ │ │ │ └─── example_usage.py
│ │ │ │ │ └─── metadata.py
│ │ │ │ │ └─── reader.py
│ │ │ │ │ └─── utils.py
│ │ │ │ │ └─── writer.py
│ │ │ │ └───rinex3
│ │ │ │ │ └─── __init__.py
│ │ │ │ │ └─── example_usage.py
│ │ │ │ │ └─── metadata.py
│ │ │ │ │ └─── reader.py
│ │ │ │ │ └─── utils.py
│ │ │ │ │ └─── writer.py
│ │ │ │ └───rinexnav
│ │ │ │ │ └─── __init__.py
│ │ │ │ │ └─── example_usage.py
│ │ │ │ │ └─── metadata.py
│ │ │ │ │ └─── reader.py
│ │ │ │ │ └─── utils.py
│ │ │ │ └───sp3
│ │ │ │ │ └─── __init__.py
│ │ │ │ │ └─── example_usage.py
│ │ │ │ │ └─── metadata.py
│ │ │ │ │ └─── reader.py
│ │ │ │ │ └─── utils.py
│ │ │ │ │ └─── writer.py
│ └───tests
│ │ └───rinex2
│ │ │ └─── test_output.ipynb
│ │ │ └─── test_output.py
│ │ └───rinexnav
│ │ │ └─── test_rinexnav.ipynb
│ │ │ └─── test_rinexnav.py
│ │ └───sp3
│ │ │ └─── test_sp3.ipynb