Fixed problem where the telescope area was in mm when it should be mm squared. And the driver was incorrect by a factor of 1000.
This commit is contained in:
@@ -1355,7 +1355,7 @@ namespace ASCOM.Meade.net
|
||||
{
|
||||
get
|
||||
{
|
||||
var apertureArea = _profileProperties.ApertureArea / 1000;
|
||||
var apertureArea = _profileProperties.ApertureArea / (1000*1000);
|
||||
LogMessage("ApertureArea Get", $"{apertureArea}");
|
||||
return apertureArea;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user