* added qt_speedup.patch
[navit-package] / navit / projection.h
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef NAVIT_PROJECTION_H
21 #define NAVIT_PROJECTION_H
22
23 enum projection {
24         projection_none, projection_mg, projection_garmin, projection_screen, projection_utm, projection_gk
25 };
26
27 enum map_datum {
28         map_datum_none, map_datum_wgs84, map_datum_dhdn
29 };
30
31 struct coord;
32 enum projection projection_from_name(const char *name, struct coord *offset);
33 char * projection_to_name(enum projection proj, struct coord *offset);
34
35 #endif
36