Skip to content

Commit

Permalink
Merge pull request hirokawa#36 from hirokawa/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
hirokawa authored Jul 15, 2024
2 parents fdeb516 + 066e7b4 commit b87f77f
Show file tree
Hide file tree
Showing 27 changed files with 126,846 additions and 1,556 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Execute Python Scripts

on:
push:
branches:
- main
- devel

jobs:
execute-scripts:
name: Execute Python Scripts
runs-on: ubuntu-latest

steps:
- name: Checkout cssrlib-data repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Install dependencies from cssrlib-data repository
run: pip install -r requirements.txt

- name: Get branch name
id: get_branch_name
run: echo "branch_name=$(basename $GITHUB_REF)" >> $GITHUB_OUTPUT

- name: Clone cssrlib repository
run: git clone -b ${{ steps.get_branch_name.outputs.branch_name }} https://github.com/${{ github.actor }}/cssrlib.git

- name: Install dependencies from cssrlib repository
run: |
cd cssrlib
pip install -r requirements.txt
- name: Execute Python scripts
run: |
export PYTHONPATH="../cssrlib/src:$PYTHONPATH"
cd ./samples
for file in $(find . -name "*.py"); do
echo "# Execute $file"
echo "#"
python "$file" > /dev/null
echo "# ...done!"
echo "#"
echo
done
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Pre-installation of CSSRlib is required.

## Prerequisites:

Additional python packages are required as prerequisites and can be installed via the following commands
Additional python packages are required as prerequisites and can be installed via the following command

```
pip install ephem pandas crccheck
pip install -r requirements.txt
```

## Ephemeris: RINEX/TLE
Expand Down
760 changes: 760 additions & 0 deletions data/doy2024-043/043h_rnx.nav

Large diffs are not rendered by default.

55,168 changes: 55,168 additions & 0 deletions data/doy2024-043/043h_rnx.obs

Large diffs are not rendered by default.

Binary file added data/doy2024-043/JPL32T2043h.rtcm3
Binary file not shown.
68,382 changes: 68,382 additions & 0 deletions data/doy223/223v_sbas.txt

Large diffs are not rendered by default.

Loading

0 comments on commit b87f77f

Please sign in to comment.