From 76cdbb7479bbce642f28ccbecbfa158d8c79eed3 Mon Sep 17 00:00:00 2001 From: John ZuHone Date: Sat, 28 Aug 2021 22:14:44 -0400 Subject: [PATCH] The order for the y-axis was wrong here --- yt/visualization/fits_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt/visualization/fits_image.py b/yt/visualization/fits_image.py index 6c89569464..bc65793586 100644 --- a/yt/visualization/fits_image.py +++ b/yt/visualization/fits_image.py @@ -848,7 +848,7 @@ def sanitize_fits_unit(unit): # This list allows one to determine which axes are the # correct axes of the image in a right-handed coordinate # system depending on which axis is sliced or projected -axis_wcs = [[1, 2], [0, 2], [0, 1]] +axis_wcs = [[1, 2], [2, 0], [0, 1]] def construct_image(ds, axis, data_source, center, image_res, width, length_unit):