]> git.street.me.uk Git - andy/viking.git/blame_incremental - src/dem.h
[DOC] Switch from ordered list to a itemitized list.
[andy/viking.git] / src / dem.h
... / ...
CommitLineData
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2008, Evan Battaglia <gtoevan@gmx.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#ifndef __VIKING_DEM_H
23#define __VIKING_DEM_H
24
25#include <glib.h>
26
27G_BEGIN_DECLS
28
29#define VIK_DEM_INVALID_ELEVATION -32768
30
31/* unit codes */
32#define VIK_DEM_HORIZ_UTM_METERS 2
33#define VIK_DEM_HORIZ_LL_ARCSECONDS 3
34
35#define VIK_DEM_VERT_DECIMETERS 2
36
37#define VIK_DEM_VERT_METERS 1 /* wrong in 250k? */
38
39
40typedef struct {
41 guint n_columns;
42 GPtrArray *columns;
43
44 guint8 horiz_units;
45 guint8 orig_vert_units; /* original, always converted to meters when loading. */
46 gdouble east_scale; /* gap between samples */
47 gdouble north_scale;
48
49 gdouble min_east, min_north, max_east, max_north;
50
51 guint8 utm_zone;
52 gchar utm_letter;
53} VikDEM;
54
55typedef struct {
56 /* east-west coordinate for ALL items in the column */
57 gdouble east_west;
58
59 /* coordinate of northern and southern boundaries */
60 gdouble south;
61// gdouble north;
62
63 guint n_points;
64 gint16 *points;
65} VikDEMColumn;
66
67
68VikDEM *vik_dem_new_from_file(const gchar *file);
69void vik_dem_free ( VikDEM *dem );
70gint16 vik_dem_get_xy ( VikDEM *dem, guint x, guint y );
71
72gint16 vik_dem_get_east_north ( VikDEM *dem, gdouble east, gdouble north );
73gint16 vik_dem_get_simple_interpol ( VikDEM *dem, gdouble east, gdouble north );
74gint16 vik_dem_get_shepard_interpol ( VikDEM *dem, gdouble east, gdouble north );
75gint16 vik_dem_get_best_interpol ( VikDEM *dem, gdouble east, gdouble north );
76
77void vik_dem_east_north_to_xy ( VikDEM *dem, gdouble east, gdouble north, guint *col, guint *row );
78
79G_END_DECLS
80
81#endif