X-Git-Url: http://pileus.org/git/?p=aweather;a=blobdiff_plain;f=src%2Faweather-location.h;h=7eaa3d27aa47eb5a831a7c32abb1f73fb8bcd412;hp=1c3966850acdc45d3369612ad4e53352045e7282;hb=9e734911e96ae83b0f41afa5073d5313bc197d96;hpb=d01fb11de5bcf91224348bf41abb6788d0af2545 diff --git a/src/aweather-location.h b/src/aweather-location.h index 1c39668..7eaa3d2 100644 --- a/src/aweather-location.h +++ b/src/aweather-location.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009 Andy Spencer + * Copyright (C) 2009-2011 Andy Spencer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,18 +18,21 @@ #ifndef __LOCATION_H__ #define __LOCATION_H__ +#include "grits-util.h" + enum { - LOCATION_CITY, - LOCATION_STATE + LOCATION_END, // Special marker for end-of-list + LOCATION_CITY, // Cities (actually radars) + LOCATION_STATE, // States (for indexing) + LOCATION_NOP, // Missing from IDD for some reason }; typedef struct { - int type; - char *code; - char *label; - double lat; - double lon; - double elev; + gint type; + gchar *code; + gchar *name; + GritsPoint pos; + gdouble lod; } city_t; extern city_t cities[];