]> git.street.me.uk Git - andy/viking.git/blob - src/dem.c
Restore Google Directions feature
[andy/viking.git] / src / dem.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2008, Evan Battaglia <gtoevan@gmx.net>
5  * Copyright (C) 2007, Quy Tonthat <qtonthat@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <stdio.h>
28 #ifdef HAVE_STRING_H
29 #include <string.h>
30 #endif
31 #include <glib.h>
32 #ifdef HAVE_MATH_H
33 #include <math.h>
34 #endif
35 #ifdef HAVE_STDLIB_H
36 #include <stdlib.h>
37 #endif
38 #include <zlib.h>
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43 #endif
44
45 #include <glib/gstdio.h>
46 #include <glib/gi18n.h>
47
48 #include "dem.h"
49 #include "file.h"
50
51 /* Compatibility */
52 #if ! GLIB_CHECK_VERSION(2,22,0)
53 #define g_mapped_file_unref g_mapped_file_free
54 #endif
55
56 #define DEM_BLOCK_SIZE 1024
57 #define GET_COLUMN(dem,n) ((VikDEMColumn *)g_ptr_array_index( (dem)->columns, (n) ))
58
59 static gboolean get_double_and_continue ( gchar **buffer, gdouble *tmp, gboolean warn )
60 {
61   gchar *endptr;
62   *tmp = g_strtod(*buffer, &endptr);
63   if ( endptr == NULL|| endptr == *buffer ) {
64     if ( warn )
65       g_warning(_("Invalid DEM"));
66     return FALSE;
67   }
68   *buffer=endptr;
69   return TRUE;
70 }
71
72
73 static gboolean get_int_and_continue ( gchar **buffer, gint *tmp, gboolean warn )
74 {
75   gchar *endptr;
76   *tmp = strtol(*buffer, &endptr, 10);
77   if ( endptr == NULL|| endptr == *buffer ) {
78     if ( warn )
79       g_warning(_("Invalid DEM"));
80     return FALSE;
81   }
82   *buffer=endptr;
83   return TRUE;
84 }
85
86 static gboolean dem_parse_header ( gchar *buffer, VikDEM *dem )
87 {
88   gdouble val;
89   gint int_val;
90   guint i;
91   gchar *tmp = buffer;
92
93   /* incomplete header */
94   if ( strlen(buffer) != 1024 )
95     return FALSE;
96
97   /* fix Fortran-style exponentiation 1.0D5 -> 1.0E5 */
98   while (*tmp) {
99     if ( *tmp=='D')
100       *tmp='E';
101     tmp++;
102   }
103
104   /* skip name */
105   buffer += 149;
106
107   /* "DEM level code, pattern code, palaimetric reference system code" -- skip */
108   get_int_and_continue(&buffer, &int_val, TRUE);
109   get_int_and_continue(&buffer, &int_val, TRUE);
110   get_int_and_continue(&buffer, &int_val, TRUE);
111
112   /* zone */
113   get_int_and_continue(&buffer, &int_val, TRUE);
114   dem->utm_zone = int_val;
115   /* TODO -- southern or northern hemisphere?! */
116   dem->utm_letter = 'N';
117
118   /* skip numbers 5-19  */
119   for ( i = 0; i < 15; i++ ) {
120     if ( ! get_double_and_continue(&buffer, &val, FALSE) ) {
121       g_warning (_("Invalid DEM header"));
122       return FALSE;
123     }
124   }
125
126   /* number 20 -- horizontal unit code (utm/ll) */
127   get_double_and_continue(&buffer, &val, TRUE);
128   dem->horiz_units = val;
129   get_double_and_continue(&buffer, &val, TRUE);
130   /* dem->orig_vert_units = val; now done below */
131
132   /* TODO: do this for real. these are only for 1:24k and 1:250k USGS */
133   if ( dem->horiz_units == VIK_DEM_HORIZ_UTM_METERS ) {
134     dem->east_scale = 10.0; /* meters */
135     dem->north_scale = 10.0;
136     dem->orig_vert_units = VIK_DEM_VERT_DECIMETERS;
137   } else {
138     dem->east_scale = 3.0; /* arcseconds */
139     dem->north_scale = 3.0;
140     dem->orig_vert_units = VIK_DEM_VERT_METERS;
141   }
142
143   /* skip next */
144   get_double_and_continue(&buffer, &val, TRUE);
145
146   /* now we get the four corner points. record the min and max. */
147   get_double_and_continue(&buffer, &val, TRUE);
148   dem->min_east = dem->max_east = val;
149   get_double_and_continue(&buffer, &val, TRUE);
150   dem->min_north = dem->max_north = val;
151
152   for ( i = 0; i < 3; i++ ) {
153     get_double_and_continue(&buffer, &val, TRUE);
154     if ( val < dem->min_east ) dem->min_east = val;
155     if ( val > dem->max_east ) dem->max_east = val;
156     get_double_and_continue(&buffer, &val, TRUE);
157     if ( val < dem->min_north ) dem->min_north = val;
158     if ( val > dem->max_north ) dem->max_north = val;
159   }
160
161   return TRUE;
162 }
163
164 static void dem_parse_block_as_cont ( gchar *buffer, VikDEM *dem, gint *cur_column, gint *cur_row )
165 {
166   gint tmp;
167   while ( *cur_row < GET_COLUMN(dem, *cur_column)->n_points ) {
168     if ( get_int_and_continue(&buffer, &tmp,FALSE) ) {
169       if ( dem->orig_vert_units == VIK_DEM_VERT_DECIMETERS )
170         GET_COLUMN(dem, *cur_column)->points[*cur_row] = (gint16) (tmp / 10);
171       else
172         GET_COLUMN(dem, *cur_column)->points[*cur_row] = (gint16) tmp;
173     } else
174       return;
175     (*cur_row)++;
176   }
177   *cur_row = -1; /* expecting new column */
178 }
179
180 static void dem_parse_block_as_header ( gchar *buffer, VikDEM *dem, gint *cur_column, gint *cur_row )
181 {
182   guint n_rows;
183   gint i;
184   gdouble east_west, south;
185   gdouble tmp;
186
187   /* 1 x n_rows 1 east_west south x x x DATA */
188
189   if ( (!get_double_and_continue(&buffer, &tmp, TRUE)) || tmp != 1 ) {
190     g_warning(_("Incorrect DEM Class B record: expected 1"));
191     return;
192   }
193
194   /* don't need this */
195   if ( !get_double_and_continue(&buffer, &tmp, TRUE ) ) return;
196
197   /* n_rows */
198   if ( !get_double_and_continue(&buffer, &tmp, TRUE ) )
199     return;
200   n_rows = (guint) tmp;
201
202   if ( (!get_double_and_continue(&buffer, &tmp, TRUE)) || tmp != 1 ) {
203     g_warning(_("Incorrect DEM Class B record: expected 1"));
204     return;
205   }
206   
207   if ( !get_double_and_continue(&buffer, &east_west, TRUE) )
208     return;
209   if ( !get_double_and_continue(&buffer, &south, TRUE) )
210     return;
211
212   /* next three things we don't need */
213   if ( !get_double_and_continue(&buffer, &tmp, TRUE)) return;
214   if ( !get_double_and_continue(&buffer, &tmp, TRUE)) return;
215   if ( !get_double_and_continue(&buffer, &tmp, TRUE)) return;
216
217
218   dem->n_columns ++;
219   (*cur_column) ++;
220
221   /* empty spaces for things before that were skipped */
222   (*cur_row) = (south - dem->min_north) / dem->north_scale;
223   if ( south > dem->max_north || (*cur_row) < 0 )
224     (*cur_row) = 0;
225
226   n_rows += *cur_row;
227
228   g_ptr_array_add ( dem->columns, g_malloc(sizeof(VikDEMColumn)) );
229   GET_COLUMN(dem,*cur_column)->east_west = east_west;
230   GET_COLUMN(dem,*cur_column)->south = south;
231   GET_COLUMN(dem,*cur_column)->n_points = n_rows;
232   GET_COLUMN(dem,*cur_column)->points = g_malloc(sizeof(gint16)*n_rows);
233
234   /* no information for things before that */
235   for ( i = 0; i < (*cur_row); i++ )
236     GET_COLUMN(dem,*cur_column)->points[i] = VIK_DEM_INVALID_ELEVATION;
237
238   /* now just continue */
239   dem_parse_block_as_cont ( buffer, dem, cur_column, cur_row );
240
241
242 }
243
244 static void dem_parse_block ( gchar *buffer, VikDEM *dem, gint *cur_column, gint *cur_row )
245 {
246   /* if haven't read anything or have read all items in a columns and are expecting a new column */
247   if ( *cur_column == -1 || *cur_row == -1 ) {
248     dem_parse_block_as_header(buffer, dem, cur_column, cur_row);
249   } else {
250     dem_parse_block_as_cont(buffer, dem, cur_column, cur_row);
251   }
252 }
253
254 /* return size of unzip data or 0 if failed */
255 /* can be made generic to uncompress zip, gzip, bzip2 data */
256 static guint uncompress_data(void *uncompressed_buffer, guint uncompressed_size, void *compressed_data, guint compressed_size)
257 {
258         z_stream stream;
259         int err;
260
261         stream.next_in = compressed_data;
262         stream.avail_in = compressed_size;
263         stream.next_out = uncompressed_buffer;
264         stream.avail_out = uncompressed_size;
265         stream.zalloc = (alloc_func)0;
266         stream.zfree = (free_func)0;
267         stream.opaque = (voidpf)0;
268
269         /* negative windowBits to inflateInit2 means "no header" */
270         if ((err = inflateInit2(&stream, -MAX_WBITS)) != Z_OK) {
271                 g_warning("%s(): inflateInit2 failed", __PRETTY_FUNCTION__);
272                 return 0;
273         }
274
275         err = inflate(&stream, Z_FINISH);
276         if ((err != Z_OK) && (err != Z_STREAM_END) && stream.msg) {
277                 g_warning("%s() inflate failed err=%d \"%s\"", __PRETTY_FUNCTION__, err, stream.msg == NULL ? "unknown" : stream.msg);
278                 inflateEnd(&stream);
279                 return 0;
280         }
281
282         inflateEnd(&stream);
283         return(stream.total_out);
284 }
285
286 static void *unzip_hgt_file(gchar *zip_file, gulong *unzip_size)
287 {
288         void *unzip_data = NULL;
289         gchar *zip_data;
290         struct _lfh {
291                 guint32 sig;
292                 guint16 extract_version;
293                 guint16 flags;
294                 guint16 comp_method;
295                 guint16 time;
296                 guint16 date;
297                 guint32 crc_32;
298                 guint32 compressed_size;
299                 guint32 uncompressed_size;
300                 guint16 filename_len;
301                 guint16 extra_field_len;
302         }  __attribute__ ((__packed__)) *local_file_header = NULL;
303
304
305         local_file_header = (struct _lfh *) zip_file;
306         if (local_file_header->sig != 0x04034b50) {
307                 g_warning("%s(): wrong format", __PRETTY_FUNCTION__);
308                 g_free(unzip_data);
309                 goto end;
310         }
311
312         zip_data = zip_file + sizeof(struct _lfh) + local_file_header->filename_len + local_file_header->extra_field_len;
313         unzip_data = g_malloc(local_file_header->uncompressed_size);
314         gulong uncompressed_size = local_file_header->uncompressed_size;
315
316         if (!(*unzip_size = uncompress_data(unzip_data, uncompressed_size, zip_data, local_file_header->compressed_size))) {
317                 g_free(unzip_data);
318                 unzip_data = NULL;
319                 goto end;
320         }
321
322 end:
323         return(unzip_data);
324 }
325
326 static VikDEM *vik_dem_read_srtm_hgt(const gchar *file_name, const gchar *basename, gboolean zip)
327 {
328   gint i, j;
329   VikDEM *dem;
330   off_t file_size;
331   gint16 *dem_mem = NULL;
332   gchar *dem_file = NULL;
333   const gint num_rows_3sec = 1201;
334   const gint num_rows_1sec = 3601;
335   gint num_rows;
336   GMappedFile *mf;
337   gint arcsec;
338   GError *error = NULL;
339
340   dem = g_malloc(sizeof(VikDEM));
341
342   dem->horiz_units = VIK_DEM_HORIZ_LL_ARCSECONDS;
343   dem->orig_vert_units = VIK_DEM_VERT_DECIMETERS;
344
345   /* TODO */
346   dem->min_north = atoi(basename+1) * 3600;
347   dem->min_east = atoi(basename+4) * 3600;
348   if ( basename[0] == 'S' )
349     dem->min_north = - dem->min_north;
350   if ( basename[3] == 'W' )
351     dem->min_east = - dem->min_east;
352
353   dem->max_north = 3600 + dem->min_north;
354   dem->max_east = 3600 + dem->min_east;
355
356   dem->columns = g_ptr_array_new();
357   dem->n_columns = 0;
358
359   if ((mf = g_mapped_file_new(file_name, FALSE, &error)) == NULL) {
360     g_critical(_("Couldn't map file %s: %s"), file_name, error->message);
361     g_error_free(error);
362     g_free(dem);
363     return NULL;
364   }
365   file_size = g_mapped_file_get_length(mf);
366   dem_file = g_mapped_file_get_contents(mf);
367   
368   if (zip) {
369     void *unzip_mem = NULL;
370     gulong ucsize;
371
372     if ((unzip_mem = unzip_hgt_file(dem_file, &ucsize)) == NULL) {
373       g_mapped_file_unref(mf);
374       g_ptr_array_free(dem->columns, TRUE);
375       g_free(dem);
376       return NULL;
377     }
378
379     dem_mem = unzip_mem;
380     file_size = ucsize;
381   }
382
383   if (file_size == (num_rows_3sec * num_rows_3sec * sizeof(gint16)))
384     arcsec = 3;
385   else if (file_size == (num_rows_1sec * num_rows_1sec * sizeof(gint16)))
386     arcsec = 1;
387   else {
388     g_warning("%s(): file %s does not have right size", __PRETTY_FUNCTION__, basename);
389     g_mapped_file_unref(mf);
390     g_free(dem);
391     return NULL;
392   }
393
394   num_rows = (arcsec == 3) ? num_rows_3sec : num_rows_1sec;
395   dem->east_scale = dem->north_scale = arcsec;
396
397   for ( i = 0; i < num_rows; i++ ) {
398     dem->n_columns++;
399     g_ptr_array_add ( dem->columns, g_malloc(sizeof(VikDEMColumn)) );
400     GET_COLUMN(dem,i)->east_west = dem->min_east + arcsec*i;
401     GET_COLUMN(dem,i)->south = dem->min_north;
402     GET_COLUMN(dem,i)->n_points = num_rows;
403     GET_COLUMN(dem,i)->points = g_malloc(sizeof(gint16)*num_rows);
404   }
405
406   int ent = 0;
407   for ( i = (num_rows - 1); i >= 0; i-- ) {
408     for ( j = 0; j < num_rows; j++ ) {
409       GET_COLUMN(dem,j)->points[i] = GINT16_FROM_BE(dem_mem[ent]);
410       ent++;
411     }
412
413   }
414
415   if (zip)
416     g_free(dem_mem);
417   g_mapped_file_unref(mf);
418   return dem;
419 }
420
421 #define IS_SRTM_HGT(fn) (strlen((fn))==11 && (fn)[7]=='.' && (fn)[8]=='h' && (fn)[9]=='g' && (fn)[10]=='t' && ((fn)[0]=='N' || (fn)[0]=='S') && ((fn)[3]=='E' || (fn)[3]=='W'))
422
423 VikDEM *vik_dem_new_from_file(const gchar *file)
424 {
425   FILE *f=NULL;
426   VikDEM *rv;
427   gchar buffer[DEM_BLOCK_SIZE+1];
428
429   /* use to record state for dem_parse_block */
430   gint cur_column = -1;
431   gint cur_row = -1;
432   const gchar *basename = a_file_basename(file);
433
434   if ( g_access ( file, R_OK ) != 0 )
435     return NULL;
436
437   if ( (strlen(basename)==11 || ((strlen(basename) == 15) && (basename[11] == '.' && basename[12] == 'z' && basename[13] == 'i' && basename[14] == 'p'))) &&
438        basename[7]=='.' && basename[8]=='h' && basename[9]=='g' && basename[10]=='t' &&
439        (basename[0] == 'N' || basename[0] == 'S') && (basename[3] == 'E' || basename[3] =='W')) {
440     gboolean is_zip_file = (strlen(basename) == 15);
441     rv = vik_dem_read_srtm_hgt(file, basename, is_zip_file);
442     return(rv);
443   }
444
445       /* Create Structure */
446   rv = g_malloc(sizeof(VikDEM));
447
448       /* Header */
449   f = g_fopen(file, "r");
450   if ( !f ) {
451     g_free ( rv );
452     return NULL;
453   }
454   buffer[fread(buffer, 1, DEM_BLOCK_SIZE, f)] = '\0';
455   if ( ! dem_parse_header ( buffer, rv ) ) {
456     g_free ( rv );
457     fclose(f);
458     return NULL;
459   }
460   /* TODO: actually use header -- i.e. GET # OF COLUMNS EXPECTED */
461
462   rv->columns = g_ptr_array_new();
463   rv->n_columns = 0;
464
465       /* Column -- Data */
466   while (! feof(f) ) {
467      gchar *tmp;
468
469      /* read block */
470      buffer[fread(buffer, 1, DEM_BLOCK_SIZE, f)] = '\0';
471
472      /* Fix Fortran-style exponentiation */
473      tmp = buffer;
474      while (*tmp) {
475        if ( *tmp=='D')
476          *tmp='E';
477        tmp++;
478      }
479
480      dem_parse_block(buffer, rv, &cur_column, &cur_row);
481   }
482
483      /* TODO - class C records (right now says 'Invalid' and dies) */
484
485   fclose(f);
486   f = NULL;
487
488   /* 24k scale */
489   if ( rv->horiz_units == VIK_DEM_HORIZ_UTM_METERS && rv->n_columns >= 2 )
490     rv->north_scale = rv->east_scale = GET_COLUMN(rv, 1)->east_west - GET_COLUMN(rv,0)->east_west;
491
492   /* FIXME bug in 10m DEM's */
493   if ( rv->horiz_units == VIK_DEM_HORIZ_UTM_METERS && rv->north_scale == 10 ) {
494     rv->min_east -= 100;
495     rv->min_north += 200;
496   }
497
498
499   return rv;
500 }
501
502 void vik_dem_free ( VikDEM *dem )
503 {
504   guint i;
505   for ( i = 0; i < dem->n_columns; i++)
506     g_free ( GET_COLUMN(dem, i)->points );
507   g_ptr_array_free ( dem->columns, TRUE );
508   g_free ( dem );
509 }
510
511 gint16 vik_dem_get_xy ( VikDEM *dem, guint col, guint row )
512 {
513   if ( col < dem->n_columns )
514     if ( row < GET_COLUMN(dem, col)->n_points )
515       return GET_COLUMN(dem, col)->points[row];
516   return VIK_DEM_INVALID_ELEVATION;
517 }
518
519 gint16 vik_dem_get_east_north ( VikDEM *dem, gdouble east, gdouble north )
520 {
521   gint col, row;
522
523   if ( east > dem->max_east || east < dem->min_east ||
524       north > dem->max_north || north < dem->min_north )
525     return VIK_DEM_INVALID_ELEVATION;
526
527   col = (gint) floor((east - dem->min_east) / dem->east_scale);
528   row = (gint) floor((north - dem->min_north) / dem->north_scale);
529
530   return vik_dem_get_xy ( dem, col, row );
531 }
532
533 static gboolean dem_get_ref_points_elev_dist(VikDEM *dem,
534     gdouble east, gdouble north, /* in seconds */
535     gint16 *elevs, gint16 *dists)
536 {
537   int i;
538   int cols[4], rows[4];
539   struct LatLon ll[4];
540   struct LatLon pos;
541
542   if ( east > dem->max_east || east < dem->min_east ||
543       north > dem->max_north || north < dem->min_north )
544     return FALSE;  /* got nothing */
545
546   pos.lon = east/3600;
547   pos.lat = north/3600;
548
549   /* order of the data: sw, nw, ne, se */
550   /* sw */
551   cols[0] = (gint) floor((east - dem->min_east) / dem->east_scale);
552   rows[0] = (gint) floor((north - dem->min_north) / dem->north_scale);
553   ll[0].lon = (dem->min_east + dem->east_scale*cols[0])/3600;
554   ll[0].lat = (dem->min_north + dem->north_scale*rows[0])/3600;
555   /* nw */
556   cols[1] = cols[0];
557   rows[1] = rows[0] + 1;
558   ll[1].lon = ll[0].lon;
559   ll[1].lat = ll[0].lat + (gdouble)dem->north_scale/3600;
560   /* ne */
561   cols[2] = cols[0] + 1;
562   rows[2] = rows[0] + 1;
563   ll[2].lon = ll[0].lon + (gdouble)dem->east_scale/3600;
564   ll[2].lat = ll[0].lat + (gdouble)dem->north_scale/3600;
565   /* se */
566   cols[3] = cols[0] + 1;
567   rows[3] = rows[0];
568   ll[3].lon = ll[0].lon + (gdouble)dem->east_scale/3600;
569   ll[3].lat = ll[0].lat;
570
571   for (i = 0; i < 4; i++) {
572     if ((elevs[i] = vik_dem_get_xy(dem, cols[i], rows[i])) == VIK_DEM_INVALID_ELEVATION)
573       return FALSE;
574     dists[i] = a_coords_latlon_diff(&pos, &ll[i]);
575   }
576
577 #if 0  /* debug */
578   for (i = 0; i < 4; i++)
579     fprintf(stderr, "%f:%f:%d:%d  ", ll[i].lat, ll[i].lon, dists[i], elevs[i]);
580   fprintf(stderr, "   north_scale=%f\n", dem->north_scale);
581 #endif
582
583   return TRUE;  /* all OK */
584 }
585
586 gint16 vik_dem_get_simple_interpol ( VikDEM *dem, gdouble east, gdouble north )
587 {
588   int i;
589   gint16 elevs[4], dists[4];
590
591   if (!dem_get_ref_points_elev_dist(dem, east, north, elevs, dists))
592     return VIK_DEM_INVALID_ELEVATION;
593
594   for (i = 0; i < 4; i++) {
595     if (dists[i] < 1) {
596       return(elevs[i]);
597     }
598   }
599
600   gdouble t = (gdouble)elevs[0]/dists[0] + (gdouble)elevs[1]/dists[1] + (gdouble)elevs[2]/dists[2] + (gdouble)elevs[3]/dists[3];
601   gdouble b = 1.0/dists[0] + 1.0/dists[1] + 1.0/dists[2] + 1.0/dists[3];
602
603   return(t/b);
604 }
605
606 gint16 vik_dem_get_shepard_interpol ( VikDEM *dem, gdouble east, gdouble north )
607 {
608   int i;
609   gint16 elevs[4], dists[4];
610   gint16 max_dist;
611   gdouble t = 0.0;
612   gdouble b = 0.0;
613
614   if (!dem_get_ref_points_elev_dist(dem, east, north, elevs, dists))
615     return VIK_DEM_INVALID_ELEVATION;
616
617   max_dist = 0;
618   for (i = 0; i < 4; i++) {
619     if (dists[i] < 1) {
620       return(elevs[i]);
621     }
622     if (dists[i] > max_dist)
623       max_dist = dists[i];
624   }
625
626   gdouble tmp;
627 #if 0 /* derived method by Franke & Nielson. Does not seem to work too well here */
628   for (i = 0; i < 4; i++) {
629     tmp = pow((1.0*(max_dist - dists[i])/max_dist*dists[i]), 2);
630     t += tmp*elevs[i];
631     b += tmp;
632   }
633 #endif
634
635   for (i = 0; i < 4; i++) {
636     tmp = pow((1.0/dists[i]), 2);
637     t += tmp*elevs[i];
638     b += tmp;
639   }
640
641   // fprintf(stderr, "DEBUG: tmp=%f t=%f b=%f %f\n", tmp, t, b, t/b);
642
643   return(t/b);
644
645 }
646
647 void vik_dem_east_north_to_xy ( VikDEM *dem, gdouble east, gdouble north, guint *col, guint *row )
648 {
649   *col = (gint) floor((east - dem->min_east) / dem->east_scale);
650   *row = (gint) floor((north - dem->min_north) / dem->north_scale);
651   if ( *col < 0 ) *col = 0;
652   if ( *row < 0 ) *row = 0;
653 }
654