Hello from Finland!
I am trying to solve some SeeStar50 images with the local astrometry code. Some files solve but some do not even though they solve online in one second. I would like to know why.
It fails locally with very little information:
INFO:root:solve 1: start
INFO:root:solve 1: slice=[0, 25[ (1 / 4), index="4100/index-4108.fits" (1 / 2)
INFO:root:solve 1: slice=[0, 25[ (1 / 4), index="4100/index-4107.fits" (2 / 2)
INFO:root:solve 1: slice=[25, 50[ (2 / 4), index="4100/index-4108.fits" (1 / 2)
INFO:root:solve 1: slice=[25, 50[ (2 / 4), index="4100/index-4107.fits" (2 / 2)
INFO:root:solve 1: slice=[50, 75[ (3 / 4), index="4100/index-4108.fits" (1 / 2)
INFO:root:solve 1: slice=[50, 75[ (3 / 4), index="4100/index-4107.fits" (2 / 2)
INFO:root:solve 1: slice=[75, 100[ (4 / 4), index="4100/index-4108.fits" (1 / 2)
INFO:root:solve 1: slice=[75, 100[ (4 / 4), index="4100/index-4107.fits" (2 / 2)
No match found!
The code has these "hints":
solver = astrometry.Solver(astrometry.series_4100.index_files(
cache_directory="astrometry_cache",
scales={7,8}))
solution = solver.solve(stars=stars,
size_hint=astrometry.SizeHint(
lower_arcsec_per_pixel=4.0,
upper_arcsec_per_pixel=5.0,
),
position_hint=astrometry.PositionHint(
ra_deg=240.0,
dec_deg=25.9,
radius_deg=1.0,
), solution_parameters=astrometry.SolutionParameters(),
)
best regards,
arto
--