-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy patherror_string.c
131 lines (100 loc) · 4.23 KB
/
error_string.c
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include <stdlib.h>
#include <string.h>
#include "utm.h"
#include "mgrs.h"
#include "usng.h"
#include "error_string.h"
// Convert error codes to text.
// Note that the code is a bit mask so it is possible to have multiple messages.
// Caller should probably provide space for a couple hundred characters to be safe.
static const struct {
long mask;
char *msg;
} utm_err [] = {
{ UTM_NO_ERROR, "No errors occurred in function" },
{ UTM_LAT_ERROR, "Latitude outside of valid range (-80.5 to 84.5 degrees)" },
{ UTM_LON_ERROR, "Longitude outside of valid range (-180 to 360 degrees)" },
{ UTM_EASTING_ERROR, "Easting outside of valid range (100,000 to 900,000 meters)" },
{ UTM_NORTHING_ERROR, "Northing outside of valid range (0 to 10,000,000 meters)" },
{ UTM_ZONE_ERROR, "Zone outside of valid range (1 to 60)" },
{ UTM_HEMISPHERE_ERROR, "Invalid hemisphere ('N' or 'S')" },
{ UTM_ZONE_OVERRIDE_ERROR,"Zone outside of valid range (1 to 60) and within 1 of 'natural' zone" },
{ UTM_A_ERROR, "Semi-major axis less than or equal to zero" },
{ UTM_INV_F_ERROR, "Inverse flattening outside of valid range (250 to 350)" },
{ 0, NULL } };
static const struct {
long mask;
char *msg;
} mgrs_err [] = {
{ MGRS_NO_ERROR, "No errors occurred in function" },
{ MGRS_LAT_ERROR, "Latitude outside of valid range (-90 to 90 degrees)" },
{ MGRS_LON_ERROR, "Longitude outside of valid range (-180 to 360 degrees)" },
{ MGRS_STRING_ERROR, "An MGRS string error: string too long, too short, or badly formed" },
{ MGRS_PRECISION_ERROR, "The precision must be between 0 and 5 inclusive." },
{ MGRS_A_ERROR, "Inverse flattening outside of valid range (250 to 350)" },
{ MGRS_INV_F_ERROR, "Invalid hemisphere ('N' or 'S')" },
{ MGRS_EASTING_ERROR, "Easting outside of valid range (100,000 to 900,000 meters for UTM) (0 to 4,000,000 meters for UPS)" },
{ MGRS_NORTHING_ERROR, "Northing outside of valid range (0 to 10,000,000 meters for UTM) (0 to 4,000,000 meters for UPS)" },
{ MGRS_ZONE_ERROR, "Zone outside of valid range (1 to 60)" },
{ MGRS_HEMISPHERE_ERROR, "Invalid hemisphere ('N' or 'S')" },
{ MGRS_LAT_WARNING, "Latitude warning ???" },
{ 0, NULL } };
static const struct {
long mask;
char *msg;
} usng_err [] = {
{ USNG_NO_ERROR, "No errors occurred in function" },
{ USNG_LAT_ERROR, "Latitude outside of valid range (-90 to 90 degrees)" },
{ USNG_LON_ERROR, "Longitude outside of valid range (-180 to 360 degrees)" },
{ USNG_STRING_ERROR, "A USNG string error: string too long, too short, or badly formed" },
{ USNG_PRECISION_ERROR, "The precision must be between 0 and 5 inclusive." },
{ USNG_A_ERROR, "Inverse flattening outside of valid range (250 to 350)" },
{ USNG_INV_F_ERROR, "Invalid hemisphere ('N' or 'S')" },
{ USNG_EASTING_ERROR, "Easting outside of valid range (100,000 to 900,000 meters for UTM) (0 to 4,000,000 meters for UPS)" },
{ USNG_NORTHING_ERROR, "Northing outside of valid range (0 to 10,000,000 meters for UTM) (0 to 4,000,000 meters for UPS)" },
{ USNG_ZONE_ERROR, "Zone outside of valid range (1 to 60)" },
{ USNG_HEMISPHERE_ERROR, "Invalid hemisphere ('N' or 'S')" },
{ USNG_LAT_WARNING, "Latitude warning ???" },
{ 0, NULL } };
void utm_error_string (long err, char *str)
{
int n;
strcpy (str, "");
for (n = 1; utm_err[n].mask != 0; n++) {
if (err & utm_err[n].mask) {
if (strlen(str) > 0) strcat(str, "\n");
strcat (str, utm_err[n].msg);
}
}
if (strlen(str) == 0) {
strcpy (str, utm_err[0].msg);
}
}
void mgrs_error_string (long err, char *str)
{
int n;
strcpy (str, "");
for (n = 1; mgrs_err[n].mask != 0; n++) {
if (err & mgrs_err[n].mask) {
if (strlen(str) > 0) strcat(str, "\n");
strcat (str, mgrs_err[n].msg);
}
}
if (strlen(str) == 0) {
strcpy (str, mgrs_err[0].msg);
}
}
void usng_error_string (long err, char *str)
{
int n;
strcpy (str, "");
for (n = 1; usng_err[n].mask != 0; n++) {
if (err & usng_err[n].mask) {
if (strlen(str) > 0) strcat(str, "\n");
strcat (str, usng_err[n].msg);
}
}
if (strlen(str) == 0) {
strcpy (str, usng_err[0].msg);
}
}