-
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 #391 from GreenBankObservatory/docs-redesign-gbtdocs
Redesign of the docs
- Loading branch information
Showing
31 changed files
with
668 additions
and
154 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 |
---|---|---|
@@ -1,11 +1,95 @@ | ||
/* Remove width restriction on content so that diagrams | ||
are more visible */ | ||
.wy-nav-content { | ||
max-width: none; | ||
} | ||
|
||
/* Override the logo/searchbar background color; | ||
it conflicts with the logo color */ | ||
.wy-side-nav-search { | ||
background-color: #C6B9D2; | ||
} | ||
are more visible */ | ||
.wy-nav-content { | ||
max-width: none; | ||
} | ||
|
||
/* Override the logo/searchbar background color; | ||
it conflicts with the logo color */ | ||
.wy-side-nav-search { | ||
background-color: #C6B9D2; | ||
} | ||
|
||
.black { | ||
color: black; | ||
} | ||
|
||
.gray { | ||
color: gray; | ||
} | ||
|
||
.grey { | ||
color: gray; | ||
} | ||
|
||
.silver { | ||
color: silver; | ||
} | ||
|
||
.white { | ||
color: white; | ||
} | ||
|
||
.maroon { | ||
color: maroon; | ||
} | ||
|
||
.red { | ||
color: red; | ||
} | ||
|
||
.magenta { | ||
color: magenta; | ||
} | ||
|
||
.fuchsia { | ||
color: fuchsia; | ||
} | ||
|
||
.pink { | ||
color: pink; | ||
} | ||
|
||
.orange { | ||
color: orange; | ||
} | ||
|
||
.yellow { | ||
color: yellow; | ||
} | ||
|
||
.lime { | ||
color: lime; | ||
} | ||
|
||
.green { | ||
color: green; | ||
} | ||
|
||
.olive { | ||
color: olive; | ||
} | ||
|
||
.teal { | ||
color: teal; | ||
} | ||
|
||
.cyan { | ||
color: cyan; | ||
} | ||
|
||
.aqua { | ||
color: aqua; | ||
} | ||
|
||
.blue { | ||
color: blue; | ||
} | ||
|
||
.navy { | ||
color: navy; | ||
} | ||
|
||
.purple { | ||
color: purple; | ||
} |
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
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 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,58 @@ | ||
.. _explanations: | ||
|
||
############################################### | ||
:octicon:`repo;2em;purple` Explanation Material | ||
############################################### | ||
|
||
Big-picture explanations of higher-level concepts. Most useful for building understanding of a particular topic. | ||
|
||
dysh | ||
==== | ||
|
||
.. grid:: 1 2 2 2 | ||
|
||
.. grid-item-card:: | ||
:shadow: md | ||
:margin: 2 2 0 0 | ||
|
||
:octicon:`container;3em;green` **ScanBlock** | ||
|
||
What is a ScanBlock? | ||
|
||
.. button-link:: scanblock/index.html | ||
:color: primary | ||
:tooltip: Details of what is a ScanBlock | ||
:outline: | ||
:click-parent: | ||
|
||
ScanBlock | ||
|
||
|
||
SDFITS | ||
====== | ||
|
||
.. grid:: 1 2 2 2 | ||
|
||
.. grid-item-card:: | ||
:shadow: md | ||
:margin: 2 2 0 0 | ||
|
||
:octicon:`file;3em;green` **SDFITS** | ||
|
||
What are SDFITS files? | ||
|
||
.. button-link:: sdfits/index.html | ||
:color: primary | ||
:tooltip: SDFITS details | ||
:outline: | ||
:click-parent: | ||
|
||
SDFITS | ||
|
||
|
||
.. toctree:: | ||
:hidden: | ||
:maxdepth: 3 | ||
|
||
scanblock/index | ||
sdfits/index |
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,42 @@ | ||
.. _scanblocks: | ||
|
||
######### | ||
ScanBlock | ||
######### | ||
|
||
.. mermaid:: | ||
|
||
flowchart TD | ||
|
||
subgraph newLines[GBTFITSLoad | ||
50 Scans | ||
Position Switching | ||
Dual Linear Polarization | ||
1 Beam | ||
4 Frequency Windows | ||
100 integrations each | ||
] | ||
|
||
|
||
|
||
|
||
end | ||
|
||
|
||
newLines -- getps( scan=45, plnum=1, ifnum=0 ) --> ScanBlock1 | ||
newLines -- gettp( scan=[17,18,19], intnum=np.r_[50:100], ifnum=2 ) --> ScanBlock2 | ||
|
||
|
||
|
||
subgraph ScanBlock1[ScanBlock] | ||
psscan["spectra.scan.PSScan<br />scans = 44,45<br />plnum = 1<br />ifnum = 0<br />intnum = (0,100)"] | ||
end | ||
subgraph ScanBlock2[ScanBlock] | ||
tpscan1["spectra.scan.TPScan<br />scan=17<br />plnum = 0<br />ifnum = 2<br />intnum=(50,100)"] | ||
tpscan2["spectra.scan.TPScan<br />scan=18<br />plnum = 0<br />ifnum = 2<br />intnum=(50,100)"] | ||
tpscan3["spectra.scan.TPScan<br />scan=19<br />plnum = 0<br />ifnum = 2<br />intnum=(50,100)"] | ||
|
||
end | ||
|
||
ScanBlock1[Scan Block] -- timeaverage() --->spectrum1[Spectrum] | ||
ScanBlock2[Scan Block] -- timeaverage() --->spectrum2[Spectrum] |
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,7 @@ | ||
.. _sdfits-explanation: | ||
|
||
############ | ||
SDFITS Files | ||
############ | ||
|
||
This section is empty for now, but you can check the column definitions :ref:`here <sdfits-reference>`, or the SDFITS convention as defined in `AIPS++ <https://casa.nrao.edu/aips2_docs/notes/236/node14.html>`_ or at `ADASS IX <https://www.aspbooks.org/a/volumes/article_details/?paper_id=20663>`_, or `the registered SDFITS convention <https://fits.gsfc.nasa.gov/registry/sdfits.html>`_. |
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
Oops, something went wrong.