From 8ced9944d4d43c3a4e6711c23dce8846e5509108 Mon Sep 17 00:00:00 2001 From: emile Date: Mon, 8 Oct 2018 15:37:21 +0200 Subject: Deleted csv.go (complete cleanup) --- csv.go | 60 ------------------------------------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 csv.go (limited to 'csv.go') diff --git a/csv.go b/csv.go deleted file mode 100644 index e9d60cb..0000000 --- a/csv.go +++ /dev/null @@ -1,60 +0,0 @@ -// collection of functions reading allready existing stars from a .csv - -package main - -import ( - "encoding/csv" - "fmt" - "os" - "strconv" -) - -// open_stars_csv opens the file defined using the path argument, reads its content and returns -// an array of arrays containing the coordinates of the stars -func open_stars_csv(path string) ([][]string) { - - // open the file in the given path - b, err := os.Open(path) - - // handle errors - if err != nil { - fmt.Println("open_stars_csv panic") - panic(err) - } - - // close the file after reading it's content - defer b.Close() - - // open the file using a csv reader and read it's content - lines, err := csv.NewReader(b).ReadAll() - - // handle errors - if err != nil { - fmt.Println("read_csv panic") - panic(err) - } - - // return the content - return lines -} - -// add_csv_to_stars_arr adds the given stars to the given stars_arr -// the stars that should be added are expected to be stored in a[][]string -func add_csv_to_stars_arr(lines [][]string, stars_arr []star) { - for _, line := range lines { - - // convert the coordinates to float64 - x, _ := strconv.ParseFloat(line[0], 64) - y, _ := strconv.ParseFloat(line[1], 64) - - // create a temporary star for storing the information - temp_star := star{ - coord{x, y}, - force{0, 0}, - 1000000, - } - - // add the temporary star to the stars_arr - stars_arr = append(stars_arr, temp_star) - } -} \ No newline at end of file -- cgit 1.4.1