]> Pileus Git - aweather/blobdiff - src/plugins/radar-info.h
Add dual-pole support and improve colormap handling
[aweather] / src / plugins / radar-info.h
index e92dffc9a19ef903c78c83be3c0acf220e6c5395..664eeb1b9eb97db58e11f2b40fc13993f291f1a3 100644 (file)
 #include <rsl.h>
 
 typedef struct {
-       int type;
-       const char *name;
-       guint8 data[256][4];
+       gint     type;     // From RSL e.g. DZ_INDEX
+       gchar   *file;     // Basename of the colors file
+       gchar    name[64]; // Name of the colormap          (line 1)
+       gfloat   scale;    // Map values to color table idx (line 2)
+       gfloat   shift;    //   index = value*scale + shift (line 3)
+       gint     len;      // Length of data                    
+       guint8 (*data)[4]; // The actual colormap           (line 4..)
 } AWeatherColormap;
 
 extern AWeatherColormap colormaps[];