From f27371c4152a6a90753dc54ee637d6026acaccaf Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Thu, 7 Dec 2023 14:55:25 +0100 Subject: [PATCH 1/2] set crpix1/2 --- pyobs/images/processors/astrometry/_dotnet_request_builder.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyobs/images/processors/astrometry/_dotnet_request_builder.py b/pyobs/images/processors/astrometry/_dotnet_request_builder.py index 2b1c1c9f..6f893165 100644 --- a/pyobs/images/processors/astrometry/_dotnet_request_builder.py +++ b/pyobs/images/processors/astrometry/_dotnet_request_builder.py @@ -41,6 +41,8 @@ def _build_request_data(self): "scale_low": scale * 0.9, "scale_high": scale * 1.1, "radius": self._radius, + "crpix-x": self._header["CRPIX1"], + "crpix-y": self._header["CRPIX1"], "nx": self._header["NAXIS1"], "ny": self._header["NAXIS2"], "x": self._catalog["x"].tolist(), From 664e6a621f49788c6d66652cc6e26dfc476b75f6 Mon Sep 17 00:00:00 2001 From: Tim-Oliver Husser Date: Thu, 7 Dec 2023 14:56:05 +0100 Subject: [PATCH 2/2] v1.6.10 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c4ee201e..9610480c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "pyobs-core" packages = [{ include = "pyobs" }] -version = "1.6.9" +version = "1.6.10" description = "robotic telescope software" authors = ["Tim-Oliver Husser "] license = "MIT"