[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

GCVS checking script



OK, here's my first draft at a script to check stars against the GCVS. So
far all it does it check the GCVS, it does not check the NSV or SIMBAD in
general. It's a bit of a hack in that it does an HTTP POST to VizieR and
parses the results. I've attached it. Make sure to check that it has proper
new lines on your system and check the perl path. You need the CGI and LWP
perl modules to use it. I've included comments that tell the basics of using
it.

The gist of it is, you can run it as a one-liner like this:

digital [8:47pm] % cat collected.big | ./wsv3.pl | awk '{ print $1, $4, $5
}' | ./check_stars.pl
Match for 2 at RA=61.7727 DEC=+6.2965:  XY    Tau
No match for 11 at RA=61.8053 DEC=+7.1258:
No match for 16 at RA=61.8132 DEC=+6.3626:
No match for 23 at RA=61.8235 DEC=+7.5687:
No match for 24 at RA=61.8273 DEC=+7.7068:


I reverse sorted the output of wsv3.pl by the ws statistic and when I run it
on that file I get:

digital [8:49pm] % cat mystars.tab | awk '{ print $1, $4, $5 }' |
./check_stars.pl
Match for 32894 at RA=98.6911 DEC=+8.8256:      RW    Mon
Match for 36488 at RA=100.0234 DEC=+7.606:      BE    Mon
Match for 55692 at RA=107.1507 DEC=+6.2406:     AG    CMi
Match for 50325 at RA=104.7095 DEC=+9.623:      UY    Mon
No match for 28162 at RA=96.8778 DEC=+8.4207:
No match for 50118 at RA=104.625 DEC=+8.688:
No match for 61620 at RA=109.2394 DEC=+9.2102:
No match for 14919 at RA=93.3858 DEC=+8.528:
No match for 58999 at RA=108.3394 DEC=+7.0708:
No match for 2900 at RA=78.4233 DEC=+9.1899:
No match for 27872 at RA=96.7723 DEC=+7.6052:
No match for 34080 at RA=99.142 DEC=+7.5767:
No match for 17362 at RA=94.0274 DEC=+6.7774:
No match for 94014 at RA=194.4007 DEC=+7.8199:
No match for 42722 at RA=102.1059 DEC=+7.955:
No match for 15547 at RA=93.5539 DEC=+7.4783:
No match for 58692 at RA=108.2342 DEC=+6.0715:
No match for 665 at RA=63.0322 DEC=+6.1592:
No match for 2471 at RA=66.5371 DEC=+6.0549:
No match for 38088 at RA=100.6114 DEC=+8.291:
Match for 68187 at RA=111.5025 DEC=+6.5271:     ST    CMi
No match for 7311 at RA=82.441 DEC=+8.9626:
...

The vast majority of stars with a WS value > 1 are not in the GCVS. There
are many stars with very high WS values that are not in the GCVS. I know
that doesn't necessarily mean they are variable but encouraging nonetheless.

Let me know your thoughts.

Cheers,
Michael Koppelman
http://www.lolife.com/astronomy/

check_stars.pl