[Edited March 2019 to reflect updated URLs]
The best way to currently match a large list of objects against any SkyMapper table is to use TOPCAT's Multicone join feature. First, load your list into TOPCAT, then open the Joins->Multicone menu. Place the following into the Cone Search URL:
Then specify the RA and Dec columns from your own table, select a fairly small search radius to avoid contamination (2-3", unless your sources have large proper motions), and hit 'Go'.
Alternatively, you can script up a set of 'wget' commands to the URL above. For example, to get the closest SkyMapper detections within 2" matched to your targets and place the outputs into separate CSV files, you could do something like the following, using one of your RA, Dec positions for each line:
-
wget -q -O - "http://skymapper.anu.edu.au/sm-cone/public/query?CATALOG=dr1.fs_photometry&RA=100.1&DEC=-31.1&SR=0.000556&RESPONSEFORMAT=CSV" > series1.csv
-
wget -q -O - "http://skymapper.anu.edu.au/sm-cone/public/query?CATALOG=dr1.fs_photometry&RA=100.2&DEC=-32.2&SR=0.000556&RESPONSEFORMAT=CSV" > series2.csv
...
(Note that the outputs won't be time-ordered, but you can do that using each row's image_id, which is very nearly the UTC date-time of the observation: YYYYMMDDHHMMSS.)
Cheers,
Christopher Onken
SkyMapper Team