0.1.4 i know versining doesnt work like this but stfu also did sum testin

This commit is contained in:
Peder Vatn Austad
2024-05-20 16:17:52 +02:00
parent b7efbbd33a
commit 7ef3118545

21
main.go
View File

@@ -130,7 +130,7 @@ type Data struct {
func main() { func main() {
// Fetch data from entur // Fetch data from entur
resp, err := http.Get("https://api.entur.io/realtime/v1/rest/et?maxSize=5") resp, err := http.Get("https://api.entur.io/realtime/v1/rest/et?maxSize=100")
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }
@@ -299,5 +299,24 @@ func printData(data *Data) {
// Print the JSON string for the current journey // Print the JSON string for the current journey
fmt.Println(string(jsonString)) fmt.Println(string(jsonString))
fmt.Println("Calls:")
for _, recordedCall := range journey.RecordedCalls {
for _, call := range recordedCall.RecordedCall {
if call.StopPointRef != "" {
fmt.Println("RecordedCall StopPointRef:", call.StopPointRef)
fmt.Println("RecordedCall Order:", call.Order)
}
}
}
for _, estimatedCall := range journey.EstimatedCalls {
for _, call := range estimatedCall.EstimatedCall {
if call.StopPointRef != "" {
fmt.Println("EstimatedCall StopPointRef:", call.StopPointRef)
fmt.Println("EstimatedCall Order:", call.Order)
}
}
}
} }
} }