From a3ef37964dd36f9fc6cd32b494421a6bbde7d368 Mon Sep 17 00:00:00 2001
From: Since <ax20yhum@cip.cs.fau.de>
Date: Thu, 4 May 2017 18:09:45 +0200
Subject: [PATCH] Document time fields in Composite struct

---
 radolan.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/radolan.go b/radolan.go
index 3d39c18..cfdce27 100644
--- a/radolan.go
+++ b/radolan.go
@@ -60,9 +60,9 @@ import (
 type Composite struct {
 	Product string // composite product label
 
-	CaptureTime  time.Time
-	ForecastTime time.Time
-	Interval     time.Duration
+	CaptureTime  time.Time     // time of source data capture used for forcasting
+	ForecastTime time.Time     // data represents conditions predicted for this time
+	Interval     time.Duration // time duration until next forecast
 
 	Data [][]RVP6 // rvp-6 data for each point [y][x]
 
-- 
GitLab