changeset 608:bc2b7da07d60

Sounding results: Use correct codes for multipointZ in WKB encoding.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 10 Sep 2018 16:06:22 +0200
parents 21f1f03a8a39
children 6dc1b586328e
files cmd/soundingresults/points.go
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/cmd/soundingresults/points.go	Mon Sep 10 15:55:35 2018 +0200
+++ b/cmd/soundingresults/points.go	Mon Sep 10 16:06:22 2018 +0200
@@ -103,8 +103,8 @@
 
 const (
 	wkbNDR         byte   = 1
-	wkbPointZ      uint32 = 4
-	wkbMultiPointZ uint32 = wkbPointZ + 1000
+	wkbPointZ      uint32 = 1 + 1000
+	wkbMultiPointZ uint32 = 4 + 1000
 )
 
 func (ps points3d) asWKB() string {