You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
501 B
Go
20 lines
501 B
Go
3 years ago
|
package basic
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func Test_ParseStar(t *testing.T) {
|
||
|
//dat := []byte(`2491 9Alp CMaBD-16 1591 48915151881 257I 5423 064044.6-163444064508.9-164258227.22-08.88-1.46 0.00 -0.05 -0.03 A1Vm -0.553-1.205 +.375-008SBO 13 10.3 11.2AB 4*`)
|
||
|
LoadStarData()
|
||
|
out := ""
|
||
|
for _, v := range stardat {
|
||
|
data, _ := parseStarData(v)
|
||
|
out += fmt.Sprintln(data.HD, ",", data.HR)
|
||
|
}
|
||
|
ioutil.WriteFile("./index.csv", []byte(out), 0644)
|
||
|
|
||
|
}
|