-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from GreenBankObservatory/cat-devel-merger
Cat devel merger
- Loading branch information
Showing
43 changed files
with
362 additions
and
167 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Template environment file for building the docs | ||
# Copy this to .env, then edit all indicated lines | ||
|
||
# Documentation Settings | ||
export DOCS_ROOT="path/to/dysh/docs" # EDIT ME | ||
export DOCS_HOST="" # EDIT ME | ||
export DOCS_PORT="" # EDIT ME | ||
alias startdocs="cd $DOCS_ROOT && cd source && sphinx-autobuild . _build -b html --host $DOCS_HOST --port $DOCS_PORT" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,4 @@ jobs: | |
pip install -e . | ||
- name: Build with hatch | ||
run: | | ||
hatch build -c | ||
hatch build -c |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
name: Package GUI with Pyinstaller | ||
|
||
on: | ||
push: | ||
branches: [ "cat-devel" ] | ||
pull_request: | ||
branches: [ "cat-devel" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
environment: hatch build | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -e . | ||
- name: Build with hatch | ||
run: | | ||
hatch build -c | ||
- name: Package GUI with PyInstaller | ||
run: | | ||
cd gui | ||
pyinstaller app.py |
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ Why does this exist? | |
:maxdepth: 2 | ||
|
||
gbo_context | ||
sdfits_files | ||
sdfits_files/index |
17 changes: 6 additions & 11 deletions
17
docs/source/background/sdfits_files.rst → ...ce/background/sdfits_files/gbt_sdfits.rst
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
************ | ||
SDFITS Files | ||
************ | ||
|
||
Here are some of the telescopes which use SDFITS files. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
gbt_sdfits |
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ Stuff about the overall design | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
sdfits_loaders | ||
sdfits_loaders | ||
structure |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
********* | ||
Structure | ||
********* | ||
|
||
.. mermaid:: | ||
|
||
erDiagram | ||
SESSION { | ||
int session_id PK, FK | ||
int obsblock_id FK | ||
} | ||
OBSBLOCK { | ||
int obsblock_id PK, FK | ||
int spectrum_id FK | ||
int flag | ||
} | ||
SPECTRUM { | ||
int spectrum_id PK, FK | ||
int flag | ||
} | ||
SPECTRUM_DATA { | ||
int spectrum_id PK, FK | ||
list flags | ||
list frequencies | ||
list intensities | ||
} | ||
|
||
SESSION ||--|{ OBSBLOCK : "has one or more" | ||
OBSBLOCK ||--|{ SPECTRUM : "has one or more" | ||
SPECTRUM ||--|| SPECTRUM_DATA : "has one" |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.