From 008761e661a62b302a13d54afe267f81e70e98d6 Mon Sep 17 00:00:00 2001 From: JakHolzer <53743814+JakHolzer@users.noreply.github.com> Date: Tue, 10 Nov 2020 18:39:25 +0100 Subject: [PATCH] Update ccl_io.py Added correction for area_s as well as requested by Romain --- pyzebra/ccl_io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyzebra/ccl_io.py b/pyzebra/ccl_io.py index d36bf93..a0fb361 100644 --- a/pyzebra/ccl_io.py +++ b/pyzebra/ccl_io.py @@ -260,6 +260,7 @@ def export_comm(data, path, lorentz=False): corr_factor = np.sin(gamma_angle) * np.cos(nu_angle) area_n = np.abs(area_n * corr_factor) + area_s = np.abs(area_s * corr_factor) area_n_str = f"{area_n:>10.2f}" area_s_str = f"{area_s:>10.2f}"