Bought it... GRLevel3 that is... Still playing around with it so I'm still learning.
Also, how did you cut off the dBZ bar and integrate your own that is part of the radar image?
The first thing I didn't like was the big ugly black box on the side.... plus, it looks like everybody elses.. can't have that...
So, thinking outside of the box...
What I did was create my own bottom...

Then using convert (ImageMagick) on the server side...
o Cropped the image that GRLevel3 spit out.
/usr/local/bin/convert br1.jpg -crop 590x590+50+0 br1a.jpgo Added the new bar that I created into the image
/usr/local/bin/convert br1a.jpg grlevel3-bot.gif -append br1b.jpgo Now I add my logo to the bottom left of the image
This is a Transparent GIF image...
/usr/local/bin/composite -gravity SouthWest tws-grlevel3-logo.gif br1b.jpg br1c.jpgo Then added the top Phoenix part....
This is also a transparent GIF image...
/usr/local/bin/composite -gravity NorthWest tws-grlevel3-topbox.gif br1c.jpg br1d.jpgThis is all wrapped in a script that is called by Cron every 2 minutes (until I get code in it to detect a new image upload). It moves the completed image to the image that I actually use so that you don't ever get a partial image (due to upload).
I am now working on a smaller version that will be used for my PDA page.