summaryrefslogtreecommitdiff
path: root/libmateweather/test_metar.c
blob: b36e4d91ae377eb470f683e90d198e323e725048 (plain)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/*
 * Simple program to reproduce METAR parsing results from command line
 */

#include <glib.h>
#include <string.h>
#include <stdio.h>
#define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE
#include "weather-priv.h"

#ifndef BUFLEN
#define BUFLEN 4096
#endif /* BUFLEN */

int
main (int argc, char **argv)
{
    FILE*  stream = stdin;
    gchar* filename = NULL;
    GOptionEntry entries[] = {
	{ "file", 'f', 0, G_OPTION_ARG_FILENAME, &filename,
	  "file constaining metar observations", NULL },
	{ NULL }
    };
    GOptionContext* context;
    GError* error = NULL;
    char buf[BUFLEN];
    int len;
    WeatherInfo info;

    context = g_option_context_new ("- test libmateweather metar parser");
    g_option_context_add_main_entries (context, entries, NULL);
    g_option_context_parse (context, &argc, &argv, &error);

    if (error) {
	perror (error->message);
	return error->code;
    }
    if (filename) {
	stream = fopen (filename, "r");
	if (!stream) {
	    perror ("fopen");
	    return -1;
	}
    } else {
	fprintf (stderr, "Enter a METAR string...\n");
    }

    while (fgets (buf, sizeof (buf), stream)) {
	len = strlen (buf);
	if (buf[len - 1] == '\n') {
	    buf[--len] = '\0';
	}
	printf ("\n%s\n", buf);

	memset (&info, 0, sizeof (info));
	info.valid = 1;
	metar_parse (buf, &info);
	weather_info_to_metric (&info);
	printf ("Returned info:\n");
	printf ("  update:   %s", ctime (&info.update));
	printf ("  sky:      %s\n", weather_info_get_sky (&info));
	printf ("  cond:     %s\n", weather_info_get_conditions (&info));
	printf ("  temp:     %s\n", weather_info_get_temp (&info));
	printf ("  dewp:     %s\n", weather_info_get_dew (&info));
	printf ("  wind:     %s\n", weather_info_get_wind (&info));
	printf ("  pressure: %s\n", weather_info_get_pressure (&info));
	printf ("  vis:      %s\n", weather_info_get_visibility (&info));

	// TODO: retrieve location's lat/lon to display sunrise/set times
    }
    return 0;
}