Mar
28
2009
0

Space Shuttle Update

Space shuttle Discovery is about 3 hours away from their de-orbit burn for an expected landing of (17:39 UTC).

NASA are about to start their go/no-go poll to close the payload bay doors.
(more…)

Written by John Burns in: Astronomy |
Mar
27
2009
0

Image Editing in C# – Contrast

When attempting to get machines to process images you sometimes run into noise problems. Filters are regularly applied first to clean them up.

Editing the contrast of an image changes its dynamic range. In its most basic form, it will move pixel values away from the center (normally 128 if using 8 bits per color).

There are many different ways to to perform contrast adjustment.
(more…)

Written by John Burns in: C# Tips |
Mar
26
2009
0

Comments now require a CAPTCHA to be completed

I’ve been getting around 200 spam comments a day on this site and had to manually sort through them to find the non spam comments. This morning I was finally fed up with comment spam on this site and decided to do something about it.
(more…)

Written by John Burns in: General Randomness |
Mar
23
2009
0

Image Editing in C# – Greyscale

I’m in the process of writing some code to detect the stars in astromical images. One of the filters I need to apply to an image is to convert it to greyscale.

Conversion to greyscale is relatively straightforward – The red, green and blue values of a pixel all need to be set to the same value.

There is one caveat, and that is that our eyes are sensitive to different colors. This means that color images tend to have lots of blue and red when compared to green.
(more…)

Written by John Burns in: C# Tips |
Mar
16
2009
0

More debris on it's way to the space station

While the shuttle is on it’s way to the station, more debris is inbound.

NASA are deciding what to do. They may boost the station up a bit which will mean that the shuttle will get there a day later.

This piece of debris is to pass far closer than last week. Only half a mile this time.

I’m trying to find out exactly which piece is involved and will update this once more information is available.

Written by John Burns in: Astronomy, General Randomness |
Mar
16
2009
1

TLES – First Time Derivative of the Mean Motion

This post is part of a series on understanding the meaning behind the values contained in a Two Line Element set, or Keplerian Elements. The main article is here.

First Time Derivative of the Mean Motion

Engineers like to use long confusing names for some of these fields. This field is sometimes called the “Ballistic Coefficient”.
(more…)

Written by John Burns in: Astronomy |
Mar
16
2009
1

TLEs – Epoch Year and Day

This post is part of a series on understanding the meaning behind the values contained in a Two Line Element set, or Keplerian Elements. The main article is here.

Epoch Year and Day

The epoch is simply the point in time that the two line element set is valid for.
The position of the satellite is supplied as part of the two line element set – The position for a particular point in time can then be calculated from the difference between the Epoch and the time you want to know.
(more…)

Written by John Burns in: Astronomy |
Mar
15
2009
0

Space shuttle still on track for a launch in 30 minutes

Space Shuttle discovery is still on track for a launch at 11:43pm UTC. Weather is perfect and everything looks good.

There is a sleeping bat attached to the external fuel tank however “The bat is not expected to interfere with launch this evening.”.

A live video feed is available here..

Written by John Burns in: Astronomy |
Mar
14
2009
0

Space Shuttle STS-119 still go for a Sunday Launch

After fixing a problem with leaking fuel, Space Shuttle Discovery is still go for Launch on Sunday the 15th March.

Launch time is expected to be 23:43 UTC (Which is 19:43 EDT, or 12:43 Monday NZDT).

More information is available from http://www.nasa.gov/mission_pages/shuttle/main/.

Live video is available from http://www.nasa.gov/multimedia/nasatv/

Written by John Burns in: Astronomy |
Mar
13
2009
1

TLEs – Calculation of the Julian Day Number (JDN)

This post is part of a series on understanding the meaning behind the values contained in a Two Line Element set, or Keplerian Elements. The main article is here.

Calculation of the Julian Day Number (JDN)

Julian day numbers are regularly used in astronomy instead of a date.

Julian day numbers are simply the count of days that have elapse since noon on January 1, 4713 BC Greenwich time using the Julian proleptic calendar.
(more…)

Written by John Burns in: Astronomy, C# Tips |