From 01dd4f2d38b0b954688a8cc7181a0aa7b7861569 Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Sun, 10 Dec 2023 20:12:40 +0100 Subject: [PATCH] fixed bug due to typo --- pyobs/images/processors/astrometry/_dotnet_request_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyobs/images/processors/astrometry/_dotnet_request_builder.py b/pyobs/images/processors/astrometry/_dotnet_request_builder.py index 6f893165..9b333731 100644 --- a/pyobs/images/processors/astrometry/_dotnet_request_builder.py +++ b/pyobs/images/processors/astrometry/_dotnet_request_builder.py @@ -42,7 +42,7 @@ def _build_request_data(self): "scale_high": scale * 1.1, "radius": self._radius, "crpix-x": self._header["CRPIX1"], - "crpix-y": self._header["CRPIX1"], + "crpix-y": self._header["CRPIX2"], "nx": self._header["NAXIS1"], "ny": self._header["NAXIS2"], "x": self._catalog["x"].tolist(),