]> Pileus Git - aweather/blobdiff - src/aweather-location.h
Subjectively adding LODs to cities
[aweather] / src / aweather-location.h
index b030f04b4d9caeb82aa58c58b97f1ae3b6c1e450..453f6868e0c9bc1521f0847ce969522cb798b4d8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
+ * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
  * 
  * 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
 #ifndef __LOCATION_H__
 #define __LOCATION_H__
 
+#include "gis-util.h"
+
 enum {
+       LOCATION_END,
        LOCATION_CITY,
-       LOCATION_STATE
+       LOCATION_STATE,
 };
 
 typedef struct {
        int type;
        char *code;
        char *label;
-       struct {
-               gint north;
-               gint ne;
-               gint east;
-               gint se;
-               gint south;
-               gint sw;
-               gint west;
-               gint nw;
-       } neighbors;
+       GisPoint pos;
+       gdouble lod;
 } city_t;
 
 extern city_t cities[];