/[zanavi_public1]/navit/README.md
ZANavi

Diff of /navit/README.md

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 51 Revision 56
1ZANavi 1<img src="https://cloud.githubusercontent.com/assets/16841860/23113427/4eb1e016-f738-11e6-9b71-7503210245a4.png" width="530" />
2====== 2
3**Travis:** [![Build Status](https://travis-ci.org/zoff99/zanavi.png?branch=and_stud)](https://travis-ci.org/zoff99/zanavi/branches)
4**CircleCI:** [![CircleCI](https://circleci.com/gh/zoff99/zanavi/tree/and_stud.png?style=badge)](https://circleci.com/gh/zoff99/zanavi/tree/and_stud)
3 5
4ZANavi is a fork of NavIT. It is for the Android platfrom only! 6ZANavi is a fork of NavIT. It is for the Android platfrom only!
5for more details look at our wiki 7for more details look at our website
6 8
7http://zanavi.cc 9http://zanavi.cc
8 10
9CircleCI 11### Compiling (command line)
10======== 12```
13git clone https://github.com/zoff99/zanavi
14cd zanavi
15git checkout and_stud
16./download-androidstudio-files.sh
17cd navit
18./gradlew assembleRelease --stacktrace
19find . -name '*.apk' -exec ls -al {} \;
20```
11 21
12[![Circle CI](https://circleci.com/gh/zoff99/zanavi/tree/master.svg?style=svg)](https://circleci.com/gh/zoff99/zanavi/tree/master) 22### Compiling Android Studio
23first do this **outside** of Android Studio!
24```
25git clone https://github.com/zoff99/zanavi
26cd zanavi
27git checkout and_stud
28./download-androidstudio-files.sh
29```
30now start Android Studio and select "import Project" then select the **navit** subdirectory
31in Android Studio just press "play"
13 32
14 33
15tagsoup-1.2.1.jar: 34### Coding Style
16================== 35https://github.com/zoff99/Code-Style-Guidelines/blob/master/Android/Java.md
17 36
37### tagsoup-1.2.1.jar:
18http://home.ccil.org/~cowan/tagsoup/ 38http://home.ccil.org/~cowan/tagsoup/
19 39
20downloaded from: http://home.ccil.org/~cowan/tagsoup/tagsoup-1.2.1.jar 40downloaded from: http://home.ccil.org/~cowan/tagsoup/tagsoup-1.2.1.jar
21 41
22 42
23 43
24====================== original README below ==================
25====================== original README below ==================
26====================== original README below ==================
27
28
29
30NavIT
31=====
32
33Navit is a open source (GPL) car navigation system with routing engine.
34
35It's modular design is capable of using vector maps of various formats
36for routing and rendering of the displayed map. It's even possible to
37use multiple maps at a time.
38
39The GTK+ or SDL user interfaces are designed to work well with touch
40screen displays. Points of Interest of various formats are displayed
41on the map.
42
43The current vehicle position is either read from gpsd or directly from
44NMEA GPS sensors.
45
46The routing engine not only calculates an optimal route to your
47destination, but also generates directions and even speaks to you.
48
49Navit currently speaks 27 languages :
50- Brazilian Portuguese
51- Bulgarian
52- Chinese (Hong Kong)
53- Czech
54- Danish
55- Dutch
56- English
57- Estonian
58- Finnish
59- French
60- German
61- Hebrew
62- Hungarian
63- Italian
64- Japanese
65- Norwegian Bokmal
66- Polish
67- Portuguese
68- Romanian
69- Russian
70- Slovak
71- Slovenian
72- Spanish
73- Swedish
74- Telugu
75- Thai
76- Turkish
77
78You can help translating via our web based translation page :
79 http://translations.launchpad.net/navit/trunk/+pots/navit
80
81
82For help or more information, please refer to the wiki :
83 http://wiki.navit-project.org
84
85If you don't know where to start, we recommend you to read the
86Interactive Help : http://wiki.navit-project.org/index.php/Interactive_help
87
88
89Maps:
90=====
91
92The best navigation system is useless without maps. Those three maps
93are known to work:
94
95- OpenStreetMaps : display, routing, but street name search isn't complete
96 (see http://wiki.navit-project.org/index.php/OpenStreetMaps )
97
98- Grosser Reiseplaner and compliant maps : full support
99 (see http://wiki.navit-project.org/index.php/European_maps )
100
101- Garmin maps : display, routing, search is being worked on
102 (see http://wiki.navit-project.org/index.php/Garmin_maps )
103
104
105GPS Support:
106============
107
108Navit read the current vehicle position :
109- directly from a file
110- from gpsd (local or remote)
111- from udp server (friends tracking) (experimental)
112
113
114Routing algorithm
115=================
116
117NavIt uses a Dijkstra algorithm for routing. The routing starts at the
118destination by assigning a value to each point directly connected to
119destination point. The value represents the estimated time needed to
120pass this distance.
121
122Now the point with the lowest value is choosen using the Fibonacci
123heap and a value is assigned to connected points whos are
124unevaluated or whos current value ist greater than the new one.
125
126The search is repeated until the origin is found.
127
128Once the origin is reached, all that needs to be done is to follow the
129points with the lowest values to the destination.
130
131

Legend:
Removed from v.51  
changed lines
  Added in v.56

   
Visit the ZANavi Wiki