File: proj_err_list.c

package info (click to toggle)
vtk 5.8.0-13
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 130,524 kB
  • sloc: cpp: 1,129,256; ansic: 708,203; tcl: 48,526; python: 20,875; xml: 6,779; yacc: 4,208; perl: 3,121; java: 2,788; lex: 931; sh: 660; asm: 471; makefile: 299
file content (89 lines) | stat: -rw-r--r-- 3,438 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
** libproj -- library of cartographic projections
**
** Copyright (c) 2005, 2006   Gerald I. Evenden
*/
static const char
LIBPROJ_ID[] = "Id";
/*
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
** "Software"), to deal in the Software without restriction, including
** without limitation the rights to use, copy, modify, merge, publish,
** distribute, sublicense, and/or sell copies of the Software, and to
** permit persons to whom the Software is furnished to do so, subject to
** the following conditions:
**
** The above copyright notice and this permission notice shall be
** included in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
** list of projection system proj_errno values
*/
#include <lib_proj.h>
const PROJ_ERR_LIST proj_err_list[] = {
  {-1,  "no arguments in initialization list"},
  {-2,  "no options found in 'init' file"},
  {-3,  "no colon in init= string"},
  {-4,  "projection not named"},
  {-5,  "unknown projection id"},
  {-6,  "effective eccentricity = 1."},
  {-7,  "unknown unit conversion id"},
  {-8,  "invalid boolean param argument"},
  {-9,  "unknown elliptical parameter name"},
  {-10,  "reciprocal flattening (1/f) = 0"},
  {-11,  "|radius reference latitude| > 90"},
  {-12,  "squared eccentricity < 0"},
  {-13,  "major axis or radius = 0 or not given"},
  {-14,  "latitude or longitude exceeded limits"},
  {-15,  "invalid x or y"},
  {-16,  "improperly formed DMS value"},
  {-17,  "non-convergent inverse meridinal dist"},
  {-18,  "non-convergent inverse phi2"},
  {-19,  "acos/asin: |arg| >1.+1e-14"},
  {-20,  "tolerance condition error"},
  {-21,  "conic lat_1 = -lat_2"},
  {-22,  "lat_1 >= 90"},
  {-23,  "lat_1 = 0"},
  {-24,  "lat_ts >= 90"},
  {-25,  "no distance between control points"},
  {-26,  "projection not selected to be rotated"},
  {-27,  "W <= 0 or M <= 0"},
  {-28,  "lsat not in 1-5 range"},
  {-29,  "path not in range"},
  {-30,  "h <= 0"},
  {-31,  "k <= 0"},
  {-32,  "lat_0 = 0 or 90 or alpha = 90"},
  {-33,  "lat_1=lat_2 or lat_1=0 or lat_2=90"},
  {-34,  "elliptical usage required"},
  {-35,  "invalid UTM zone number"},
  {-36,  "arg(s) out of range for Tcheby eval"},
  {-37,  "failed to find projection to be rotated"},
  {-38,  "failed to load NAD27-83 correction file"},
  {-39,  "both n & m must be spec'd and > 0"},
  {-40,  "n <= 0, n > 1 or not specified"},
  {-41,  "lat_1 or lat_2 not specified"},
  {-42,  "|lat_1| == |lat_2|"},
  {-43,  "lat_0 is pi/2 from mean lat"},
  {-44,  "lat_0 not specified"},
  {-45,  "lat_0 == 0"},
  {-46,  "lat_0 != 0"},
  {-47,  "compiled/linked ONLY with libproj4 and standard libaries"}, 
  {-48,  "failed to select tangent or sine mode"},
  {-49,  "failed to set both +p and +q"},
  {0,    "0 or invalid projection system error number"}
};
/*
** Log: proj_err_list.c
** Revision 3.1  2006/01/11 01:38:18  gie
** Initial
**
*/