forked from ajstarks/conditions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtides.go
92 lines (80 loc) · 2.16 KB
/
tides.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* tide.go
*
* This file is part of wu. It contains functions related to
* the -tides switch (high and low tide data).
*
* Written and maintained by Stephen Ramsay <[email protected]>
* and Anthony Starks.
*
* Last Modified: Wed Dec 18 16:12:03 CST 2013
*
* Copyright © 2010-2014 by Stephen Ramsay and Anthony Starks.
*
* wu is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* wu is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public License
* along with wu; see the file COPYING. If not see
* <http://www.gnu.org/licenses/>.
*/
package main
import (
"fmt"
"os"
"strconv"
"time"
)
type TideConditions struct {
Tide Tide
}
type Tide struct {
Tideinfo []Tideinfo
Tidesummary []Tidesummary
}
type Tideinfo struct {
Tidesite string
}
type Tidesummary struct {
Date Date // Defined in wu.go
Data Data
}
type Data struct {
Height string
Type string
}
// printTides prints the tidal data for given station to standard out
func PrintTides(obs *TideConditions, stationID string) {
tide := obs.Tide
info := tide.Tideinfo
summary := tide.Tidesummary
if len(summary) == 0 {
fmt.Println("No tidal data available.")
os.Exit(0)
}
fmt.Printf("Tidal data for %s\n", info[0].Tidesite)
var date_string string
var prev_date string
for _, s := range summary {
month, _ := strconv.Atoi(s.Date.Mon)
hour, _ := strconv.Atoi(s.Date.Hour)
prev_date = date_string
date_string = time.Month(month).String() + " " + s.Date.Mday + ", " + s.Date.Year + ":"
if date_string != prev_date {
fmt.Println(date_string)
}
if hour < 13 {
fmt.Printf(" %s at %d:%s AM\n", s.Data.Type, hour, s.Date.Min)
} else {
hour = hour - 12
fmt.Printf(" %s at %d:%s PM\n", s.Data.Type, hour, s.Date.Min)
}
}
}