Skip to content

Latest commit

 

History

History
54 lines (53 loc) · 2.21 KB

File metadata and controls

54 lines (53 loc) · 2.21 KB

Project Directory Structure

.
│   └─── .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