hfpytrace 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hfpytrace-0.0.1/.github/workflows/tests.yml +43 -0
- hfpytrace-0.0.1/.gitignore +207 -0
- hfpytrace-0.0.1/.readthedocs.yaml +23 -0
- hfpytrace-0.0.1/LICENSE +21 -0
- hfpytrace-0.0.1/MANIFEST.in +1 -0
- hfpytrace-0.0.1/PKG-INFO +62 -0
- hfpytrace-0.0.1/README.md +27 -0
- hfpytrace-0.0.1/configure.py +76 -0
- hfpytrace-0.0.1/docs/assets/Colab-pynasonde-logo1.jpeg +0 -0
- hfpytrace-0.0.1/docs/assets/Colab-pynasonde-logo2-mod.jpeg +0 -0
- hfpytrace-0.0.1/docs/assets/Colab-pynasonde-logo2.jpg +0 -0
- hfpytrace-0.0.1/docs/assets/DALLE-pynasonde-logo1.png +0 -0
- hfpytrace-0.0.1/docs/assets/DALLE-pynasonde-logo2.png +0 -0
- hfpytrace-0.0.1/docs/assets/dataprod.dot +62 -0
- hfpytrace-0.0.1/docs/assets/dataprod.png +0 -0
- hfpytrace-0.0.1/docs/css/pynasonde.css +63 -0
- hfpytrace-0.0.1/docs/examples/digisonde/dvl.md +99 -0
- hfpytrace-0.0.1/docs/examples/digisonde/rsf.md +54 -0
- hfpytrace-0.0.1/docs/examples/digisonde/sao.md +148 -0
- hfpytrace-0.0.1/docs/examples/digisonde/sky.md +149 -0
- hfpytrace-0.0.1/docs/examples/figures/fti.WI937.2022j.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/ionogram_from_riq.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/ngi.scaler.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/panel_skymaps.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/single_skymap.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/stack_sao_F2.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/stack_sao_ne.png +0 -0
- hfpytrace-0.0.1/docs/examples/figures/stackplots_dvl.png +0 -0
- hfpytrace-0.0.1/docs/examples/vipir/fti.md +44 -0
- hfpytrace-0.0.1/docs/examples/vipir/proc_riq.md +107 -0
- hfpytrace-0.0.1/docs/figures/Chakraborty.png +0 -0
- hfpytrace-0.0.1/docs/index.md +29 -0
- hfpytrace-0.0.1/docs/javascripts/mathjax.js +16 -0
- hfpytrace-0.0.1/docs/requirements.txt +93 -0
- hfpytrace-0.0.1/docs/user/authors.md +12 -0
- hfpytrace-0.0.1/docs/user/citing.md +38 -0
- hfpytrace-0.0.1/docs/user/install.md +106 -0
- hfpytrace-0.0.1/env.yml +258 -0
- hfpytrace-0.0.1/hfpytrace.egg-info/PKG-INFO +62 -0
- hfpytrace-0.0.1/hfpytrace.egg-info/SOURCES.txt +55 -0
- hfpytrace-0.0.1/hfpytrace.egg-info/dependency_links.txt +1 -0
- hfpytrace-0.0.1/hfpytrace.egg-info/requires.txt +18 -0
- hfpytrace-0.0.1/hfpytrace.egg-info/top_level.txt +1 -0
- hfpytrace-0.0.1/mkdocs.yml +65 -0
- hfpytrace-0.0.1/pyproject.toml +48 -0
- hfpytrace-0.0.1/setup.cfg +4 -0
- hfpytrace-0.0.1/setup.py +86 -0
- hfpytrace-0.0.1/trace/collision.py +0 -0
- hfpytrace-0.0.1/trace/config.toml +0 -0
- hfpytrace-0.0.1/trace/density/__init__.py +0 -0
- hfpytrace-0.0.1/trace/density/gemini.py +0 -0
- hfpytrace-0.0.1/trace/density/gitm.py +0 -0
- hfpytrace-0.0.1/trace/density/iri.py +0 -0
- hfpytrace-0.0.1/trace/density/sami.py +0 -0
- hfpytrace-0.0.1/trace/density/waccm.py +0 -0
- hfpytrace-0.0.1/trace/density/wamipe.py +0 -0
- hfpytrace-0.0.1/trace/pharlap.py +0 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Run unit tests and publish coverage to Codecov
|
|
2
|
+
name: tests
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches: [main]
|
|
7
|
+
pull_request:
|
|
8
|
+
branches: [main]
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
pytest:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout repository
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
|
+
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
uses: actions/setup-python@v4
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.11"
|
|
25
|
+
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: |
|
|
28
|
+
python -m pip install --upgrade pip
|
|
29
|
+
python -m pip install ".[dev]"
|
|
30
|
+
shell: bash
|
|
31
|
+
|
|
32
|
+
- name: Run tests with coverage
|
|
33
|
+
run: |
|
|
34
|
+
pytest
|
|
35
|
+
shell: bash
|
|
36
|
+
|
|
37
|
+
- name: Upload coverage to Codecov
|
|
38
|
+
uses: codecov/codecov-action@v3
|
|
39
|
+
with:
|
|
40
|
+
files: coverage.xml
|
|
41
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
42
|
+
fail_ci_if_error: false
|
|
43
|
+
verbose: true
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
#uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
#poetry.lock
|
|
109
|
+
#poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
#pdm.lock
|
|
116
|
+
#pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
#pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.envrc
|
|
140
|
+
.venv
|
|
141
|
+
env/
|
|
142
|
+
venv/
|
|
143
|
+
ENV/
|
|
144
|
+
env.bak/
|
|
145
|
+
venv.bak/
|
|
146
|
+
|
|
147
|
+
# Spyder project settings
|
|
148
|
+
.spyderproject
|
|
149
|
+
.spyproject
|
|
150
|
+
|
|
151
|
+
# Rope project settings
|
|
152
|
+
.ropeproject
|
|
153
|
+
|
|
154
|
+
# mkdocs documentation
|
|
155
|
+
/site
|
|
156
|
+
|
|
157
|
+
# mypy
|
|
158
|
+
.mypy_cache/
|
|
159
|
+
.dmypy.json
|
|
160
|
+
dmypy.json
|
|
161
|
+
|
|
162
|
+
# Pyre type checker
|
|
163
|
+
.pyre/
|
|
164
|
+
|
|
165
|
+
# pytype static type analyzer
|
|
166
|
+
.pytype/
|
|
167
|
+
|
|
168
|
+
# Cython debug symbols
|
|
169
|
+
cython_debug/
|
|
170
|
+
|
|
171
|
+
# PyCharm
|
|
172
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
173
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
174
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
175
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
176
|
+
#.idea/
|
|
177
|
+
|
|
178
|
+
# Abstra
|
|
179
|
+
# Abstra is an AI-powered process automation framework.
|
|
180
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
181
|
+
# Learn more at https://abstra.io/docs
|
|
182
|
+
.abstra/
|
|
183
|
+
|
|
184
|
+
# Visual Studio Code
|
|
185
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
186
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
188
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
189
|
+
# .vscode/
|
|
190
|
+
|
|
191
|
+
# Ruff stuff:
|
|
192
|
+
.ruff_cache/
|
|
193
|
+
|
|
194
|
+
# PyPI configuration file
|
|
195
|
+
.pypirc
|
|
196
|
+
|
|
197
|
+
# Cursor
|
|
198
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
199
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
200
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
201
|
+
.cursorignore
|
|
202
|
+
.cursorindexingignore
|
|
203
|
+
|
|
204
|
+
# Marimo
|
|
205
|
+
marimo/_static/
|
|
206
|
+
marimo/_lsp/
|
|
207
|
+
__marimo__/
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# .readthedocs.yaml
|
|
2
|
+
# Read the Docs configuration file
|
|
3
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
4
|
+
|
|
5
|
+
# Required
|
|
6
|
+
version: 2
|
|
7
|
+
|
|
8
|
+
# # Set the version of Python and other tools you might need
|
|
9
|
+
build:
|
|
10
|
+
os: ubuntu-24.04
|
|
11
|
+
tools:
|
|
12
|
+
python: "3.11"
|
|
13
|
+
|
|
14
|
+
mkdocs:
|
|
15
|
+
configuration: mkdocs.yml
|
|
16
|
+
|
|
17
|
+
# Optionally declare the Python requirements required to build your docs
|
|
18
|
+
python:
|
|
19
|
+
install:
|
|
20
|
+
- requirements: docs/requirements.txt
|
|
21
|
+
- method: pip
|
|
22
|
+
path: .
|
|
23
|
+
|
hfpytrace-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Shibaji Chakraborty
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
recursive-include pynasonde *.toml *.csv *.dtd
|
hfpytrace-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: hfpytrace
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Precision ionospheric radio wave propagation tools
|
|
5
|
+
Home-page: https://github.com/shibaji7/trace
|
|
6
|
+
Author: Shibaji Chakraborty
|
|
7
|
+
Author-email: chakras4@erau.edu
|
|
8
|
+
Maintainer: Shibaji Chakraborty
|
|
9
|
+
Maintainer-email: chakras4@erau.edu
|
|
10
|
+
License: MIT
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Provides-Extra: dev
|
|
15
|
+
Requires-Dist: pytest; extra == "dev"
|
|
16
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
17
|
+
Requires-Dist: coverage; extra == "dev"
|
|
18
|
+
Requires-Dist: numpy; extra == "dev"
|
|
19
|
+
Requires-Dist: pandas; extra == "dev"
|
|
20
|
+
Requires-Dist: matplotlib; extra == "dev"
|
|
21
|
+
Requires-Dist: pytesseract; extra == "dev"
|
|
22
|
+
Requires-Dist: loguru; extra == "dev"
|
|
23
|
+
Requires-Dist: requests; extra == "dev"
|
|
24
|
+
Requires-Dist: beautifulsoup4; extra == "dev"
|
|
25
|
+
Requires-Dist: tqdm; extra == "dev"
|
|
26
|
+
Requires-Dist: lxml; extra == "dev"
|
|
27
|
+
Requires-Dist: toml; extra == "dev"
|
|
28
|
+
Requires-Dist: pytz; extra == "dev"
|
|
29
|
+
Requires-Dist: SciencePlots; extra == "dev"
|
|
30
|
+
Requires-Dist: scipy; extra == "dev"
|
|
31
|
+
Dynamic: author-email
|
|
32
|
+
Dynamic: home-page
|
|
33
|
+
Dynamic: maintainer
|
|
34
|
+
Dynamic: maintainer-email
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# pyTrace
|
|
38
|
+
<div style="text-align: center;">
|
|
39
|
+
<!-- <img src="docs/assets/Colab-pynasonde-logo2.jpg" alt="Pynasonde" width="50%"> -->
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
[](https://choosealicense.com/licenses/mit/)
|
|
43
|
+
[](https://www.python.org/downloads/release/python-3110/)
|
|
44
|
+

|
|
45
|
+
[](https://pytrace.readthedocs.io/en/latest/?badge=latest)
|
|
46
|
+
[](https://codecov.io/gh/shibaji7/pytrace)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Pynasonde is an open-source Python-based application designed for precision ionospheric radio sounding, with a strong focus on analyzing the phase characteristics of radio echoes. Tailored for Space Weather applications, Pynasonde offers a suite of unique tools that help extract valuable insights directly and autonomously from ionogram data.
|
|
50
|
+
|
|
51
|
+
With Pynasonde, you can achieve accurate echo recognition, noise discrimination, and echo classification into traces. The application also facilitates the scaling of standard ionospheric parameters, 3-D plasma density inversion (including error bars), diagnostics of small-scale irregularities, and determination of vector velocities.
|
|
52
|
+
|
|
53
|
+
Designed as a comprehensive toolbox, Pynasonde empowers researchers to process raw ionosonde datasets efficiently, providing reliable, real-time insights into ionospheric conditions and phenomena. Whether you're focused on space weather forecasting, radio communication, or scientific exploration, Pynasonde is your go-to tool for precision ionospheric analysis.
|
|
54
|
+
|
|
55
|
+
## Source Code
|
|
56
|
+
|
|
57
|
+
The library source code can be found on the [pytrace GitHub](https://github.com/shibaji7/pytrace) repository.
|
|
58
|
+
|
|
59
|
+
If you have any questions or concerns please submit an **Issue** on the [pytrace GitHub](https://github.com/shibaji7/pytrace) repository.
|
|
60
|
+
|
|
61
|
+
## Documentation
|
|
62
|
+
Read the docs: https://pytrace.readthedocs.io/en/latest/
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
# pyTrace
|
|
3
|
+
<div style="text-align: center;">
|
|
4
|
+
<!-- <img src="docs/assets/Colab-pynasonde-logo2.jpg" alt="Pynasonde" width="50%"> -->
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
[](https://choosealicense.com/licenses/mit/)
|
|
8
|
+
[](https://www.python.org/downloads/release/python-3110/)
|
|
9
|
+

|
|
10
|
+
[](https://pytrace.readthedocs.io/en/latest/?badge=latest)
|
|
11
|
+
[](https://codecov.io/gh/shibaji7/pytrace)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Pynasonde is an open-source Python-based application designed for precision ionospheric radio sounding, with a strong focus on analyzing the phase characteristics of radio echoes. Tailored for Space Weather applications, Pynasonde offers a suite of unique tools that help extract valuable insights directly and autonomously from ionogram data.
|
|
15
|
+
|
|
16
|
+
With Pynasonde, you can achieve accurate echo recognition, noise discrimination, and echo classification into traces. The application also facilitates the scaling of standard ionospheric parameters, 3-D plasma density inversion (including error bars), diagnostics of small-scale irregularities, and determination of vector velocities.
|
|
17
|
+
|
|
18
|
+
Designed as a comprehensive toolbox, Pynasonde empowers researchers to process raw ionosonde datasets efficiently, providing reliable, real-time insights into ionospheric conditions and phenomena. Whether you're focused on space weather forecasting, radio communication, or scientific exploration, Pynasonde is your go-to tool for precision ionospheric analysis.
|
|
19
|
+
|
|
20
|
+
## Source Code
|
|
21
|
+
|
|
22
|
+
The library source code can be found on the [pytrace GitHub](https://github.com/shibaji7/pytrace) repository.
|
|
23
|
+
|
|
24
|
+
If you have any questions or concerns please submit an **Issue** on the [pytrace GitHub](https://github.com/shibaji7/pytrace) repository.
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
Read the docs: https://pytrace.readthedocs.io/en/latest/
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
import os
|
|
5
|
+
import shutil
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def clean():
|
|
9
|
+
os.system("python setup.py clean --all")
|
|
10
|
+
os.system(
|
|
11
|
+
"rm -rf dist site_build site junit.xml .coverage coverage.xml .pytest_cache .eggs"
|
|
12
|
+
)
|
|
13
|
+
os.system("rm -rf build *.egg-info")
|
|
14
|
+
if os.path.exists("dist/"):
|
|
15
|
+
shutil.rmtree("dist/")
|
|
16
|
+
if os.path.exists("build/"):
|
|
17
|
+
shutil.rmtree("build/")
|
|
18
|
+
os.system("find . -type d -name '.ipynb_checkpoints' -exec rm -rf {} +")
|
|
19
|
+
os.system("find . -type d -name '__pycache__' -exec rm -rf {} +")
|
|
20
|
+
os.system("isort -rc -sl .")
|
|
21
|
+
os.system("autoflake --in-place .")
|
|
22
|
+
os.system("isort -rc -m 3 .")
|
|
23
|
+
os.system("black .")
|
|
24
|
+
os.system("pip install -e .[dev]")
|
|
25
|
+
return
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def build():
|
|
29
|
+
clean()
|
|
30
|
+
os.system("isort -rc -sl .")
|
|
31
|
+
os.system(
|
|
32
|
+
"autoflake --in-place --remove-all-unused-imports=False --imports=SDCarto,scienceplots ."
|
|
33
|
+
)
|
|
34
|
+
os.system("isort -rc -m 3 .")
|
|
35
|
+
os.system("black .")
|
|
36
|
+
os.system("python setup.py sdist bdist_wheel")
|
|
37
|
+
return
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def uplaod_pip():
|
|
41
|
+
clean()
|
|
42
|
+
build()
|
|
43
|
+
os.system("python -m twine upload dist/* --verbose")
|
|
44
|
+
return
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
if __name__ == "__main__":
|
|
48
|
+
parser = argparse.ArgumentParser()
|
|
49
|
+
parser.add_argument(
|
|
50
|
+
"-b", "--build", action="store_true", help="Build the project from scratch"
|
|
51
|
+
)
|
|
52
|
+
parser.add_argument(
|
|
53
|
+
"-rm", "--clean", action="store_true", help="Cleaning pre-existing files"
|
|
54
|
+
)
|
|
55
|
+
parser.add_argument(
|
|
56
|
+
"-rb",
|
|
57
|
+
"--rebuild",
|
|
58
|
+
action="store_true",
|
|
59
|
+
help="Clean and rebuild the project from scratch",
|
|
60
|
+
)
|
|
61
|
+
parser.add_argument(
|
|
62
|
+
"-upip",
|
|
63
|
+
"--upip",
|
|
64
|
+
action="store_true",
|
|
65
|
+
help="Upload code to PIP repository",
|
|
66
|
+
)
|
|
67
|
+
args = parser.parse_args()
|
|
68
|
+
if args.clean:
|
|
69
|
+
clean()
|
|
70
|
+
if args.build:
|
|
71
|
+
build()
|
|
72
|
+
if args.rebuild:
|
|
73
|
+
clean()
|
|
74
|
+
build()
|
|
75
|
+
if args.upip:
|
|
76
|
+
uplaod_pip()
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
digraph DigisondeWorkflow {
|
|
2
|
+
graph [
|
|
3
|
+
rankdir=TB,
|
|
4
|
+
splines=ortho,
|
|
5
|
+
nodesep=0.6,
|
|
6
|
+
ranksep=0.8,
|
|
7
|
+
bgcolor="white"
|
|
8
|
+
];
|
|
9
|
+
|
|
10
|
+
node [
|
|
11
|
+
shape=box,
|
|
12
|
+
style="rounded,filled",
|
|
13
|
+
fontname="Helvetica",
|
|
14
|
+
fontsize=14,
|
|
15
|
+
fillcolor="white",
|
|
16
|
+
color="black",
|
|
17
|
+
penwidth=1.8
|
|
18
|
+
];
|
|
19
|
+
|
|
20
|
+
edge [
|
|
21
|
+
arrowsize=0.9,
|
|
22
|
+
penwidth=1.8
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
// Nodes
|
|
26
|
+
RAW [label="Raw waveforms"];
|
|
27
|
+
|
|
28
|
+
RSF_SBF [label=<
|
|
29
|
+
<B>RSF / SBF</B><BR/>
|
|
30
|
+
<FONT POINT-SIZE="11">Range–frequency representation<br/>Echo detection</FONT>
|
|
31
|
+
>];
|
|
32
|
+
|
|
33
|
+
DFT [label=<
|
|
34
|
+
<B>DFT</B><BR/>
|
|
35
|
+
<FONT POINT-SIZE="11">Doppler-resolved spectra</FONT>
|
|
36
|
+
>];
|
|
37
|
+
|
|
38
|
+
SKY [label=<
|
|
39
|
+
<B>SKY</B><BR/>
|
|
40
|
+
<FONT POINT-SIZE="11">Direction-of-arrival<br/>Skymaps</FONT>
|
|
41
|
+
>];
|
|
42
|
+
|
|
43
|
+
DVL [label=<
|
|
44
|
+
<B>DVL</B><BR/>
|
|
45
|
+
<FONT POINT-SIZE="11">Bulk Doppler<br/>velocity diagnostics</FONT>
|
|
46
|
+
>];
|
|
47
|
+
|
|
48
|
+
SAO [label=<
|
|
49
|
+
<B>SAO</B><BR/>
|
|
50
|
+
<FONT POINT-SIZE="11">Scaled ionospheric<br/>parameters</FONT>
|
|
51
|
+
>];
|
|
52
|
+
|
|
53
|
+
// Main workflow
|
|
54
|
+
RAW -> RSF_SBF;
|
|
55
|
+
RAW -> DFT;
|
|
56
|
+
DFT -> SKY [label="DFT2SKY", fontsize=11];
|
|
57
|
+
SKY -> DVL;
|
|
58
|
+
|
|
59
|
+
// Parallel branch to SAO
|
|
60
|
+
RSF_SBF -> SAO [label="ARTIST5.0", fontsize=11];
|
|
61
|
+
|
|
62
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
table th {
|
|
2
|
+
background-color: hsl(348, 100%, 65%);
|
|
3
|
+
color: white;
|
|
4
|
+
align: left;
|
|
5
|
+
font-weight: bold;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
table td {
|
|
9
|
+
background-color: hsl(217, 71%, 90%);
|
|
10
|
+
align: left;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
turquoise=sl(171, 100%, 41%)
|
|
14
|
+
blue=hsl(217, 71%, 53%)
|
|
15
|
+
green=hsl(141, 71%, 48%)
|
|
16
|
+
yellow=hsl(48, 100%, 67%)
|
|
17
|
+
red=hsl(348, 100%, 61%)
|
|
18
|
+
grey=hsl(0, 3%, 50%)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
blockquote {
|
|
22
|
+
border-left: 5px solid turquoise;
|
|
23
|
+
background: hsl(171, 100%, 90%);
|
|
24
|
+
padding: 10px 30px 10px
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.is-parameter {
|
|
28
|
+
border-left: 5px solid grey;
|
|
29
|
+
background: hsl(0, 3%, 90%);
|
|
30
|
+
padding: 10px 50px 10px
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.is-primary {
|
|
34
|
+
border-left: 5px solid turquoise;
|
|
35
|
+
background: hsl(171, 100%, 90%);
|
|
36
|
+
padding: 10px 30px 10px
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.is-info {
|
|
40
|
+
border-left: 5px solid blue;
|
|
41
|
+
background: hsl(217, 71%, 90%);
|
|
42
|
+
padding: 10px 30px 10px
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.is-feature {
|
|
46
|
+
border-color: green;
|
|
47
|
+
background: hsl(141, 71%, 90%)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.is-note {
|
|
51
|
+
border-color: yellow;
|
|
52
|
+
background: hsl(48, 100%, 90%)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.is-warning {
|
|
56
|
+
border-color: blue;
|
|
57
|
+
background: hsl(348, 100%, 90%)
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
tr:nth-child(even) {
|
|
61
|
+
background-color: #b2b2b2!important;
|
|
62
|
+
color: #f4f4f4!important;
|
|
63
|
+
}
|