comparison cmd/octree2contour/store.go @ 718:c0bba602b60e octree

octree: define a type for LineStringZ.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 21 Sep 2018 14:47:44 +0200
parents a9783d8f74ed
children 5af9ab39e715
comparison
equal deleted inserted replaced
708:fdd88e95bae7 718:c0bba602b60e
5 "database/sql" 5 "database/sql"
6 "encoding/binary" 6 "encoding/binary"
7 "math" 7 "math"
8 ) 8 )
9 9
10 type multiLineStringZ [][]vertex 10 type (
11 lineStringZ []vertex
12 multiLineStringZ []lineStringZ
13 )
11 14
12 const ( 15 const (
13 wkbNDR byte = 1 16 wkbNDR byte = 1
14 wkbPointZ uint32 = 1000 + 1 17 wkbPointZ uint32 = 1000 + 1
15 wkbLineStringZ uint32 = 1000 + 2 18 wkbLineStringZ uint32 = 1000 + 2