Basic Data |
|
include('Basic_data.php');
?>
|
|
Optical Spectrum
|
print " ";
?>
|
|
Identified Lines
|
| Line | Line Center (rest) | Line Center (observed) |
$fp=fopen("catalogs/".$gal."_lineinfo.txt","r");
while (!feof($fp))
{
$data=fgets($fp,600);
$d_array=explode(",", $data);
if ($d_array[1] > 0.0){
print "| $d_array[0] | $d_array[1] | $d_array[2] | ";
}
}
?>
|
|