Skip to content

Commit

Permalink
Merge pull request #1668 from dlakaplan/obsname
Browse files Browse the repository at this point in the history
Add full name for observatories
  • Loading branch information
abhisrkckl authored Nov 3, 2023
2 parents 01a5ac0 + bd29643 commit 6cfd2c5
Show file tree
Hide file tree
Showing 5 changed files with 186 additions and 55 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ the released changes.
- `TimingModel.toasigma_derivs` property to get all derivatives functions of scaled TOA uncertainties.
- `ScaleToaError.register_toasigma_deriv_funcs` method to populate derivatives of scaled TOA uncertainties.
- `ScaleToaError.d_toasigma_d_EFAC` and `ScaleToaError.d_toasigma_d_EQUAD` methods.
- Separate `.fullname` for all observatories
### Fixed
- Wave model `validate()` can correctly use PEPOCH to assign WAVEEPOCH parameter
- Fixed RTD by specifying theme explicitly.
Expand Down
2 changes: 2 additions & 0 deletions docs/_ext/sitetable.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ def run(self):
if len(o.aliases) > 0:
entry += nodes.paragraph(text=" (" + ", ".join(o.aliases) + ")")
elif c == "origin":
if o.fullname != o.name:
entry += nodes.strong(text=o.fullname + ".\n")
entry += nodes.paragraph(text=o.origin)
elif c == "location":
loc = o.earth_location_itrf()
Expand Down
Loading

0 comments on commit 6cfd2c5

Please sign in to comment.