mirror of
https://agent.ghink.cloud/wb2osz/direwolf
synced 2025-04-05 20:28:30 +00:00
Changes to be committed: modified: .gitattributes modified: CHANGES.md modified: Makefile modified: Makefile.linux new file: Makefile.macosx modified: Makefile.win modified: aclients.c modified: aprs_tt.c modified: aprs_tt.h modified: atest.c modified: audio.c modified: audio.h new file: audio_portaudio.c new file: audio_stats.c new file: audio_stats.h modified: audio_win.c modified: ax25_pad.c modified: ax25_pad.h modified: beacon.c modified: config.c modified: config.h modified: decode_aprs.c modified: decode_aprs.h modified: demod.c modified: digipeater.c modified: direwolf.c modified: direwolf.h modified: dlq.c modified: doc/README.md modified: doc/Raspberry-Pi-APRS.pdf modified: doc/User-Guide.pdf new file: doc/WA8LMF-TNC-Test-CD-Results.pdf modified: dtime_now.c modified: dtmf.c modified: dw-start.sh modified: encode_aprs.c modified: encode_aprs.h modified: gen_packets.c modified: gen_tone.c modified: gen_tone.h new file: generic.conf modified: grm_sym.h modified: hdlc_rec.c modified: hdlc_rec.h modified: igate.c modified: kiss.c modified: kiss_frame.c modified: kissnet.c modified: latlong.c modified: man1/direwolf.1 modified: mgn_icon.h modified: misc/README-dire-wolf.txt new file: misc/strlcat.c new file: misc/strlcpy.c modified: morse.c new file: morse.h modified: nmea.c modified: pfilter.c modified: ptt.c new file: serial_port.c new file: serial_port.h modified: server.c modified: symbols.c modified: symbols.h new file: telemetry-toolkit/telem-balloon.conf new file: telemetry-toolkit/telem-balloon.pl new file: telemetry-toolkit/telem-bits.pl new file: telemetry-toolkit/telem-data.pl new file: telemetry-toolkit/telem-data91.pl new file: telemetry-toolkit/telem-eqns.pl new file: telemetry-toolkit/telem-m0xer-3.txt new file: telemetry-toolkit/telem-parm.pl new file: telemetry-toolkit/telem-unit.pl new file: telemetry-toolkit/telem-volts.conf new file: telemetry-toolkit/telem-volts.py modified: telemetry.c modified: textcolor.c modified: tq.c modified: tt_text.c modified: tt_text.h modified: tt_user.c modified: tt_user.h modified: utm2ll.c modified: version.h new file: walk96.c modified: xmit.c
145 lines
3.0 KiB
C
145 lines
3.0 KiB
C
/* UTM to Latitude / Longitude conversion */
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
#include "direwolf.h"
|
|
#include "utm.h"
|
|
#include "mgrs.h"
|
|
#include "usng.h"
|
|
#include "error_string.h"
|
|
|
|
|
|
#define D2R(d) ((d) * M_PI / 180.)
|
|
#define R2D(r) ((r) * 180. / M_PI)
|
|
|
|
|
|
|
|
|
|
static void usage();
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
{
|
|
double easting;
|
|
double northing;
|
|
double lat, lon;
|
|
char szone[100];
|
|
long lzone;
|
|
char *zlet;
|
|
char hemi;
|
|
long err;
|
|
char message[300];
|
|
|
|
|
|
if (argc == 4) {
|
|
|
|
// 3 command line arguments for UTM
|
|
|
|
strlcpy (szone, argv[1], sizeof(szone));
|
|
lzone = strtoul(szone, &zlet, 10);
|
|
|
|
if (*zlet == '\0') {
|
|
hemi = 'N';
|
|
}
|
|
else {
|
|
|
|
if (islower(*zlet)) {
|
|
*zlet = toupper(*zlet);
|
|
}
|
|
if (strchr ("CDEFGHJKLMNPQRSTUVWX", *zlet) == NULL) {
|
|
fprintf (stderr, "Latitudinal band must be one of CDEFGHJKLMNPQRSTUVWX.\n\n");
|
|
usage();
|
|
}
|
|
if (*zlet >= 'N') {
|
|
hemi = 'N';
|
|
}
|
|
else {
|
|
hemi = 'S';
|
|
}
|
|
}
|
|
|
|
easting = atof(argv[2]);
|
|
|
|
northing = atof(argv[3]);
|
|
|
|
err = Convert_UTM_To_Geodetic(lzone, hemi, easting, northing, &lat, &lon);
|
|
if (err == 0) {
|
|
lat = R2D(lat);
|
|
lon = R2D(lon);
|
|
|
|
printf ("from UTM, latitude = %.6f, longitude = %.6f\n", lat, lon);
|
|
}
|
|
else {
|
|
|
|
utm_error_string (err, message);
|
|
fprintf (stderr, "Conversion from UTM failed:\n%s\n\n", message);
|
|
|
|
}
|
|
}
|
|
else if (argc == 2) {
|
|
|
|
// One command line argument, USNG or MGRS.
|
|
|
|
// TODO: continue here.
|
|
|
|
|
|
err = Convert_USNG_To_Geodetic (argv[1], &lat, &lon);
|
|
if (err == 0) {
|
|
lat = R2D(lat);
|
|
lon = R2D(lon);
|
|
printf ("from USNG, latitude = %.6f, longitude = %.6f\n", lat, lon);
|
|
}
|
|
else {
|
|
usng_error_string (err, message);
|
|
fprintf (stderr, "Conversion from USNG failed:\n%s\n\n", message);
|
|
}
|
|
|
|
err = Convert_MGRS_To_Geodetic (argv[1], &lat, &lon);
|
|
if (err == 0) {
|
|
lat = R2D(lat);
|
|
lon = R2D(lon);
|
|
printf ("from MGRS, latitude = %.6f, longitude = %.6f\n", lat, lon);
|
|
}
|
|
else {
|
|
mgrs_error_string (err, message);
|
|
fprintf (stderr, "Conversion from MGRS failed:\n%s\n\n", message);
|
|
}
|
|
|
|
}
|
|
else {
|
|
usage();
|
|
}
|
|
|
|
exit (0);
|
|
}
|
|
|
|
|
|
static void usage (void)
|
|
{
|
|
fprintf (stderr, "UTM to Latitude / Longitude conversion\n");
|
|
fprintf (stderr, "\n");
|
|
fprintf (stderr, "Usage:\n");
|
|
fprintf (stderr, "\tutm2ll zone easting northing\n");
|
|
fprintf (stderr, "\n");
|
|
fprintf (stderr, "where,\n");
|
|
fprintf (stderr, "\tzone is UTM zone 1 thru 60 with optional latitudinal band.\n");
|
|
fprintf (stderr, "\teasting is x coordinate in meters\n");
|
|
fprintf (stderr, "\tnorthing is y coordinate in meters\n");
|
|
fprintf (stderr, "\n");
|
|
fprintf (stderr, "or:\n");
|
|
fprintf (stderr, "\tutm2ll x\n");
|
|
fprintf (stderr, "\n");
|
|
fprintf (stderr, "where,\n");
|
|
fprintf (stderr, "\tx is USNG or MGRS location.\n");
|
|
fprintf (stderr, "\n");
|
|
fprintf (stderr, "Examples:\n");
|
|
fprintf (stderr, "\tutm2ll 19T 306130 4726010\n");
|
|
fprintf (stderr, "\tutm2ll 19TCH06132600\n");
|
|
|
|
exit (1);
|
|
} |