|
55 | 55 | * ambiguity - If 1, 2, 3, or 4, blank out that many trailing digits.
|
56 | 56 | *
|
57 | 57 | * Outputs: slat - String in format ddmm.mm[NS]
|
58 |
| - * Should always be exactly 8 characters + NUL. |
| 58 | + * Must always be exactly 8 characters + NUL. |
| 59 | + * Put in leading zeros if necessary. |
| 60 | + * We must have exactly ddmm.mm and hemisphere because |
| 61 | + * the APRS position report has fixed width fields. |
| 62 | + * Trailing digits can be blanked for position ambiguity. |
59 | 63 | *
|
60 | 64 | * Returns: None
|
61 | 65 | *
|
@@ -101,13 +105,22 @@ void latitude_to_str (double dlat, int ambiguity, char *slat)
|
101 | 105 | ideg = (int)dlat;
|
102 | 106 | dmin = (dlat - ideg) * 60.;
|
103 | 107 |
|
| 108 | + // dmin is known to be in range of 0 <= dmin < 60. |
| 109 | + |
| 110 | + // Minutes must be exactly like 99.99 with leading zeros, |
| 111 | + // if needed, to make it fixed width. |
| 112 | + // Two digits, decimal point, two digits, nul terminator. |
| 113 | + |
104 | 114 | snprintf (smin, sizeof(smin), "%05.2f", dmin);
|
105 | 115 | /* Due to roundoff, 59.9999 could come out as "60.00" */
|
106 | 116 | if (smin[0] == '6') {
|
107 | 117 | smin[0] = '0';
|
108 | 118 | ideg++;
|
109 | 119 | }
|
110 | 120 |
|
| 121 | + // Assumes slat can hold 8 characters + nul. |
| 122 | + // Degrees must be exactly 2 digits, with leading zero, if needed. |
| 123 | + |
111 | 124 | sprintf (slat, "%02d%s%c", ideg, smin, hemi);
|
112 | 125 |
|
113 | 126 | if (ambiguity >= 1) {
|
@@ -135,9 +148,12 @@ void latitude_to_str (double dlat, int ambiguity, char *slat)
|
135 | 148 | * Inputs: dlong - Floating point degrees.
|
136 | 149 | * ambiguity - If 1, 2, 3, or 4, blank out that many trailing digits.
|
137 | 150 | *
|
138 |
| - * Outputs: slat - String in format dddmm.mm[NS] |
139 |
| - * Should always be exactly 9 characters + NUL. |
140 |
| - * |
| 151 | + * Outputs: slong - String in format dddmm.mm[NS] |
| 152 | + * Must always be exactly 9 characters + NUL. |
| 153 | + * Put in leading zeros if necessary. |
| 154 | + * We must have exactly dddmm.mm and hemisphere because |
| 155 | + * the APRS position report has fixed width fields. |
| 156 | + * Trailing digits can be blanked for position ambiguity. |
141 | 157 | * Returns: None
|
142 | 158 | *
|
143 | 159 | *----------------------------------------------------------------*/
|
@@ -178,7 +194,11 @@ void longitude_to_str (double dlong, int ambiguity, char *slong)
|
178 | 194 | ideg++;
|
179 | 195 | }
|
180 | 196 |
|
| 197 | + // Assumes slong can hold 9 characters + nul. |
| 198 | + // Degrees must be exactly 3 digits, with leading zero, if needed. |
| 199 | + |
181 | 200 | sprintf (slong, "%03d%s%c", ideg, smin, hemi);
|
| 201 | + |
182 | 202 | /*
|
183 | 203 | * The spec says position ambiguity in latitude also
|
184 | 204 | * applies to longitude automatically.
|
@@ -903,6 +923,14 @@ int main (int argc, char *argv[])
|
903 | 923 | latitude_to_str (45.999830, 4, result);
|
904 | 924 | if (strcmp(result, "45 . N") != 0) { errors++; dw_printf ("Error 1.8: Did not expect \"%s\"\n", result); }
|
905 | 925 |
|
| 926 | + // Test for leading zeros for small values. Result must be fixed width. |
| 927 | + |
| 928 | + latitude_to_str (0.016666666, 0, result); |
| 929 | + if (strcmp(result, "0001.00N") != 0) { errors++; dw_printf ("Error 1.9: Did not expect \"%s\"\n", result); } |
| 930 | + |
| 931 | + latitude_to_str (-1.999999, 0, result); |
| 932 | + if (strcmp(result, "0200.00S") != 0) { errors++; dw_printf ("Error 1.10: Did not expect \"%s\"\n", result); } |
| 933 | + |
906 | 934 | /* Longitude to APRS format. */
|
907 | 935 |
|
908 | 936 | longitude_to_str (45.25, 0, result);
|
@@ -931,6 +959,15 @@ int main (int argc, char *argv[])
|
931 | 959 | longitude_to_str (45.999830, 4, result);
|
932 | 960 | if (strcmp(result, "045 . E") != 0) { errors++; dw_printf ("Error 2.8: Did not expect \"%s\"\n", result); }
|
933 | 961 |
|
| 962 | + // Test for leading zeros for small values. Result must be fixed width. |
| 963 | + |
| 964 | + longitude_to_str (0.016666666, 0, result); |
| 965 | + if (strcmp(result, "00001.00E") != 0) { errors++; dw_printf ("Error 2.9: Did not expect \"%s\"\n", result); } |
| 966 | + |
| 967 | + longitude_to_str (-1.999999, 0, result); |
| 968 | + if (strcmp(result, "00200.00W") != 0) { errors++; dw_printf ("Error 2.10: Did not expect \"%s\"\n", result); } |
| 969 | + |
| 970 | + |
934 | 971 | /* Compressed format. */
|
935 | 972 | /* Protocol spec example has <*e7 but I got <*e8 due to rounding rather than truncation to integer. */
|
936 | 973 |
|
|
0 commit comments