View Single Post
  #31  
Old 17-03-2006, 08:10 AM
OneOfOne's Avatar
OneOfOne (Trevor)
Meteor & fossil collector

OneOfOne is offline
 
Join Date: Jul 2005
Location: Bentleigh
Posts: 1,386
With the weather in Melbourne lately, my observing procedure consists of:

procedure ObservingSession;
begin
StickHeadOutside;
CloudCover := GetPercentageCloudCover;
If CloudCover > 50 then
goto Bed
else
begin
WaitHours(1);
CloudCover := GetPercentageCloudCover;
if CloudCover > 50 then
goto Bed
else
begin
CrossFingers;
GetOutScope;//this function is rarely used!
end;
end;
end;

BTW, I am a computer programmer...
Reply With Quote