×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

New Internal Solver for Mac, Windows, and Linux -- Testing/ Experiments needed

  • Posts: 2877
  • Thank you received: 812
Cerro Torre,

I believe the code you are looking for is in Ekos/Align.cpp. and is in the method calculateFOV, though it might be someplace else too.
3 years 6 months ago #61641

Please Log in or Create an account to join the conversation.

  • Posts: 1119
  • Thank you received: 182

Interesting! But now the real question: Why on Earth would the scale be different? Both images where acquired with the same camera, same exact exposure setting, i.e. same Capture file, same Scheduler file, same filter (Halpha), same target (same exact position), same telescope (NOTHING was touched). The only difference is the time at which they were acquired.

What would have led to the difference in the scale????? Kstars recorded that scale, not me.

PS: Just to clarify: What do you mean with 'first image'? 010 or 215? Because 010 did not solve for me, 215 did!
Last edit: 3 years 6 months ago by Jose Corazon.
3 years 6 months ago #61642

Please Log in or Create an account to join the conversation.

  • Posts: 2877
  • Thank you received: 812
Greg,

Jasem also mentioned to me that this is the nightly stellarsolver build:

www.google.com/url?q=https://code.launch...jeynXHjYhhooqFA1n6_A
3 years 6 months ago #61643

Please Log in or Create an account to join the conversation.

  • Posts: 2877
  • Thank you received: 812
El Corazon, that is a really good question indeed. I don't know the answer, but it is worth investigating. At the moment I am very much focused on getting StellarSovler perfected in KStars, but I can mention it to Jasem.
3 years 6 months ago #61644

Please Log in or Create an account to join the conversation.

  • Posts: 1119
  • Thank you received: 182
Thanks, Rob!

I think I found the problem, but I cannot explain it!

In the FITS header for file 010, the one that did not solve for me, the focal length and aperture parameters for my GUIDE SCOPE was recorded, NOT for my imaging scope!!!

Image 215 has the focal length and aperture of my imaging scope recorded correctly and that one solved.

That explains the difference in the scale and the failure.

But that does not change the question:

How is that possible? Needless to say, I did not change the parameters in the mount setup profile for my imaging/guide cam configuration. The pixel dimensions are recorded correctly. Yet somehow Kstars switched to my guide cam specifications during capture without changing to that camera (which would have been an ASI120MM-S, so very different sensor and pixel dimensions).

Jo
3 years 6 months ago #61646

Please Log in or Create an account to join the conversation.

  • Posts: 2877
  • Thank you received: 812
I just let Jasem know, that's pretty crazy!!

So its a good thing you are testing my solver, because you probably wouldn't have found this issue otherwise.
3 years 6 months ago #61647

Please Log in or Create an account to join the conversation.

  • Posts: 152
  • Thank you received: 20
Thanks Rob. I built StellarSolver from source and it got kstars to build. Alas, kstars segfaults when I connect to any equipment now, including the sims. Not sure if this is the thread to troubleshoot that tho, or if I should just wait for the next commit to master.

Greg
3 years 6 months ago #61649

Please Log in or Create an account to join the conversation.

  • Posts: 2877
  • Thank you received: 812
HI Greg,

Yes that sounds unrelated to StellarSolver. Probably start a new thread for that or see if anybody else has already had that problem.

Thanks,

Rob
3 years 6 months ago #61650

Please Log in or Create an account to join the conversation.

  • Posts: 2877
  • Thank you received: 812
Jo,

Jasem said he thinks you might have selected the guide scope in the Align Module. It is under "Solution Coordinates." is that possible?

Thanks,

Rob
3 years 6 months ago #61651

Please Log in or Create an account to join the conversation.

  • Posts: 219
  • Thank you received: 41
I think that the problem reported by Jo it's a real one. I've seen it before. Some times I use the align module with the guide scope and then, when I change to the main telescope to generate accurate WCS entries on the main image, so I can fine tunning the framing of a target. When I latter select again the guider, sometimes the FL on the final images is from the guidescope,

Jo, do you remember if you have been changing between guidescope and main telescope?
3 years 6 months ago #61652

Please Log in or Create an account to join the conversation.

  • Posts: 219
  • Thank you received: 41

I've pulled down three hours ago, but nothing new was on the repo.
3 years 6 months ago #61653

Please Log in or Create an account to join the conversation.

  • Posts: 106
  • Thank you received: 4
The reported scale range remains between 0.638705 to 0.780639 arcsec/pixel though I found in align.cpp the function definition

void Align::calculateFOV()

where I changed the values from 0.9 to 0.7 and from 1.1 to 1.3

if (opsAstrometry->kcfg_AstrometryUseImageScale->isChecked())
{
// code
else
{
opsAstrometry->kcfg_AstrometryImageScaleLow->setValue(fov_pixscale * 0.7);
opsAstrometry->kcfg_AstrometryImageScaleHigh->setValue(fov_pixscale * 1.3);

// 10% boundary
Options::setAstrometryImageScaleLow(fov_pixscale * 0.7);
Options::setAstrometryImageScaleHigh(fov_pixscale * 1.3);
}

Is it possible to give the user the option to extend the range instead of hardcoding those (arbitrary?) values? Or better: is it possible to calculate the range before the solver runs?
Powered by

GNU / Linux
Git
KDE neon
KStars | EKOS | INDI

and some cheap hardware
3 years 6 months ago #61655

Please Log in or Create an account to join the conversation.

Time to create page: 0.373 seconds