Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Space Hardware Hacking Python Build

DIY Satellite Tracking 30

Travis Goodspeed has authored a blog post detailing his method of tracking low-earth-orbit satellites. Starting with an old Felcom 82B dish made for use on maritime vessels, he added motors to move it around and a webcam-based homemade calibration system. "For handling the radio input and controlling the motors, I have a BeagleBone wired into a USB hub. These are all mounted on the trunk of the assembly inside of the radome, sending data back to a server indoors. ... In order to operate the dish, I wanted both a flashy GUI and concise scripting, but scripting was the higher priority. Toward that end, I constructed the software as a series of daemons that communicate through a PostgreSQL database on a server inside the house. For example, I can run SELECT * FROM sats WHERE el>0 to select the names and positions of all currently tracked satellites that are above the horizon. To begin tracking the International Space Station if it is in view, I run UPDATE target SET name='ISS';. For predicting satellite locations, I wrote a quick daemon using PyEphem that fetches satellite catalog data from CelesTrak. These positions are held in a database, with duplicates filtered out and positions constantly updated. PyEphem is sophisticated enough to predict in any number of formats, so it's easy to track many of the brighter stars as well as planets and deep-space probes, such as Voyagers 1 and 2."
This discussion has been archived. No new comments can be posted.

DIY Satellite Tracking

Comments Filter:
  • Ok, maybe (Score:4, Insightful)

    by Brett Buck ( 811747 ) on Wednesday July 24, 2013 @12:24AM (#44367845)

    Perhaps you can take and antenna and point it where you think Voyager might be with this sort of equipment. I am extremely skeptical that you can "track" it, that is, lock on to the carrier and then follow it. I bet you can't see the carrier at all, much less see the data.

         

    • Maybe you should read the part where it says "low earth orbit"
      • by batkiwi ( 137781 )

        From the summary:

        "so it's easy to track many of the brighter stars as well as planets and deep-space probes, such as Voyagers 1 and 2."

      • Re:Ok, maybe (Score:4, Interesting)

        by Anonymous Coward on Wednesday July 24, 2013 @12:50AM (#44367927)

        Maybe "low" is relative... ;)

      • Comment removed (Score:5, Interesting)

        by account_deleted ( 4530225 ) on Wednesday July 24, 2013 @02:34AM (#44368185)
        Comment removed based on user account deletion
        • by plover ( 150551 )

          I have a better question....why? Why would you go to this much trouble when you can use the free Stellarium [stellarium.org] and know where pretty much everything visible (and not visible unless you have a big ass telescope) and just call it a day? It can even control a telescope for you, just slap it on a netbook, wire it to the telescope and there ya go, easy peasy.

          Aside from the fact that PyEphem is probably the most ridiculously thorough ephemeris calculator available, and is an optimal tool when you are pointing one piece of equipment at one single target?

          I know, let's check with Stellarium's own documentation [stellarium.org] on the subject:

          "As of the current version, this plug-in doesn't allow satellite tracking, and is not very suitable for Moon or planetary observations."

          I noticed a distinct lack of both easy and peasy in that statement. Does that answer your question of "why?

    • Re:Ok, maybe (Score:4, Insightful)

      by Ozoner ( 1406169 ) on Wednesday July 24, 2013 @01:16AM (#44368027)

      The article says right there in the heading ".. so it's easy to track many of the brighter stars as well as planets and deep-space probes, such as Voyagers 1 and 2"

      Also there's a big difference between tracking and locking-on. Most big systems (eg NASA) simply track the target (based on precise ephemerals) because extracting the signal from the noise (post processing) takes far to long for locking-on to be practical.

      Plus the beam-width of even a huge dish is far to wide to allow locking-on to be of much advantage. You can nod the dish a little and extract revised ephemerals after the event, but that's about all.

    • Actually, if you'd read TFA you'd have come across the text saying "In the screenshot above, the dish is aimed at GOES 3 and has just been ordered to aim at Voyager 1"

      So let me get this straight. You've just publicly called this guy a liar, based on what - did the Force tell you he's full of shit? You bet he can't see the carrier at all? OK, email the guy and make a wager - put your money where your cynical mouth is.

      This guy did something geeky and cool. It's not a new idea, but he's been good enough to blo

  • This is news? (Score:5, Informative)

    by Ozoner ( 1406169 ) on Wednesday July 24, 2013 @01:02AM (#44367971)

    Amateur Radio operators have been automatically tracking satellites for decades and the tracking ephemeral's have been published forever.

    Searching Google for "amateur satellite tracking" gets around 10 pages of hits.

    Never mind. This is Slash Dot...

    • Re:This is news? (Score:4, Insightful)

      by Anonymous Coward on Wednesday July 24, 2013 @01:43AM (#44368097)

      This isn't as much tracking them in the sense of figuring out where they are, but rather tracking them by controlling a dish, which is way cooler.

      • Re:This is news? (Score:5, Informative)

        by CQDX ( 2720013 ) on Wednesday July 24, 2013 @03:54AM (#44368373)
        Yes, but computer controlled az/el rotors to track satellites is not new, at least not to ham radio. Just one of many examples: http://www.youtube.com/watch?v=bXWF09gPUSs [youtube.com]
      • by Ozoner ( 1406169 )

        > This isn't as much tracking them in the sense of figuring out where they are, but rather tracking them by controlling a dish.

        Idiot. Of course the Hams are automatically steering their Satellite dishes. What on earth do you think they are doing?

        It's tragic how some computer geeks live in a bubble hermetically sealed from the rest of the scientific world.

    • Re: (Score:2, Funny)

      by Zynder ( 2773551 )
      You got that wrong. You should have typed:

      THIS IS SLASHDOT! Followed by a swift kick to the groin.
  • by tibit ( 1762298 ) on Wednesday July 24, 2013 @01:20AM (#44368037)

    Using an SQL database as means of interprocess communication, wow.

    • by Greyfox ( 87712 ) on Wednesday July 24, 2013 @03:05AM (#44368265) Homepage Journal
      Hmm. I didn't put a whole lot of effort into mine. I roll a TCP socket server that pretends to be a HTTP daemon and returns a KML file to Google Earth through a network link. Initially it was set up to read a data file with an ephemeris table for a satellite in it and plot a chunk of the satellite's orbit and its current location as a placemark. I'd just feed two or three interesting satellites worth of interesting data into it, running each one on a separate port.

      Lately I've been using the same coordinates library to generate static KML files of GPS tracks in Google Earth. These files don't have the same realtime interest that the satellite tracking one does, since the GPS tracks are being gathered earlier and being batched processed. I have several C++ libraries up on Github, [github.com] if you're curious.

    • If the stream of data is slow enough... Such servers as Firebird can post update notifications to interested clients, for example, so it's not like you have to poll for the changes or something.
    • Then drop him a line and collaborate on something that is "better". It works for him, so what's the big deal?
      Honestly, I'm having a hard time getting the nerd-hate this article is garnering.

      • by tibit ( 1762298 )

        I know the value of a hack that works, but there's plenty of such hacks that are TDWTF material at the same time. No hate implied.

        • Cool - sorry I took your post the wrong way - I was a little pissed at the level of meh this story was generating...

  • Give whole new meaning to the DROP command.
  • Thirty years ago... (Score:5, Interesting)

    by ctrl-alt-canc ( 977108 ) on Wednesday July 24, 2013 @04:31AM (#44368479)
    ,,,I tracked NOAA and OSCAR satellites using a polar Earth map upon which I superimposed a orbit-shaped transparent ruler. I then used NASA data, Kepler's equations and a desk calculator to compute the right ascension of the orbits that crossed my reception zone, and I set the ruler accordingly. While I was receiving satellite data I had to read on the ruler the satellite position and move my antennas, while another ruler gave me the amount of Doppler correction. Doing all these tasks alltogether was messy, but it was one of the funniest and more rewarding things I ever did when I was involved with ham radio. I don't think that if I had a computer to automate everything, I would have enjoyed this that much...
    • by nojayuk ( 567177 ) on Wednesday July 24, 2013 @07:37AM (#44369001)

      I worked with the OSCAR Euro command people for a while in the early 80s at the University of Surrey. We had an ex-Navy AA radar X-Y director head on the roof of the building with some Yagis strapped to it to track the satellites and a microcomputer to do the tracking for us as well as sending control commands to the OSCARs as they went by.

      The guy in charge was someone you might have heard of, a Ph. D. student name of Martin Sweeting who was busy designing and building cheap satellites; his thesis project was something called UOSAT-1.

  • by ze_jua ( 910531 ) <jailh@@@free...fr> on Wednesday July 24, 2013 @05:02AM (#44368537)

    UPDATE target SET name='ISS'

    It sounds like a quote of any James Bond vilain :)

THEGODDESSOFTHENETHASTWISTINGFINGERSANDHERVOICEISLIKEAJAVELININTHENIGHTDUDE

Working...