[](https://github.com/Stanford-NavLab/gnss_lib_py/actions/workflows/build.yml)
[](https://codecov.io/gh/Stanford-NavLab/gnss_lib_py)
[](https://gnss-lib-py.readthedocs.io/en/latest/?badge=latest)
[](https://colab.research.google.com/drive/1DYfuiM5ipz0B-lgjKYcL1Si-V4jNBEac?usp=sharing)
gnss_lib_py
===========
`gnss_lib_py` is a modular Python tool for parsing, analyzing, and
visualizing Global Navigation Satellite Systems (GNSS) data and state
estimates.
It also provides an intuitive and modular framework which allows users to
quickly prototype, implement, and visualize GNSS algorithms.
`gnss_lib_py` is modular in the sense that multiple types of
algorithms or datasets can be easily exchanged for each other.
It is extendable in facilitating user-specific extensions of existing
implementations.
<img src="https://raw.githubusercontent.com/Stanford-NavLab/gnss_lib_py/main/docs/source/img/glp_architecture.svg" alt="Architecture of gnss-lib-py library" width="800"/>
`gnss_lib_py` contains parsers for common file types used for
storing GNSS measurements, benchmark algorithms for processing
measurements into state estimates and visualization tools for measurements
and state estimates.
The modularity of `gnss_lib_py` is made possibly by the unifying
`NavData` class, with accompanying standard nomenclature, which can be
found in the
[reference page](https://gnss-lib-py.readthedocs.io/en/latest/reference/reference.html).
The standard nomenclature ensures cross compatibility between different
datasets and algorithms.
`NavData` combines the readability of `pandas.DataFrame` with `numpy.ndarray`
allowing for easy and fast access of numbers or strings.
We also provide functionality to add, remove and modify numeric and
string data consistently along with commonly needed supporting
functionality.
Documentation
-------------
Full documentation is available on our [readthedocs website](https://gnss-lib-py.readthedocs.io/en/latest/index.html).
Code Organization
-----------------
`gnss_lib_py` is organized as:
```bash
├── data/ # Location for data files
└── unit_test/ # Data files for unit testing
├── dev/ # Code users do not wish to commit
├── docs/ # Documentation files
├── gnss_lib_py/ # gnss_lib_py source files
├── algorithms/ # Navigation algorithms
├── navdata/ # NavData data structure
├── parsers/ # Data parsers
├── utils/ # GNSS and common utilities
├── visualizations/ # plotting functions
└── __init__.py # Initialize gnss_lib_py
├── notebooks/ # Interactive Jupyter notebooks
├── tutorials/ # Notebooks with tutorial code
├── results/ # Location for result images/files
├── tests/ # Tests for source files
├── algorithms/ # Tests for files in algorithms
├── navdata/ # Tests for files in navdata
├── parsers/ # Tests for files in parsers
├── utils/ # Tests for files in utils
├── visualizations/ # Tests for files in visualizations
└── conftest.py # Common methods for tests
├── CONTRIBUTORS.md # List of contributors
├── build_docs.sh # Bash script to build docs
├── poetry.lock # Poetry specific Lock file
├── pyproject.toml # List of package dependencies
└── requirements.txt # List of packages for pip install
```
In the directory organization above:
* The `algorithms` directory contains algorithms that
work by passing in a `NavData` class. Currently, the following
algorithms are implemented in the `algorithms`:
* Weighted Least Squares
* Extended Kalman Filter
* Calculating pseudorange residuals
* Fault detection and exclusion
* The `navdata` directory defines the `NavData` class, its methods, and
functions that operate on `NavData` instances, like `sort`, `concat`,
and others.
* The data parsers in the `parsers` directory allow for either loading
GNSS data into `gnss_lib_py`'s unifying `NavData` class or parsing
precise ephemerides data.
Currently, the following datasets and types are supported:
* [2021 Google Android Derived Dataset](https://www.kaggle.com/c/google-smartphone-decimeter-challenge)
* [2022 Google Android Derived Dataset](https://www.kaggle.com/competitions/smartphone-decimeter-2022)
* [TU Chemnitz smartLoc Dataset](https://www.tu-chemnitz.de/projekt/smartLoc/gnss_dataset.html.en#Datasets)
* [NMEA](https://www.sparkfun.com/datasheets/GPS/NMEA%20Reference%20Manual-Rev2.1-Dec07.pdf)
* [RINEX .o and .n](https://files.igs.org/pub/data/format/rinex305.pdf)
* [SP3 precise orbits](https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/orbit_products.html)
* [CLK clock products](https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/clock_products.html)
* The `utils` directory contains utilities used to handle
GNSS measurements, time conversions, coordinate transformations,
visualizations, calculating multi-GNSS satellite PVT information,
satellite simulation, file operations, etc.
* The `visualizations` directory contains methods for plotting quantities
in `NavData`. It includes methods to plot metrics, positions on maps,
and skyplots of satellites visible from the receiver position.
Installation
------------
`gnss_lib_py` is available through `pip` installation with:
```
pip install gnss-lib-py
```
For directions on how to install an editable or developer installation of `gnss_lib_py` on Linux, MacOS, and Windows, please
see the [install instructions](https://gnss-lib-py.readthedocs.io/en/latest/install.html).
Tutorials
---------
We have a range of tutorials on how to easily use this project. They can
all be found in the [tutorials section](https://gnss-lib-py.readthedocs.io/en/latest/tutorials/tutorials.html).
Reference
---------
References on the package contents, explanation of the benefits of our
custom NavData class, and function-level documentation can all be
found in the [reference section](https://gnss-lib-py.readthedocs.io/en/latest/reference/reference.html).
Contributing
------------
If you have a bug report or would like to contribute to our repository,
please follow the guide on the [contributing page](https://gnss-lib-py.readthedocs.io/en/latest/contributing/contributing.html).
Troubleshooting
---------------
Answers to common questions can be found in the [troubleshooting section](https://gnss-lib-py.readthedocs.io/en/latest/troubleshooting.html).
Attribution
-----------
This project is a product of the [Stanford NAV Lab](https://navlab.stanford.edu/)
and currently maintained by Ashwin Kanhere (akanhere [at] stanford [dot] edu)
and Derek Knowles (dcknowles [at] stanford [dot] edu). If using
this project in your own work please cite either of the following:
```
@inproceedings{knowlesmodular2022,
title = {A Modular and Extendable GNSS Python Library},
author={Knowles, Derek and Kanhere, Ashwin V and Bhamidipati, Sriramya and Gao, Grace},
booktitle={Proceedings of the 35th International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GNSS+ 2022)},
institution = {Stanford University},
year = {2022 [Online]},
url = {https://github.com/Stanford-NavLab/gnss_lib_py},
doi = {10.33012/2022.18525}
}
```
```
@inproceedings{knowles_kanhere_baselines_2023,
title = {Localization and Fault Detection Baselines From an Open-Source Python GNSS Library},
author={Knowles, Derek and Kanhere, Ashwin V and Gao, Grace},
booktitle={Proceedings of the 36th International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GNSS+ 2023)},
institution = {Stanford University},
year = {2023 [Online]},
url = {https://github.com/Stanford-NavLab/gnss_lib_py},
}
```
Additionally, we would like to thank [all contributors](https://github.com/Stanford-NavLab/gnss_lib_py/blob/main/CONTRIBUTORS.md) to this project.
Raw data
{
"_id": null,
"home_page": "https://github.com/Stanford-NavLab/gnss_lib_py",
"name": "gnss-lib-py",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.13,>=3.9",
"maintainer_email": null,
"keywords": "gnss",
"author": "Derek Knowles",
"author_email": "dcknowles@stanford.edu",
"download_url": "https://files.pythonhosted.org/packages/93/a1/1cd35d087fe4d01a21ab196bf028448faaa0282d768633c0349cc891137a/gnss_lib_py-1.0.3.tar.gz",
"platform": null,
"description": "[](https://github.com/Stanford-NavLab/gnss_lib_py/actions/workflows/build.yml)\n[](https://codecov.io/gh/Stanford-NavLab/gnss_lib_py)\n[](https://gnss-lib-py.readthedocs.io/en/latest/?badge=latest)\n[](https://colab.research.google.com/drive/1DYfuiM5ipz0B-lgjKYcL1Si-V4jNBEac?usp=sharing)\n\ngnss_lib_py\n===========\n\n`gnss_lib_py` is a modular Python tool for parsing, analyzing, and\nvisualizing Global Navigation Satellite Systems (GNSS) data and state\nestimates.\nIt also provides an intuitive and modular framework which allows users to\nquickly prototype, implement, and visualize GNSS algorithms.\n`gnss_lib_py` is modular in the sense that multiple types of\nalgorithms or datasets can be easily exchanged for each other.\nIt is extendable in facilitating user-specific extensions of existing\nimplementations.\n\n<img src=\"https://raw.githubusercontent.com/Stanford-NavLab/gnss_lib_py/main/docs/source/img/glp_architecture.svg\" alt=\"Architecture of gnss-lib-py library\" width=\"800\"/>\n\n`gnss_lib_py` contains parsers for common file types used for\nstoring GNSS measurements, benchmark algorithms for processing\nmeasurements into state estimates and visualization tools for measurements\nand state estimates.\nThe modularity of `gnss_lib_py` is made possibly by the unifying\n`NavData` class, with accompanying standard nomenclature, which can be\nfound in the\n[reference page](https://gnss-lib-py.readthedocs.io/en/latest/reference/reference.html).\nThe standard nomenclature ensures cross compatibility between different\ndatasets and algorithms.\n\n`NavData` combines the readability of `pandas.DataFrame` with `numpy.ndarray`\nallowing for easy and fast access of numbers or strings.\nWe also provide functionality to add, remove and modify numeric and\nstring data consistently along with commonly needed supporting\nfunctionality.\n\nDocumentation\n-------------\nFull documentation is available on our [readthedocs website](https://gnss-lib-py.readthedocs.io/en/latest/index.html).\n\n\nCode Organization\n-----------------\n\n`gnss_lib_py` is organized as:\n\n```bash\n\n \u251c\u2500\u2500 data/ # Location for data files\n \u2514\u2500\u2500 unit_test/ # Data files for unit testing\n \u251c\u2500\u2500 dev/ # Code users do not wish to commit\n \u251c\u2500\u2500 docs/ # Documentation files\n \u251c\u2500\u2500 gnss_lib_py/ # gnss_lib_py source files\n \u251c\u2500\u2500 algorithms/ # Navigation algorithms\n \u251c\u2500\u2500 navdata/ # NavData data structure\n \u251c\u2500\u2500 parsers/ # Data parsers\n \u251c\u2500\u2500 utils/ # GNSS and common utilities\n \u251c\u2500\u2500 visualizations/ # plotting functions\n \u2514\u2500\u2500 __init__.py # Initialize gnss_lib_py\n \u251c\u2500\u2500 notebooks/ # Interactive Jupyter notebooks\n \u251c\u2500\u2500 tutorials/ # Notebooks with tutorial code\n \u251c\u2500\u2500 results/ # Location for result images/files\n \u251c\u2500\u2500 tests/ # Tests for source files\n \u251c\u2500\u2500 algorithms/ # Tests for files in algorithms\n \u251c\u2500\u2500 navdata/ # Tests for files in navdata\n \u251c\u2500\u2500 parsers/ # Tests for files in parsers\n \u251c\u2500\u2500 utils/ # Tests for files in utils\n \u251c\u2500\u2500 visualizations/ # Tests for files in visualizations\n \u2514\u2500\u2500 conftest.py # Common methods for tests\n \u251c\u2500\u2500 CONTRIBUTORS.md # List of contributors\n \u251c\u2500\u2500 build_docs.sh # Bash script to build docs\n \u251c\u2500\u2500 poetry.lock # Poetry specific Lock file\n \u251c\u2500\u2500 pyproject.toml # List of package dependencies\n \u2514\u2500\u2500 requirements.txt # List of packages for pip install\n```\nIn the directory organization above:\n\n * The `algorithms` directory contains algorithms that\n work by passing in a `NavData` class. Currently, the following\n algorithms are implemented in the `algorithms`:\n\n * Weighted Least Squares\n * Extended Kalman Filter\n * Calculating pseudorange residuals\n * Fault detection and exclusion\n\n * The `navdata` directory defines the `NavData` class, its methods, and\n functions that operate on `NavData` instances, like `sort`, `concat`,\n and others.\n\n * The data parsers in the `parsers` directory allow for either loading\n GNSS data into `gnss_lib_py`'s unifying `NavData` class or parsing\n precise ephemerides data.\n Currently, the following datasets and types are supported:\n\n * [2021 Google Android Derived Dataset](https://www.kaggle.com/c/google-smartphone-decimeter-challenge)\n * [2022 Google Android Derived Dataset](https://www.kaggle.com/competitions/smartphone-decimeter-2022)\n * [TU Chemnitz smartLoc Dataset](https://www.tu-chemnitz.de/projekt/smartLoc/gnss_dataset.html.en#Datasets)\n * [NMEA](https://www.sparkfun.com/datasheets/GPS/NMEA%20Reference%20Manual-Rev2.1-Dec07.pdf)\n * [RINEX .o and .n](https://files.igs.org/pub/data/format/rinex305.pdf)\n * [SP3 precise orbits](https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/orbit_products.html)\n * [CLK clock products](https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/clock_products.html)\n\n * The `utils` directory contains utilities used to handle\n GNSS measurements, time conversions, coordinate transformations,\n visualizations, calculating multi-GNSS satellite PVT information,\n satellite simulation, file operations, etc.\n\n * The `visualizations` directory contains methods for plotting quantities\n in `NavData`. It includes methods to plot metrics, positions on maps,\n and skyplots of satellites visible from the receiver position.\n\nInstallation\n------------\n\n`gnss_lib_py` is available through `pip` installation with:\n\n```\npip install gnss-lib-py\n```\n\nFor directions on how to install an editable or developer installation of `gnss_lib_py` on Linux, MacOS, and Windows, please\nsee the [install instructions](https://gnss-lib-py.readthedocs.io/en/latest/install.html).\n\nTutorials\n---------\nWe have a range of tutorials on how to easily use this project. They can\nall be found in the [tutorials section](https://gnss-lib-py.readthedocs.io/en/latest/tutorials/tutorials.html).\n\nReference\n---------\nReferences on the package contents, explanation of the benefits of our\ncustom NavData class, and function-level documentation can all be\nfound in the [reference section](https://gnss-lib-py.readthedocs.io/en/latest/reference/reference.html).\n\nContributing\n------------\nIf you have a bug report or would like to contribute to our repository,\nplease follow the guide on the [contributing page](https://gnss-lib-py.readthedocs.io/en/latest/contributing/contributing.html).\n\nTroubleshooting\n---------------\nAnswers to common questions can be found in the [troubleshooting section](https://gnss-lib-py.readthedocs.io/en/latest/troubleshooting.html).\n\nAttribution\n-----------\nThis project is a product of the [Stanford NAV Lab](https://navlab.stanford.edu/)\nand currently maintained by Ashwin Kanhere (akanhere [at] stanford [dot] edu)\nand Derek Knowles (dcknowles [at] stanford [dot] edu). If using\nthis project in your own work please cite either of the following:\n\n```\n\n @inproceedings{knowlesmodular2022,\n title = {A Modular and Extendable GNSS Python Library},\n author={Knowles, Derek and Kanhere, Ashwin V and Bhamidipati, Sriramya and Gao, Grace},\n booktitle={Proceedings of the 35th International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GNSS+ 2022)},\n institution = {Stanford University},\n year = {2022 [Online]},\n url = {https://github.com/Stanford-NavLab/gnss_lib_py},\n doi = {10.33012/2022.18525}\n }\n```\n\n```\n\n @inproceedings{knowles_kanhere_baselines_2023,\n title = {Localization and Fault Detection Baselines From an Open-Source Python GNSS Library},\n author={Knowles, Derek and Kanhere, Ashwin V and Gao, Grace},\n booktitle={Proceedings of the 36th International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GNSS+ 2023)},\n institution = {Stanford University},\n year = {2023 [Online]},\n url = {https://github.com/Stanford-NavLab/gnss_lib_py},\n }\n```\n\nAdditionally, we would like to thank [all contributors](https://github.com/Stanford-NavLab/gnss_lib_py/blob/main/CONTRIBUTORS.md) to this project.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Modular Python tool for parsing, analyzing, and visualizing Global Navigation Satellite Systems (GNSS) data and state estimates",
"version": "1.0.3",
"project_urls": {
"Documentation": "https://gnss-lib-py.readthedocs.io/en/latest/",
"Homepage": "https://github.com/Stanford-NavLab/gnss_lib_py"
},
"split_keywords": [
"gnss"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "08d220242a309c0b021efd26f7cdec570c978de367068e551bb71ad64487658d",
"md5": "dc2599329f49e62e87c5703a2bd8aa13",
"sha256": "e862224f2dbe0ebbf266e44ff57d1ec949d73f2c44bf1ebf54c61479758c49f2"
},
"downloads": -1,
"filename": "gnss_lib_py-1.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dc2599329f49e62e87c5703a2bd8aa13",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.13,>=3.9",
"size": 117226,
"upload_time": "2024-08-27T02:25:14",
"upload_time_iso_8601": "2024-08-27T02:25:14.410219Z",
"url": "https://files.pythonhosted.org/packages/08/d2/20242a309c0b021efd26f7cdec570c978de367068e551bb71ad64487658d/gnss_lib_py-1.0.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93a11cd35d087fe4d01a21ab196bf028448faaa0282d768633c0349cc891137a",
"md5": "19746724d2f271be6fdbc7d3d661da49",
"sha256": "c370326e3dd77457a640df764276de4d7d10badb277b00ac5374e8ec1574cc83"
},
"downloads": -1,
"filename": "gnss_lib_py-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "19746724d2f271be6fdbc7d3d661da49",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.13,>=3.9",
"size": 102399,
"upload_time": "2024-08-27T02:25:16",
"upload_time_iso_8601": "2024-08-27T02:25:16.062327Z",
"url": "https://files.pythonhosted.org/packages/93/a1/1cd35d087fe4d01a21ab196bf028448faaa0282d768633c0349cc891137a/gnss_lib_py-1.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-27 02:25:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Stanford-NavLab",
"github_project": "gnss_lib_py",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "anyio",
"specs": [
[
"==",
"4.4.0"
]
]
},
{
"name": "appnope",
"specs": [
[
"==",
"0.1.4"
]
]
},
{
"name": "argon2-cffi-bindings",
"specs": [
[
"==",
"21.2.0"
]
]
},
{
"name": "argon2-cffi",
"specs": [
[
"==",
"23.1.0"
]
]
},
{
"name": "arrow",
"specs": [
[
"==",
"1.3.0"
]
]
},
{
"name": "asttokens",
"specs": [
[
"==",
"2.4.1"
]
]
},
{
"name": "async-lru",
"specs": [
[
"==",
"2.0.4"
]
]
},
{
"name": "attrs",
"specs": [
[
"==",
"24.2.0"
]
]
},
{
"name": "babel",
"specs": [
[
"==",
"2.16.0"
]
]
},
{
"name": "beautifulsoup4",
"specs": [
[
"==",
"4.12.3"
]
]
},
{
"name": "bleach",
"specs": [
[
"==",
"6.1.0"
]
]
},
{
"name": "certifi",
"specs": [
[
"==",
"2024.7.4"
]
]
},
{
"name": "cffi",
"specs": [
[
"==",
"1.17.0"
]
]
},
{
"name": "charset-normalizer",
"specs": [
[
"==",
"3.3.2"
]
]
},
{
"name": "colorama",
"specs": [
[
"==",
"0.4.6"
]
]
},
{
"name": "comm",
"specs": [
[
"==",
"0.2.2"
]
]
},
{
"name": "contourpy",
"specs": [
[
"==",
"1.2.1"
]
]
},
{
"name": "cycler",
"specs": [
[
"==",
"0.12.1"
]
]
},
{
"name": "debugpy",
"specs": [
[
"==",
"1.8.5"
]
]
},
{
"name": "decorator",
"specs": [
[
"==",
"5.1.1"
]
]
},
{
"name": "defusedxml",
"specs": [
[
"==",
"0.7.1"
]
]
},
{
"name": "exceptiongroup",
"specs": [
[
"==",
"1.2.2"
]
]
},
{
"name": "executing",
"specs": [
[
"==",
"2.0.1"
]
]
},
{
"name": "fastjsonschema",
"specs": [
[
"==",
"2.20.0"
]
]
},
{
"name": "fonttools",
"specs": [
[
"==",
"4.53.1"
]
]
},
{
"name": "fqdn",
"specs": [
[
"==",
"1.5.1"
]
]
},
{
"name": "georinex",
"specs": [
[
"==",
"1.16.1"
]
]
},
{
"name": "h11",
"specs": [
[
"==",
"0.14.0"
]
]
},
{
"name": "hatanaka",
"specs": [
[
"==",
"2.8.1"
]
]
},
{
"name": "httpcore",
"specs": [
[
"==",
"1.0.5"
]
]
},
{
"name": "httpx",
"specs": [
[
"==",
"0.27.0"
]
]
},
{
"name": "idna",
"specs": [
[
"==",
"3.7"
]
]
},
{
"name": "importlib-metadata",
"specs": [
[
"==",
"8.2.0"
]
]
},
{
"name": "importlib-resources",
"specs": [
[
"==",
"6.4.2"
]
]
},
{
"name": "iniconfig",
"specs": [
[
"==",
"2.0.0"
]
]
},
{
"name": "ipykernel",
"specs": [
[
"==",
"6.29.5"
]
]
},
{
"name": "ipython",
"specs": [
[
"==",
"8.18.1"
]
]
},
{
"name": "ipywidgets",
"specs": [
[
"==",
"8.1.3"
]
]
},
{
"name": "isoduration",
"specs": [
[
"==",
"20.11.0"
]
]
},
{
"name": "jedi",
"specs": [
[
"==",
"0.19.1"
]
]
},
{
"name": "jinja2",
"specs": [
[
"==",
"3.1.4"
]
]
},
{
"name": "json5",
"specs": [
[
"==",
"0.9.25"
]
]
},
{
"name": "jsonpointer",
"specs": [
[
"==",
"3.0.0"
]
]
},
{
"name": "jsonschema-specifications",
"specs": [
[
"==",
"2023.12.1"
]
]
},
{
"name": "jsonschema",
"specs": [
[
"==",
"4.23.0"
]
]
},
{
"name": "jsonschema",
"specs": [
[
"==",
"4.23.0"
]
]
},
{
"name": "jupyter-client",
"specs": [
[
"==",
"8.6.2"
]
]
},
{
"name": "jupyter-console",
"specs": [
[
"==",
"6.6.3"
]
]
},
{
"name": "jupyter-core",
"specs": [
[
"==",
"5.7.2"
]
]
},
{
"name": "jupyter-events",
"specs": [
[
"==",
"0.10.0"
]
]
},
{
"name": "jupyter-lsp",
"specs": [
[
"==",
"2.2.5"
]
]
},
{
"name": "jupyter-server-terminals",
"specs": [
[
"==",
"0.5.3"
]
]
},
{
"name": "jupyter-server",
"specs": [
[
"==",
"2.14.2"
]
]
},
{
"name": "jupyter",
"specs": [
[
"==",
"1.0.0"
]
]
},
{
"name": "jupyterlab-pygments",
"specs": [
[
"==",
"0.3.0"
]
]
},
{
"name": "jupyterlab-server",
"specs": [
[
"==",
"2.27.3"
]
]
},
{
"name": "jupyterlab-widgets",
"specs": [
[
"==",
"3.0.11"
]
]
},
{
"name": "jupyterlab",
"specs": [
[
"==",
"4.2.4"
]
]
},
{
"name": "kaleido",
"specs": [
[
"==",
"0.2.1"
]
]
},
{
"name": "kiwisolver",
"specs": [
[
"==",
"1.4.5"
]
]
},
{
"name": "markupsafe",
"specs": [
[
"==",
"2.1.5"
]
]
},
{
"name": "matplotlib-inline",
"specs": [
[
"==",
"0.1.7"
]
]
},
{
"name": "matplotlib",
"specs": [
[
"==",
"3.9.2"
]
]
},
{
"name": "mistune",
"specs": [
[
"==",
"3.0.2"
]
]
},
{
"name": "nbclient",
"specs": [
[
"==",
"0.10.0"
]
]
},
{
"name": "nbconvert",
"specs": [
[
"==",
"7.16.4"
]
]
},
{
"name": "nbformat",
"specs": [
[
"==",
"5.10.4"
]
]
},
{
"name": "ncompress",
"specs": [
[
"==",
"1.0.2"
]
]
},
{
"name": "nest-asyncio",
"specs": [
[
"==",
"1.6.0"
]
]
},
{
"name": "notebook-shim",
"specs": [
[
"==",
"0.2.4"
]
]
},
{
"name": "notebook",
"specs": [
[
"==",
"7.2.1"
]
]
},
{
"name": "numpy",
"specs": [
[
"==",
"1.26.4"
]
]
},
{
"name": "overrides",
"specs": [
[
"==",
"7.7.0"
]
]
},
{
"name": "packaging",
"specs": [
[
"==",
"24.1"
]
]
},
{
"name": "pandas",
"specs": [
[
"==",
"2.2.2"
]
]
},
{
"name": "pandocfilters",
"specs": [
[
"==",
"1.5.1"
]
]
},
{
"name": "parso",
"specs": [
[
"==",
"0.8.4"
]
]
},
{
"name": "pexpect",
"specs": [
[
"==",
"4.9.0"
]
]
},
{
"name": "pillow",
"specs": [
[
"==",
"10.4.0"
]
]
},
{
"name": "platformdirs",
"specs": [
[
"==",
"4.2.2"
]
]
},
{
"name": "plotly",
"specs": [
[
"==",
"5.23.0"
]
]
},
{
"name": "pluggy",
"specs": [
[
"==",
"1.5.0"
]
]
},
{
"name": "prometheus-client",
"specs": [
[
"==",
"0.20.0"
]
]
},
{
"name": "prompt-toolkit",
"specs": [
[
"==",
"3.0.47"
]
]
},
{
"name": "psutil",
"specs": [
[
"==",
"6.0.0"
]
]
},
{
"name": "ptyprocess",
"specs": [
[
"==",
"0.7.0"
]
]
},
{
"name": "pure-eval",
"specs": [
[
"==",
"0.2.3"
]
]
},
{
"name": "pycparser",
"specs": [
[
"==",
"2.22"
]
]
},
{
"name": "pygments",
"specs": [
[
"==",
"2.18.0"
]
]
},
{
"name": "pynmea2",
"specs": [
[
"==",
"1.19.0"
]
]
},
{
"name": "pyparsing",
"specs": [
[
"==",
"3.1.2"
]
]
},
{
"name": "pytest",
"specs": [
[
"==",
"8.3.2"
]
]
},
{
"name": "python-dateutil",
"specs": [
[
"==",
"2.9.0.post0"
]
]
},
{
"name": "python-json-logger",
"specs": [
[
"==",
"2.0.7"
]
]
},
{
"name": "pytz",
"specs": [
[
"==",
"2024.1"
]
]
},
{
"name": "pywin32",
"specs": [
[
"==",
"306"
]
]
},
{
"name": "pywinpty",
"specs": [
[
"==",
"2.0.13"
]
]
},
{
"name": "pyyaml",
"specs": [
[
"==",
"6.0.2"
]
]
},
{
"name": "pyzmq",
"specs": [
[
"==",
"26.1.0"
]
]
},
{
"name": "qtconsole",
"specs": [
[
"==",
"5.5.2"
]
]
},
{
"name": "qtpy",
"specs": [
[
"==",
"2.4.1"
]
]
},
{
"name": "referencing",
"specs": [
[
"==",
"0.35.1"
]
]
},
{
"name": "requests",
"specs": [
[
"==",
"2.32.3"
]
]
},
{
"name": "rfc3339-validator",
"specs": [
[
"==",
"0.1.4"
]
]
},
{
"name": "rfc3986-validator",
"specs": [
[
"==",
"0.1.1"
]
]
},
{
"name": "rpds-py",
"specs": [
[
"==",
"0.20.0"
]
]
},
{
"name": "scipy",
"specs": [
[
"==",
"1.13.1"
]
]
},
{
"name": "send2trash",
"specs": [
[
"==",
"1.8.3"
]
]
},
{
"name": "setuptools",
"specs": [
[
"==",
"72.2.0"
]
]
},
{
"name": "six",
"specs": [
[
"==",
"1.16.0"
]
]
},
{
"name": "sniffio",
"specs": [
[
"==",
"1.3.1"
]
]
},
{
"name": "soupsieve",
"specs": [
[
"==",
"2.6"
]
]
},
{
"name": "stack-data",
"specs": [
[
"==",
"0.6.3"
]
]
},
{
"name": "tenacity",
"specs": [
[
"==",
"9.0.0"
]
]
},
{
"name": "terminado",
"specs": [
[
"==",
"0.18.1"
]
]
},
{
"name": "tinycss2",
"specs": [
[
"==",
"1.3.0"
]
]
},
{
"name": "tomli",
"specs": [
[
"==",
"2.0.1"
]
]
},
{
"name": "tornado",
"specs": [
[
"==",
"6.4.1"
]
]
},
{
"name": "traitlets",
"specs": [
[
"==",
"5.14.3"
]
]
},
{
"name": "types-python-dateutil",
"specs": [
[
"==",
"2.9.0.20240316"
]
]
},
{
"name": "typing-extensions",
"specs": [
[
"==",
"4.12.2"
]
]
},
{
"name": "tzdata",
"specs": [
[
"==",
"2024.1"
]
]
},
{
"name": "unlzw3",
"specs": [
[
"==",
"0.2.2"
]
]
},
{
"name": "uri-template",
"specs": [
[
"==",
"1.3.0"
]
]
},
{
"name": "urllib3",
"specs": [
[
"==",
"2.2.2"
]
]
},
{
"name": "wcwidth",
"specs": [
[
"==",
"0.2.13"
]
]
},
{
"name": "webcolors",
"specs": [
[
"==",
"24.8.0"
]
]
},
{
"name": "webencodings",
"specs": [
[
"==",
"0.5.1"
]
]
},
{
"name": "websocket-client",
"specs": [
[
"==",
"1.8.0"
]
]
},
{
"name": "widgetsnbextension",
"specs": [
[
"==",
"4.0.11"
]
]
},
{
"name": "xarray",
"specs": [
[
"==",
"2024.7.0"
]
]
},
{
"name": "zipp",
"specs": [
[
"==",
"3.20.0"
]
]
}
],
"lcname": "gnss-lib-py"
}