pointcloud/libpc/pc_dimensional.c
2013-02-01 13:30:11 -08:00

22 lines
578 B
C

/***********************************************************************
* pc_dimensional.c
*
* Support for "dimensional compression", which is a catch-all
* term for applying compression separately on each dimension
* of a PCPATCH collection of PCPOINTS.
*
* Depending on the character of the data, one of these schemes
* will be used:
*
* - run-length encoding
* - significant-bit removal
* - deflate
*
* Portions Copyright (c) 2012, OpenGeo
*
***********************************************************************/
#include <stdarg.h>
#include "pc_api_internal.h"