[go: up one dir, main page]

Menu

[c11636]: / src / locator.c  Maximize  Restore  History

Download this file

369 lines (313 with data), 9.3 kB

  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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
/**
* \file src/locator.c
* \ingroup hamlib
* \brief locator and bearing conversion interface
* \author Stephane Fillod
* \date 2000-2002
*
* Hamlib interface is a frontend implementing wrapper functions.
*/
/*
* Hamlib Interface - locator and bearing conversion calls
* Copyright (c) 2001-2002 by Stephane Fillod
*
* $Id: locator.c,v 1.6 2002-11-04 22:37:53 fillods Exp $
*
* Code to determine bearing and range was taken from the Great Circle,
* by S. R. Sampson, N5OWK.
* Ref: "Air Navigation", Air Force Manual 51-40, 1 February 1987
* Ref: "ARRL Satellite Experimenters Handbook", August 1990
*
* Code to calculate distance and azimuth between two Maidenhead locators,
* taken from wwl, by IK0ZSN Mirko Caserta.
*
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
/*! \page hamlib Hamlib general purpose API
*
* Here are grouped some often used functions, like locator conversion
* routines.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include <hamlib/rotator.h>
#ifndef DOC_HIDDEN
#define RADIAN (180.0 / M_PI)
/* arc length for 1 degree, 60 Nautical Miles */
#define ARC_IN_KM 111.2
#endif /* !DOC_HIDDEN */
/**
* \brief Convert DMS angle to decimal representation
* \param degrees Degrees
* \param minutes Minutes
* \param seconds Seconds
*
* Convert degree/minute/second angle to a decimal representation.
* Degrees >360, minutes > 60, and seconds > 60 are allowed, but
* resulting angle won't be normalized.
*
* \return the decimal representation.
*
* \sa dec2dms()
*/
double dms2dec(int degrees, int minutes, int seconds)
{
if (degrees >= 0)
return (double)degrees + (double)minutes/60. + (double)seconds/3600.;
else
return (double)degrees + 1. - (double)minutes/60. - (double)seconds/3600.;
}
/**
* \brief Convert decimal angle into DMS representation
* \param dec Decimal angle
* \param degrees The location where to store the degrees
* \param minutes The location where to store the minutes
* \param seconds The location where to store the seconds
*
* Convert decimal angle into its degree/minute/second representation.
* Upon return dec2dms guarantees -180<=degrees<180,
* 0<=minutes<60, and 0<=seconds<60.
*
* \sa dms2dec()
*/
void dec2dms(double dec, int *degrees, int *minutes, int *seconds)
{
int deg, min, sec;
double st;
if (!degrees || !minutes || !seconds)
return;
st = fmod(dec+180, 360)-180;
deg = (int)floor(st);
st = 60. * (st-(double)deg);
min = (int)floor(st);
st = 60. * (st-(double)min);
if (deg < 0 && min != 0)
min = 60 - min;
sec = (int)floor(st);
if (deg < 0 && sec != 0)
sec = 60 - sec;
*degrees = deg;
*minutes = min;
*seconds = sec;
}
/**
* \brief Convert Maidenhead grid locator to longitude/latitude
* \param longitude The location where to store longitude, decimal
* \param latitude The location where to store latitude, decimal
* \param locator The locator
*
* Convert Maidenhead grid locator to longitude/latitude (decimal).
* The locator be either in 4 or 6 chars long format. locator2longlat
* is case insensitive, however it checks for locator validity.
*
* \todo: give center coordinate of locator
*
* \return 0 to indicate conversion went ok, otherwise a negative value.
*
* \sa longlat2locator()
*/
int locator2longlat(double *longitude, double *latitude, const char *locator)
{
char loc[6];
if (locator[4] != '\0' && locator[6] != '\0')
return -1;
loc[0] = toupper(locator[0]);
loc[1] = toupper(locator[1]);
loc[2] = locator[2];
loc[3] = locator[3];
if (locator[4] != '\0') {
loc[4] = toupper(locator[4]);
loc[5] = toupper(locator[5]);
} else {
loc[4] = 'A';
loc[5] = 'A';
}
if (loc[0] < 'A' || loc[0] > 'R' ||
loc[1] < 'A' || loc[1] > 'R' ||
loc[2] < '0' || loc[2] > '9' ||
loc[3] < '0' || loc[3] > '9' ||
loc[4] < 'A' || loc[4] > 'X' ||
loc[5] < 'A' || loc[5] > 'X' ) {
return -1;
}
*longitude = 20.0 * (loc[0]-'A') - 180.0 + 2.0 * (loc[2]-'0') +
(loc[4]-'A')/12.0;
if (loc[0] <= 'I' && (loc[2] != '0' || loc[4] != 'A'))
*longitude += 1;
*latitude = 10.0 * (loc[1]-'A') - 90.0 + (loc[3]-'0') +
(loc[5]-'A')/24.0;
return 0;
}
/**
* \brief Convert longitude/latitude to Maidenhead grid locator
* \param longitude The longitude, decimal
* \param latitude The latitude, decimal
* \param locator The location where to store the locator
*
* Convert longitude/latitude (decimal) to Maidenhead grid locator.
* \a locator must point to an array at least 6 char long.
*
* \todo: give center coordinate of locator
*
* \sa locator2longlat()
*/
void longlat2locator(double longitude, double latitude, char *locator)
{
double tmp;
tmp = fmod(longitude, 360) + 180.;
locator[0] = 'A' + (int)floor(tmp/20.);
tmp = fmod(tmp, 20.);
locator[2] = '0' + (int)floor(tmp/2.);
tmp = 12.*fabs(floor(longitude)-longitude);
locator[4] = 'A' + (int)floor(tmp);
tmp = fmod(latitude, 360) + 90.;
locator[1] = 'A' + (int)floor(tmp/10.);
tmp = fmod(tmp, 10.);
locator[3] = '0' + (int)floor(tmp);
tmp = 25. * fabs(floor(latitude)-latitude);
locator[5] = 'A' + (int)floor(tmp);
}
/**
* \brief Calculate the distance and bearing between two points.
* \param lon1 The local longitude, decimal degrees
* \param lat1 The local latitude, decimal degrees
* \param lon2 The remote longitude, decimal degrees
* \param lat2 The remote latitude, decimal degrees
* \param distance The location where to store the distance
* \param azimuth The location where to store the bearing
*
* Calculate the QRB between \a lat1,\a lat1 and \a lon2,\a lat2.
*
* This version also takes into consideration the two points
* being close enough to be in the near-field, and the antipodal points,
* which are easily calculated.
*
* \return the distance in kilometers and azimuth in decimal degrees
* for the short path.
*
* \sa distance_long_path(), azimuth_long_path()
*/
int qrb(double lon1, double lat1, double lon2, double lat2,
double *distance, double *azimuth)
{
double delta_long, tmp, arc, cosaz, az;
if (!distance || !azimuth)
return -1;
if ((lat1 > 90.0 || lat1 < -90.0) || (lat2 > 90.0 || lat2 < -90.0))
return -1;
if ((lon1 > 180.0 || lon1 < -180.0) || (lon2 > 180.0 || lon2 < -180.0))
return -1;
/* Prevent ACOS() Domain Error */
if (lat1 == 90.0)
lat1 = 89.99;
else if (lat1 == -90.0)
lat1 = -89.99;
if (lat2 == 90.0)
lat2 = 89.99;
else if (lat2 == -90.0)
lat2 = -89.99;
/*
* Convert variables to Radians
*/
lat1 /= RADIAN;
lon1 /= RADIAN;
lat2 /= RADIAN;
lon2 /= RADIAN;
delta_long = lon2 - lon1;
tmp = sin(lat1) * sin(lat2) + cos(lat1) * cos(lat2) * cos(delta_long);
if (tmp > .999999) {
/* Station points coincide, use an Omni! */
*distance = 0.0;
*azimuth = 0.0;
return 0;
}
if (tmp < -.999999) {
/*
* points are antipodal, it's straight down.
* Station is equal distance in all Azimuths.
* So take 180 Degrees of arc times 60 nm,
* and you get 10800 nm, or whatever units...
*/
*distance = 180.0*ARC_IN_KM;
*azimuth = 0.0;
return 0;
}
arc = acos(tmp);
/*
* One degree of arc is 60 Nautical miles
* at the surface of the earth, 111.2 km, or 69.1 sm
* This method is easier than the one in the handbook
*/
/* Short Path */
*distance = ARC_IN_KM * RADIAN * arc;
/*
* Long Path
*
* distlp = (ARC_IN_KM * 360.0) - distsp;
*/
cosaz = (sin(lat2) - (sin(lat1) * cos(arc))) /
(sin(arc) * cos(lat1));
if (cosaz > .999999)
az = 0.0;
else if (cosaz < -.999999)
az = 180.0;
else
az = acos(cosaz) * RADIAN;
/*
* Handbook had the test ">= 0.0" which looks backwards??
*/
if (sin(delta_long) < 0.0) {
*azimuth = az;
} else {
*azimuth = 360.0 - az;
}
return 0;
}
/**
* \brief Calculate the long path distance between two points.
* \param distance The distance
*
* Calculate the long path (resp. short path) of a given distance.
*
* \return the distance in kilometers for the opposite path.
*
* \sa qrb()
*/
double distance_long_path(double distance)
{
return (ARC_IN_KM * 360.0) - distance;
}
/**
* \brief Calculate the long path bearing between two points.
* \param azimuth The bearing
*
* Calculate the long path (resp. short path) of a given bearing.
*
* \return the azimuth in decimal degrees for the opposite path.
*
* \sa qrb()
*/
double azimuth_long_path(double azimuth)
{
return 360.0-azimuth;
}