View Issue Details

IDProjectCategoryView StatusLast Update
0001832CCdcielGeneralpublic17-11-09 11:54
Reporterhan Assigned ToPatrick Chevalley  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version0.9 
Target Version1.0 
Summary0001832: PlateSolve2 has problems with solving some images if dimensions are a fraction too large.
DescriptionNoted that PlateSolve can't solve some images. It can be fixed by reducing the size 2% lower as calculated. (1% is not enough) Attached an example of a problem file.

fix in procedure TAstrometry_engine.Resolve;
Old:
 buf:=FloatToStr(Fra*deg2rad)+','+
       FloatToStr(Fde*deg2rad)+','+
       FloatToStr(FXsize*deg2rad)+','+
       FloatToStr(FYsize*deg2rad)+','+
       '999,'+
       FInFile+','+
       IntToStr(PlateSolveWait);

New:
 buf:=FloatToStr(Fra*deg2rad)+','+
       FloatToStr(Fde*deg2rad)+','+
       FloatToStr(FXsize*deg2rad*0.98)+','+
       FloatToStr(FYsize*deg2rad*0.98)+','+
       '999,'+
       FInFile+','+
       IntToStr(PlateSolveWait);
Steps To ReproduceNoted also that CCDciel reports CDELT2 about 0.3% too large. Reducing doesn't help
TagsNo tags attached.

Activities

Patrick Chevalley

17-11-09 11:54

administrator   ~0004242

Applied in revision 626, thank you.

https://sourceforge.net/p/ccdciel/code/626/

Issue History

Date Modified Username Field Change
17-11-06 17:04 han New Issue
17-11-09 11:54 Patrick Chevalley Assigned To => Patrick Chevalley
17-11-09 11:54 Patrick Chevalley Status new => resolved
17-11-09 11:54 Patrick Chevalley Resolution open => fixed
17-11-09 11:54 Patrick Chevalley Target Version => 1.0
17-11-09 11:54 Patrick Chevalley Note Added: 0004242