我已经使用https://photutils.readthedocs.io/en/stable/从我的FITS图像中提取星点,这在python中是相对简单和整洁的。
现在,我想匹配从我的图像中提取的“可能”恒星到目录中的恒星,以获得每个像素的星RA坐标。有人在蟒蛇身上做过这种事吗?或者有什么指示?
发布于 2022-07-11 20:01:44
您可以在本地下载、构建和运行astrometry.net代码。
https://astrometrynet.readthedocs.io/en/latest/build.html
http://astrometry.net/doc/readme.html#tricks-and-tips
解决方案字段程序具有可选的参数,这些参数可以加快搜索速度。
SOLVE-FIELD(1) astrometry.net SOLVE-FIELD(1)
NAME
solve-field - Main high-level command-line user interface.
SYNOPSIS
solve-field [options] [image-file-1 image-file-2 ...] [xyls-file-1
xyls-file-2 ...]
[...]
-3 RA, --ra RA
RA of field center for search, format: degrees or hh:mm:ss
-4 DEC, --dec DEC
DEC of field center for search, format: degrees or hh:mm:ss
-5 degrees, --radius degrees
Only search in indexes within 'radius' of the field center given
by --ra and --dec
-d, --depth number or range
Number of field objects to look at, or range of numbers; 1 is
the brightest star, so "-d 10" or "-d 1-10" mean look at the top
ten brightest stars only.
--objs int
Cut the source list to have this many items (after sorting, if
applicable).
[...]
-z, --downsample int
Downsample the image by factor int before running source extraction
https://stackoverflow.com/questions/64663683
复制相似问题