| Server IP : 35.154.56.2 / Your IP : 216.73.217.116 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-0-189 6.8.0-1029-aws #31-Ubuntu SMP Wed Apr 23 18:20:04 UTC 2025 aarch64 User : ubuntu ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/include/ |
Upload File : |
#pragma once
// You can include this file (if you work in C++) but you don't have to.
// If you call this api from another language (Python, C#), you see integers.
// This header file tells you what these integers mean.
// These enum's may grow in the future. More values can be added.
namespace LercNS
{
enum class ErrCode : int
{
Ok = 0,
Failed,
WrongParam,
BufferTooSmall,
NaN,
HasNoData
};
enum class DataType : int
{
dt_char = 0,
dt_uchar,
dt_short,
dt_ushort,
dt_int,
dt_uint,
dt_float,
dt_double
};
enum class InfoArrOrder : int
{
version = 0, // codec version
dataType,
nDim, // = nDepth (we renamed nDim to nDepth but don't want to break anything)
nCols,
nRows,
nBands,
nValidPixels, // for 1st band
blobSize,
nMasks, // 0 - all valid, 1 - same mask for all bands, nBands - masks can differ between bands
nDepth, // = nDim (we renamed nDim to nDepth but don't want to break anything)
nUsesNoDataValue, // 0 - no noData value used, nBands - noData value used in 1 or more bands (only possible for nDepth > 1)
_last
};
enum class DataRangeArrOrder : int
{
zMin = 0,
zMax,
maxZErrUsed,
_last
};
} // namespace