...
A text file containing the observer's target list can be loaded and displayed in a separate tab along catalog searches.
Example Format: ????
Code Block |
---|
"HR 173" 00 40 32.9 -23 48 16 2000.0 4.4 -34.2 11.5
"Gl 15 A" 00 18 22.9999 44 01 23 2000 2888.92 410.10 13.5
"DELTA SGE " 19 47 23.2 18 32 03 1950 -4.31 12.35 5.3
(code}
FK6
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
DROP TABLE IF EXISTS `fk6`; CREATE TABLE `fk6` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `FK6` int(11) DEFAULT NULL, `HIP` int(11) DEFAULT NULL, `Flag` varchar(2) DEFAULT NULL, `Name` varchar(19) DEFAULT NULL, `Right_Ascension` double DEFAULT NULL, `Declination` double DEFAULT NULL, `pmRA` double DEFAULT NULL, `pmDE` double DEFAULT NULL, `TRA` double DEFAULT NULL, `e_RA` double DEFAULT NULL, `e_pmRA` double DEFAULT NULL, `TDE` double DEFAULT NULL, `e_DE` double DEFAULT NULL, `e_pmDE` double DEFAULT NULL, `plx` double DEFAULT NULL, `e_plx` double DEFAULT NULL, `f_plx` char(1) DEFAULT NULL, `RV` double DEFAULT NULL, `Vmag` float DEFAULT NULL, `f_Vmag` float DEFAULT NULL, `Kbin1` int(11) DEFAULT NULL, `Kbin2` int(11) DEFAULT NULL, `Kae` int(11) DEFAULT NULL, `lastModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4151 DEFAULT CHARSET=latin1; |
...