MrSID Decode SDK for LiDAR Reference Manual
1.1.4.4709
filters_status.h
Go to the documentation of this file.
1
/* //////////////////////////////////////////////////////////////////////////
2
// //
3
// This code is Copyright (c) 2009-2009 LizardTech, Inc, 1008 Western //
4
// Avenue, Suite 200, Seattle, WA 98104. Unauthorized use or distribution //
5
// prohibited. Access to and use of this code is permitted only under //
6
// license from LizardTech, Inc. Portions of the code are protected by //
7
// US and foreign patents and other filings. All Rights Reserved. //
8
// //
10
/* PUBLIC */
11
12
#ifndef LTL_FILTER_STATUS_H
13
#define LTL_FILTER_STATUS_H
14
// See BuildHarness/status_codes.txt
15
// 40400 - 40599 lt_lib_lidar_filters
16
17
18
#define LTL_FILTER_STATUS_BASE 40400
19
20
// Failed because a feature is not implemented
21
#define LTL_STATUS_FILTER_NOTIMPL 40401
22
23
// Tried to Mosaic points with different SRSs,
24
#define LTL_STATUS_FILTER_DIVERSE_SOURCES 40402
25
26
// A failure of one of the required WKTs when initializing Reprojection Filter
27
#define LTL_STATUS_FILTER_REPROJECT_INIT 40403
28
29
// Failed while actually doing the reprojection
30
#define LTL_STATUS_FILTER_REPROJECT_FAIL 40404
31
32
// Vertical Datum Transform not supported
33
#define LTL_STATUS_FILTER_VERTICAL_DATUM_TRANSFROM_NOT_SUPPORTED 40405
34
35
#endif // LTL_FILTERS_STATUS_H
LizardTech