Add:Translations:Added Portuguese, 21th translation of navit. | Thank you Joel Patrao
[navit-package] / README
1 NavIT
2 =====
3
4 Navit is a open source (GPL) car navigation system with routing engine.
5
6 It's modular design is capable of using vector maps of various formats
7 for routing and rendering of the displayed map. It's even possible to
8 use multiple maps at a time.
9
10 The GTK+ or SDL user interfaces are designed to work well with touch
11 screen displays. Points of Interest of various formats are displayed
12 on the map.
13
14 The current vehicle position is either read from gpsd or directly from
15 NMEA GPS sensors.
16
17 The routing engine not only calculates an optimal route to your
18 destination, but also generates directions and even speaks to you.
19
20 Navit currently speaks 21 languages :
21 - Brazilian Portuguese
22 - Czech
23 - Danish
24 - Dutch
25 - English
26 - Finnish
27 - French
28 - German
29 - Hebrew
30 - Italian
31 - Norwegian Bokmal
32 - Polish
33 - Portuguese
34 - Romanian
35 - Russian
36 - Slovak
37 - Slovenian
38 - Spanish
39 - Swedish
40 - Thai
41 - Turkish
42
43 You can help translating via our web based translation page :
44  http://translations.launchpad.net/navit/trunk/+pots/navit
45
46
47 For help or more information, please refer to the wiki :
48  http://wiki.navit-project.org
49
50 If you don't know where to start, we recommend you to read the 
51 Interactive Help : http://wiki.navit-project.org/index.php/Interactive_help
52
53
54 Maps:
55 =====
56
57 The best navigation system is useless without maps. Those three maps
58 are known to work:
59
60 - OpenStreetMaps : display, routing, but street name search isn't complete
61  (see http://wiki.navit-project.org/index.php/OpenStreetMaps )
62
63 - Grosser Reiseplaner and compliant maps : full support
64  (see http://wiki.navit-project.org/index.php/European_maps )
65
66 - Garmin maps : display, routing, search is being worked on
67  (see http://wiki.navit-project.org/index.php/Garmin_maps )
68
69
70 GPS Support:
71 ============
72
73 Navit read the current vehicle position :
74 - directly from a file
75 - from gpsd (local or remote)
76 - from udp server (friends tracking) (experimental)
77
78
79 Routing algorithm
80 =================
81
82 NavIt uses a Dijkstra algorithm for routing. The routing starts at the
83 destination by assigning a value to each point directly connected to
84 destination point. The value represents the estimated time needed to
85 pass this distance.
86
87 Now the point with the lowest value is choosen using the Fibonacci
88 heap and a value is assigned to connected points whos are
89 unevaluated or whos current value ist greater than the new one.
90
91 The search is repeated until the origin is found.
92
93 Once the origin is reached, all that needs to be done is to follow the
94 points with the lowest values to the destination.
95