Platesolving in script (agin!)

Discussions on extending SharpCap using the built in Python scripting functionality
Post Reply
jrschmidt2
Posts: 11
Joined: Wed Oct 07, 2020 8:54 pm

Platesolving in script (agin!)

#1

Post by jrschmidt2 »

I am following up on a earlier post from about a year ago about platesolving via the script. At that point it seemed like it would require running the tool externally. This is certainly possible, but it would make such a script less general / portable (because it would not be using SharpCap settings, etc.) However, I see from browsing in iPython that SharpCap exposes at least a "BlindSolver" method. This CAN be run and does a blind solve correctly. Unfortunately after completion the "Result" method is null and as such there is no way to access the reuslt.

FYI, the motivation here is that one could basically have a simple software implementation of Celestron's "SkySense", since the CPWI package now has the ability to add reference points into the sky model programmatically. It would be nice to automate this process rather than having to do it manually.
User avatar
admin
Site Admin
Posts: 13173
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: Platesolving in script (agin!)

#2

Post by admin »

Hi,

there is now a way to do this in SharpCap 3.3 – 3.3 introduces a new sequencer tool which gives a more user-friendly way to script SharpCap's functions. The sequencer can trigger the plate solving and resynchronisation code, and it's also possible to run sequence of commands from within the Python scripting.

Code: Select all

SharpCap.Sequencer.RunSequence("MOUNT SOLVEANDSYNC")
That should do exactly what you want, although there is no way to work out whether the plate solve/sync succeeded or not as far as I can tell.

Hope this helps, Robin
jrschmidt2
Posts: 11
Joined: Wed Oct 07, 2020 8:54 pm

Re: Platesolving in script (agin!)

#3

Post by jrschmidt2 »

I see that the SharpCap 3.3 beta now also has a "SolveAndSync" method that returns an asynchronous task. This is super useful! However, any chance that that task could include the return code upon completion indicating whether the platesolve was successful? (I think there is a "Result" property that can be used for this purpose.)
User avatar
admin
Site Admin
Posts: 13173
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: Platesolving in script (agin!)

#4

Post by admin »

Hi,

Yes, that makes sense – no problem

Cheers, Robin
jryd2000
Posts: 1
Joined: Mon Nov 08, 2021 8:52 pm

Re: Platesolving in script (agin!)

#5

Post by jryd2000 »

jrschmidt2 I was wondering if you made any progress on this that you could share. I am trying to go down the same rabbit hole of not adding any alignment points initially in CPWI and then using a SharpCap sequence/script to slew to a few locations in the sky that are not obscured by trees, performing a plate solve and then adding that location to pointing model in CPWI. I hate to reinvent the wheel if you have made some progress.
User avatar
admin
Site Admin
Posts: 13173
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: Platesolving in script (agin!)

#6

Post by admin »

Hi,

from the API side, the call to PlateSolveAndSync now returns a Task<bool>, so you can find out whether it worked or not.

thanks,

Robin
Post Reply