Cooking with Sloan: Solar System: Find Moving Objects
 
DR5 Help
 Site News
 Introduction
 Cooking with Sloan
     - General
     - Solar System
     - Stars
     - Galaxies
     - QSOs/Cosmology
     - Teaching/Labs
 FAQ
 
 Search Form Guide
 SQL Tutorial
 SQL in SkyServer
 Sample SQL Queries
 Graphing
 Query Limits
 Searching Advice
 
 Archive Intro
 Table Descriptions
 Schema Browser
 Glossary
 Algorithms
 Web Browsers
 
 Download
 Data Publications
 API
 SkyServer Sites
 
 Contact Help Desk
Moving Objects

Back to Solar System index

Use SQL to find moving objects (open in new window)


  1. Go to the SQL Search tool (link opens in a new window). From the astronomers' main page, look under Search Tools. From the public main page, look under SkyServer Tools, then Search.

  2. In the main window, type the following query (or use the query box at the bottom of this page):

    SELECT top 100 objID, sqrt( power(rowv,2) + power(colv, 2) ) as velocity
    FROM PhotoObj
    WHERE (power(rowv,2) + power(colv, 2)) > 50
       and rowv >= 0 and colv >=0

    The query returns the object ID and velocity for each of 100 objects seen to be moving. It selects only those objects whose velocity is high enough to be consistent with an asteroid. You can save the query as a CSV (comma-separated value) file by selecting CSV from the Output Format menu of the SQL Search tool. CSV files can be opened by most graphing programs.

  3. You now have a sample of 100 objects that appeared to be moving through the sky when the SDSS imaged them. You can use another tool to view the moving objects.

 

Format HTML XML CSV

Enter your SQL query in the text box. The query is limited to 10 minutes and 100,000 rows.


Next: View the moving objects

  Go to the previous page Go to the next page

Back to Cooking with Sloan main page
Back to Help main page
Contact Help Desk