]> git.street.me.uk Git - andy/viking.git/blame - src/dems.h
Display altitude at the cursor position, on status bar.
[andy/viking.git] / src / dems.h
CommitLineData
ad0a8c2d
EB
1#ifndef __VIKING_DEMS_H
2#define __VIKING_DEMS_H
3
4#include "dem.h"
5#include "vikcoord.h"
6
7void a_dems_uninit ();
8VikDEM *a_dems_load(const gchar *filename);
9void a_dems_unref(const gchar *filename);
10VikDEM *a_dems_get(const gchar *filename);
11void a_dems_load_list ( GList **dems );
12void a_dems_list_free ( GList *dems );
13GList *a_dems_list_copy ( GList *dems );
14gint16 a_dems_list_get_elev_by_coord ( GList *dems, const VikCoord *coord );
55906514 15gint16 a_dems_get_elev_by_coord ( const VikCoord *coord );
ad0a8c2d
EB
16
17#endif
18#include <glib.h>
19