From d750ce6ae9f8b9a36571973e536184af3f8bfa14 Mon Sep 17 00:00:00 2001 From: Garrett 'Karto' Keating Date: Thu, 24 Oct 2024 17:14:12 -0400 Subject: [PATCH] Temporarily removing POINTING table write for MS --- src/pyuvdata/uvdata/ms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyuvdata/uvdata/ms.py b/src/pyuvdata/uvdata/ms.py index 33c9349da..849f666fc 100644 --- a/src/pyuvdata/uvdata/ms.py +++ b/src/pyuvdata/uvdata/ms.py @@ -370,7 +370,7 @@ def write_ms( ms_utils.write_ms_field(filepath, uvobj=self) ms_utils.write_ms_history(filepath, uvobj=self) ms_utils.write_ms_observation(filepath, uvobj=self) - ms_utils.write_ms_pointing(filepath, uvobj=self) + # ms_utils.write_ms_pointing(filepath, uvobj=self) ms_utils.write_ms_polarization(filepath, pol_order=pol_order, uvobj=self) ms_utils.write_ms_source(filepath, uvobj=self) ms_utils.write_ms_spectral_window(filepath, uvobj=self)