Description :
Cette fonction n'existe pas spécifiquement pour Astrometry.NET car en fait elle est la combinaison de deux fonctions déjà existantes.
Voir le code joint.
Code : Tout sélectionner
// Données utilisateur :
CameraChamp=1 # Numéro de la caméra
PoseAstrometrieMS=15000 # temps de pose de 15s pour l'astrométrie et la reconnaissance de champ
BinAstrometrie=3 # Binning pour la reconnaissance de champ
SETBINNINGX_EX CameraChamp BinAstrometrie
SETBINNINGY_EX CameraChamp BinAstrometrie
STARTEXPOSURE_EX CameraChamp PoseAstrometrieMS
WAITFORENDEXPOSURE_EX CameraChamp
GETLASTIMAGEEXPOSURE_EX CameraChamp ImgAstrometrie
PLATESOLVE_ASTROM_NET ImgAstrometrie Valid Alpha2000 Delta2000
if Valid=1 then
RAD_TO_RA Alpha2000 Alpha2000$
Chaine$="RA = "+Alpha2000$
PRINT Chaine$
RAD_TO_DEC Delta2000 Delta2000$
Chaine$="DEC = "+Delta2000$
PRINT Chaine$
CALIBRATE_TELESCOPE Alpha2000 Delta2000
PRINT "Telescope recalibré !"
else
PRINT "C'est un échec cuisant !"
endif