The Following User Says Thank You to 7thd For This Useful Post: | ||
![]() |
2010-12-13
, 19:26
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#402
|
The Following User Says Thank You to woody14619 For This Useful Post: | ||
![]() |
2010-12-13
, 20:11
|
Posts: 73 |
Thanked: 33 times |
Joined on Nov 2010
|
#403
|
The Following 2 Users Say Thank You to jj0 For This Useful Post: | ||
![]() |
2010-12-13
, 22:37
|
Posts: 98 |
Thanked: 44 times |
Joined on Mar 2010
@ Netherlands
|
#404
|
<problem> I lost the crosshair/fix/pointer as well as the tracks and start/end pointers. Latest build no improvement.
~ $ modrana == modRana Starting == device string (first parameter): n900 importing modules: * menu: Handle menus (30.00 ms) * example: A sample pyroute module (10.00 ms) * clickHandler: handle mouse clicks (10.00 ms) * waypoints: Lookup nearest town or village (80.00 ms) * messages: Handles messages (120.00 ms) * onlineServices: Module for communication with various online services. (170.00 ms) * mapView: Controls the view being displayed on the map (0.00 ms) * display: A platform independent display device control module (0.00 ms) * icons: Draw icons (10.00 ms) * log: A modRana logging module (0.00 ms) Traceback (most recent call last): File "modrana.py", line 476, in <module> program = GuiBase(device) File "modrana.py", line 411, in __init__ self.mapWidget = MapWidget() File "modrana.py", line 85, in __init__ self.loadModules('modules') # name of the folder with modules File "modrana.py", line 106, in loadModules self.m[name] = a.getModule(self.m,self.d) File "/opt/modrana/modules/mod_options.py", line 25, in getModule return(options(m,d)) File "/opt/modrana/modules/mod_options.py", line 33, in __init__ self.load() File "/opt/modrana/modules/mod_options.py", line 369, in load newData = marshal.load(f) EOFError: EOF read where object expected ~ $
The Following User Says Thank You to 7thd For This Useful Post: | ||
![]() |
2010-12-15
, 00:37
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#405
|
Get outta town! You had a FR too!? Small world.I have a GTA02v5 sitting on a shelf right now collecting dust. I keep meaning to bring it into work to flash it with the latest qtmoko (they just release v30 this week), but I keep forgetting it. (I don't have a windows box at home anymore, and the linux tools for FR never worked right for me...) I hear it's almost working as a reliable phone now... But then I heard that from some people the whole time, and mine was never good at keeping a GSM signal, yet alone handling calls or text. :P
Of course, none of these solve the "Turn left on Street Andrews Street" problem; I'm not sure how that could be handled without true natural-language processing.
regexp;your_regexp_code
You need to be careful with these, they do not work as expected, which relates to the previous post also. Basically modrana just does a plain substitution, not whole words. I.e. if you have
this is wrong as then for instance "Park Street" will be read as "Park Street reet"Code:St;Street
so maybe it should be:
Code:St ;Street
St. ;Street
St.;Street
I'm pretty sure it just overwrites things, unless the file has been specially marked in the distribution. One way to handle that problem would be to auto-merge it with a similar file in the user's home directory; then the one in /home/user could be used for personal localizations.
Ave;Avenue Cir;Circle Hts;Heights Hwy;Highway Ln;Lane Pde;Parade Pkwy;Parkway Pl;Place Plz;Plaza Rd;Road Sq;Square Tce;Terrace Trk;Track Wy;Way
BTW, the new version is MUCH slower in loading the individual tiles for display, must be doing some caching or what-have-you, but now there is a noticeable lag, and the "Loading..." text showed for about a second or so, with every tile upon first display, then when it's redisplayed, i.e. zoomed out and back in, it's instantaneous, but it used to be instantaneous before...
The Following User Says Thank You to MartinK For This Useful Post: | ||
![]() |
2010-12-15
, 01:27
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#406
|
Hmmm... very interesting. Could it be that the sqlite db has some internal errors and that's what is messing up the download. Though the log is not reporting any...
Anyhow, I backed up the .maps folder, then created a new empty one, and am now downloading maps for a 80 km area around a point.
It's been going on without errors for some time now, now at 39 thousand out of 360 thou...
Also, there might be some prob in navigating tags, as for the past couple of days, driving around I've had modrana say:
In XXX meters turn right on XXX Street reet slash emphasis
I.e. the "Street reet" part was because of the St; substitution, but pronouncing the "slash emphasis" seems like it's reading a </emphasis> tag...
It doesn't do it all the time though, so not sure if only when it's ending in "Street"...
Martin: In the bug on causing the SGX driver to lock up, the Nokia rep noted the problem may be from sending too much to the drawing system. (Bogus, I know, but...) One thing of note was placing an entry in /etc/powervr.d/ for the program to "increase it's GL command buffer". I'm not sure how this is done though. Thought maybe you'd have and idea?
v 0.20-3 fails in postinst while chmodding /opt/modrana/cache/images/
It fails since there's dirnames with spaces in this dir, if you've downloaded some files, and the busybox `chmod -R' doesn't cope with these it seems...
in addition to forementioned problem
Modrana won't start at all now. I have only tried out setting buttons and have not tried to reinstall or other installs. I'm quite ignorant of the technique so I have no real clue.
Start in Xterminal shows the following
Would it help to uninstall or sth? Or can some1 provide info on a detail?Code:~ $ modrana == modRana Starting == device string (first parameter): n900 importing modules: * menu: Handle menus (30.00 ms) * example: A sample pyroute module (10.00 ms) * clickHandler: handle mouse clicks (10.00 ms) * waypoints: Lookup nearest town or village (80.00 ms) * messages: Handles messages (120.00 ms) * onlineServices: Module for communication with various online services. (170.00 ms) * mapView: Controls the view being displayed on the map (0.00 ms) * display: A platform independent display device control module (0.00 ms) * icons: Draw icons (10.00 ms) * log: A modRana logging module (0.00 ms) Traceback (most recent call last): File "modrana.py", line 476, in <module> program = GuiBase(device) File "modrana.py", line 411, in __init__ self.mapWidget = MapWidget() File "modrana.py", line 85, in __init__ self.loadModules('modules') # name of the folder with modules File "modrana.py", line 106, in loadModules self.m[name] = a.getModule(self.m,self.d) File "/opt/modrana/modules/mod_options.py", line 25, in getModule return(options(m,d)) File "/opt/modrana/modules/mod_options.py", line 33, in __init__ self.load() File "/opt/modrana/modules/mod_options.py", line 369, in load newData = marshal.load(f) EOFError: EOF read where object expected ~ $
I'm not experiencing other big failures other than some widgets falling out. I have toggled 3G/GSM while running Modrana by the way
<edit> I have tried reinstall (OTA). Xterminal session of modRana still shows the above. I can safely say that I left mod_options.py untouched, so far as I made no textual alterations whatsoever.
I miss this app with its k i c k a s s tiles, could anyone help restoring this modRana 0.20-3?
![]() |
2010-12-15
, 08:40
|
Posts: 650 |
Thanked: 497 times |
Joined on Oct 2008
@ Ghent, Belgium
|
#408
|
The Following User Says Thank You to petur For This Useful Post: | ||
![]() |
2010-12-15
, 09:33
|
Posts: 2,006 |
Thanked: 3,351 times |
Joined on Jun 2010
@ N900: Battery low. N950: torx 4 re-used once and fine; SIM port torn apart
|
#409
|
The Following User Says Thank You to Wikiwide For This Useful Post: | ||
![]() |
2010-12-15
, 13:57
|
Posts: 73 |
Thanked: 33 times |
Joined on Nov 2010
|
#410
|
![]() |
Tags |
bada rox, martin_rocks, modrana, navigation, openstreetmap, the best, wehasgps |
|
<problem> I lost the crosshair/fix/pointer as well as the tracks and start/end pointers. Latest build no improvement.
Last edited by 7thd; 2010-12-12 at 21:55.