Packaging#1
Open
plutonheaven wants to merge 8 commits into
Open
Conversation
Modifies the code to be able to use it as a package. To do so, add the following lines in you other project's pyproject.toml:
dependencies = [
...
"android_rinex==0.1.0",
]
[tool.uv.sources]
android_rinex = { git = "https://github.com/plutonheaven/android_rinex", branch = "master" }
* fix GLONASS header * Adapt instruction example to new packaging structure
gnss_log.txt from sm-g955f phones do not contain the carrier frequency. This makes the determination of the GLONASS frequency slot impossible. This PR deactivates the writing of the GLONASS SLOT / FRQ # in the header in such case.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi Tim,
I modified the structure of your code so that it can be used as a package in another project.
Thanks for this work, still relevant in 2026!!