view pkg/octree/wkb.go @ 968:a4fe07a21ba7

Moved octree builder into octree package to be reusable by the sounding result import job.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 17 Oct 2018 16:00:49 +0200
parents
children a244b18cb916
line wrap: on
line source

package octree

const (
	wkbXDR byte = 0
	wkbNDR byte = 1

	wkbLineString       uint32 = 2
	wkbMultiLineString  uint32 = 5
	wkbPointZ           uint32 = 1000 + 1
	wkbLineStringZ      uint32 = 1000 + 2
	wkbMultiPointZ      uint32 = 1000 + 4
	wkbMultiLineStringZ uint32 = 1000 + 5
	wkbTinZ             uint32 = 1000 + 16
	wkbTriangleZ        uint32 = 1000 + 17
)