Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

converter for ground based tec from tenet network #1576

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2c3af01
getting there creating first draft of ground based TEC decoder not fu…
BenjaminRuston Nov 6, 2024
2bef6b7
add most of the data extraction now need to loop over records in file
BenjaminRuston Nov 6, 2024
806cfbd
first working version for single record fix PEP8 almost
BenjaminRuston Nov 7, 2024
7ebb16c
fix the looping over the multiple station reports
BenjaminRuston Nov 8, 2024
692cda0
first commit of hopefully working converter for multiple stations
BenjaminRuston Nov 8, 2024
c4d57e6
update converter to only save slant path and add a ctest for converter
BenjaminRuston Nov 19, 2024
1491b56
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Nov 19, 2024
e8614b4
add the changes to converter keeping only slant and using generic epo…
BenjaminRuston Nov 19, 2024
2081c24
Merge branch 'feature/tec_ground_based_tenet' of https://github.com/j…
BenjaminRuston Nov 19, 2024
d5db517
add ground based decoder script to list in CMakeLists
BenjaminRuston Nov 19, 2024
841f298
add input and output to lists in CMakeLists
BenjaminRuston Nov 19, 2024
9be98a9
fix coding norm issue
BenjaminRuston Nov 20, 2024
8c97c48
update sourceFiles attribute for testoutput
BenjaminRuston Nov 20, 2024
8466be3
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Nov 20, 2024
05778f3
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Nov 20, 2024
58ccfb8
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Nov 21, 2024
a7447ea
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Dec 2, 2024
cbb0088
update metaData names to IODA conventions
BenjaminRuston Dec 2, 2024
e34e694
update the testoutput with new metaData names
BenjaminRuston Dec 3, 2024
c3963c0
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Dec 5, 2024
e0efa60
Merge branch 'develop' into feature/tec_ground_based_tenet
BenjaminRuston Dec 6, 2024
64b8179
trigger CI
BenjaminRuston Dec 7, 2024
7b0569e
add observation to ObsValue and out of MetaData add an error estimate
BenjaminRuston Dec 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/gnssro/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ ecbuild_add_executable( TARGET gnssro_gsidiag2ioda

# config for scripts
list(APPEND scripts
gnssro_bufr2ioda.py
gnss_tec_ground_based.py
gnssaro_netcdf2ioda.py
gnssro_AWSopendataNetcdf2ioda.py
gnssro_bufr2ioda.py
)

file( RELATIVE_PATH SCRIPT_LIB_PATH ${CMAKE_BINARY_DIR}/bin ${PYIODACONV_BUILD_LIBDIR} )
Expand Down
Loading