Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ the released changes.
- Moved altitude calculation to TOAs object, to make it only happen once
- `WidebandDownhillFitter` now handles correlated noise correctly.
- `pintk` Diff/Unc calculation now uses post-fit uncertainties.
- Updated GMRT coordinates.
### Added
- Plot whitened DM residuals in pintk.
- `ssb_to_psb_xyz_ECL` and `ssb_to_psb_xyz_ICRS` are now cached
Expand Down
8 changes: 4 additions & 4 deletions src/pint/data/runtime/observatories.json
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,12 @@
"clock_fmt": "tempo2",
"clock_file": "",
"itrf_xyz": [
1656342.3,
5797947.77,
2073243.16
1657059.36,
5797913.14,
2073026.71
],
"fullname": "The Giant Metre-wave Radio Telescope (GMRT)",
"origin": "The origin of this data is unknown but as of 2021 June 8 it agrees exactly with\nthe values used by TEMPO and TEMPO2.\nGMRT does not need clock files as the data is recorded against UTC(gps)."
"origin": "Data provided by the InPTA team on 5 Jun 2026."
},
"ort": {
"aliases": [
Expand Down
2 changes: 1 addition & 1 deletion src/pint/observatory/topo_obs.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def __repr__(self):
if self.fullname != self.name
else self.origin
)
return f"TopoObs('{self.name}' ({','.join(aliases)}) at [{self.location.x}, {self.location.y} {self.location.z}]:\n{origin})"
return f"TopoObs('{self.name}' ({','.join(aliases)}) at [{self.location.x}, {self.location.y} {self.location.z}]:\n({origin})"

@property
def timescale(self):
Expand Down
Loading