diff pkg/imports/agm.go @ 1772:70c4dc694d61

Gauge measurement import: Added a rescale function that brings all numerical values into cm.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 11 Jan 2019 11:36:34 +0100
parents 807569b08513
children fcb0106ec510
line wrap: on
line diff
--- a/pkg/imports/agm.go	Fri Jan 11 11:33:34 2019 +0100
+++ b/pkg/imports/agm.go	Fri Jan 11 11:36:34 2019 +0100
@@ -18,6 +18,7 @@
 	"context"
 	"database/sql"
 	"encoding/csv"
+	"errors"
 	"log"
 	"os"
 	"path/filepath"
@@ -112,5 +113,5 @@
 		log.Printf("%d: %s\n", i, f)
 	}
 
-	return nil, nil
+	return nil, errors.New("Not implemented, yet!")
 }