David's Astronomy Pages
|
Notes (S971) |
Notes Main |
Home Page |
Notes (S973) |
Session Aims & Highlights | |
- Observing Result - Night Summary Plot - Session Event Log |
|
Operational Issues | |
- Critical Issues (0),
Major Issues (0),
Minor Issues (3),
Small Defects (5), Continuous Improvement
(13) |
|
Images from 2022-02-15 >> [ Local Files >> ] | |
2022-02-19 | |
---|---|
AstroMain - New 'Observing Conditions' Hub | |
Main aims
Equipment & Software
Highlights
Summary Plots & Logs
Observing Plan | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Observing Result |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Dome & Scope Slewing Performance | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Slew/Centering Performance | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Guiding Performance Reasons for poor Dec guiding :
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Sky Conditions (Locate Frames) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Night Sky Summary Plot Top axis: Sky Brightness at Zenith (in ADU/s) Lefthand axis: Local Time (hh LT). Righthand axis: Sun Altitude (degs) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Actual Weather vs Pre-Session Weather Forecast |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Session Event Log | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Session Alerts | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Back to Top
PaintShopProPath = "C:\Program Files
(x86)\Paint Shop Pro 5\Psp.exe"
System.Diagnostics.Process.Start(PaintShopProPath, """" + ImagePath + """")
Back to Top
Introduction. A classEnviroment class with the
object instance name 'Env' has been previously been created (Environment.vb)
but has limited breadth and useage at present. Implementing a
fully functional 'Environment' / Observing Condition Hub object would
have the benefit of hiding the detail of how sensor values are read into
AstroMain program by different services (CloudSensor, WeatherStation,
Synopsis, ObsEnv) from the main program elements (Obs.Manager,
ObsConsole/GUI, ObsViewer & Globals).
Whilst the ASCOM
ObservingConditions object and the ASCOM ObservingConditions Hub has their
strengths, neither was considered suitable for the role needed where a
wider range of environmental properties are available for use by the
Obs.Manager and Obs.Monitor.
It was recognised that development of
the new class and its gradual adoption can run in parallel to existing
objects/arrays/process, and this should significantly reduce the risk to
live sessions in the meantime.
Inititally it was thought that it might take a while to implement,
but the main phase implementation was coded within a couple of days working
on an AstroMain 3.50 base and successfully used as AstroMain 3.50.1 during
live session S973, 2022-02-20.
Implementation. There were 2 areas of implementation
1) Creation of the extended 'classEnvironment' class object, with
2) Refactoring code in ObsConsole, ObsManager, ObsViewer, Globals to use
new Env Properties and Methods
Outline description of new object methods and properties
Base | SubObject | Method | Data Source | Notes | ||
Env | Method | . | DataIsValid (PropertyName) | various | Returns boolean | |
Env | Method | . | TimeOfLastUpdate (PropertyName) | various | Returns date | |
Env | Method | . | TimeSinceLastUpdate (PropertyName) | various | Returns double, in seconds | |
Env | Method | . | SecondsSinceLastUpdate (PropertyName) | various | Returns double, in seconds | |
Env | Method | . | MinutesSinceLastUpdate (PropertyName) | various | Returns double, in minutes | |
Env | Property | Clarity | CloudSensorData.Clarity | sensor reading (unitless) | ||
Env | Property | . | Rain | CloudSensorData.Rain | sensor reading (unitless) | |
Env. | Property | . | Light | CloudSensorData.Light | sensor reading (unitless) | |
Env | Property | . | SkyTemperature | CloudSensorData.SkyTemperature | sensor reading (deg C) | |
Env | Property | . | MvAvClarity | CloudSensorData.MvAvClarity | calculated (unitless) | |
Env | Property | Wind Speed | WeatherData.WindSpeed | |||
Env | Property | .Relay | ||||
To be completed | ||||||
Back to Top
This Web Page: | Notes - Session 972 (2022-02-15) |
Last Updated : | 2024-03-22 |
Site Owner : | David Richards |
Home Page : | David's Astronomy Web Site |