skykooler
|
2011-03-02
, 23:11
|
Posts: 482 |
Thanked: 550 times |
Joined on Oct 2010
|
#551
|
The Following User Says Thank You to skykooler For This Useful Post: | ||
|
2011-03-02
, 23:40
|
Posts: 7 |
Thanked: 5 times |
Joined on Jan 2010
|
#552
|
The modes are currently also used while looking up routes - note how you get different routes when you are in the walking vs car modes
I was also thinking about per-mode specific settings, like: Scale the map to 4x original size, but in only in the car and bus modes, in bike mode only by 2X and use the default for all other modes.
The Following User Says Thank You to nordicnurse For This Useful Post: | ||
|
2011-03-03
, 00:15
|
Posts: 433 |
Thanked: 274 times |
Joined on Jan 2010
|
#553
|
I'm doing contract work for a company called Nuance, who deliver the TTS to all major players (including TomTom). I hear their output all the time, and it makes me say that eSpeak is utter crap It is decades behind commercial offerings.
The Following User Says Thank You to Pigro For This Useful Post: | ||
|
2011-03-03
, 08:19
|
Posts: 650 |
Thanked: 497 times |
Joined on Oct 2008
@ Ghent, Belgium
|
#554
|
|
2011-03-06
, 18:56
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#555
|
@MartinK
I have the latest version downloaded and the maps were set to google.I wanted to download tiles around 40 kms. From my home wifi I started to download but when i saw the size, i wanted to stop downloading but Modrana froze.It happened repeatedly.
@All
kindly consider this noob and explain me how to download goolgle maps from gmap catcher.i could manage them to be downloaded but i dont know where they are being downloaded in my UBUNTU system.Plus are there any specifications for zoom level?
your help is greatly appreciated.. regards
Scaling: how about speed-related zoom-level? Set hardcoded/configurable triggers points so that when speed is increased/decreased past set point scaling is incremented/decremented by, say, x1. Example: When accelerating from 10km/h to 40km/h map zooms out. That way scaling is right for situation (and mode ) and shows enough of the map in relation to speed. Maybe behind a toggle switch and if zoom button is pressed it stops speed-zooming. You'd have to re-enable it by pressing button.
The Following 3 Users Say Thank You to MartinK For This Useful Post: | ||
|
2011-03-06
, 19:38
|
Posts: 73 |
Thanked: 33 times |
Joined on Nov 2010
|
#556
|
@ TTS: Well, I'd say all is good as long the output is intelligible
Improvements would be nice, though. There are those mbrola voices, mentioned earlier in this thread.
Also, looks like Festival is available from extras - does anybody have an idea whats the quality of its output ?
|
2011-03-06
, 22:58
|
|
Posts: 451 |
Thanked: 424 times |
Joined on Apr 2010
@ England
|
#557
|
|
2011-03-07
, 00:40
|
Posts: 482 |
Thanked: 550 times |
Joined on Oct 2010
|
#558
|
Is it not possible to use pre-recorded voices, and then fallback on espeak if a certain recorded instruction isn't available?
The Following User Says Thank You to skykooler For This Useful Post: | ||
|
2011-03-07
, 02:27
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#559
|
The Following User Says Thank You to MartinK For This Useful Post: | ||
|
2011-03-07
, 02:54
|
Posts: 482 |
Thanked: 550 times |
Joined on Oct 2010
|
#560
|
def get_turn_direction(gmaps): #calling the google maps string "gmaps" gmaps_array = lower(gmaps).split(); #Convert to lowercase and split words if gmaps_array[1]=="left": if gmaps_array[0]=="turn": return "turn_left" elif gmaps_array[0]=="bear": return "bear_left" elif gmaps_array[0]=="exit": return "bear_left" else: return "turn_left" elif gmaps_array[1]=="right": if gmaps_array[0]=="turn": return "turn_right" elif gmaps_array[0]=="bear": return "bear_right" elif gmaps_array[0]=="exit": return "bear_right" else: return "turn_right" else: if gmaps_array[0]=="merge": return "merge" elif gmaps_array[2]=="left": #i.e. "Take first left" return "turn_left" elif gmaps_array[2]=="right": return "turn_right" elif gmaps_array[0]=="exit": #with no side specified, assume right exit return "bear_right" elif gmaps_array[0]=="continue": return "straight" else: #Catchall for other commands that I haven't anticipated return "don't_know"
The Following User Says Thank You to skykooler For This Useful Post: | ||
Tags |
bada rox, martin_rocks, modrana, navigation, openstreetmap, the best, wehasgps |
|