![]() |
Re: Maemo Mapper v1.4 for 770/N800
Is there any way to enable debugging of Maemo Mapper?
I tried to use it this weekend with a Bluetooth GPS for trip from Rugby to York (both in the UK) and it crashed so frequently on my N800 to be useless. Having seen the same sort of thing when run from the command line (difficult to do at <cough> mph on the motorway) it seems to be a combination of seg faults and random quits. I've not yet plowed through the source (mmm, one big shiny file) but anyone (gnuite <hint> ;-)) know how good it is with buffer overflows etc.? e.g. if it gets dodgy data from the GPS? If I had a debug log, I'd raise a bug and try and fix it, but there seems to be no rhyme or reason to the crashes, except they seem to occur when I've got the GPS enabled (and "Show info" on). Thanks in advance, Andrew |
Re: Maemo Mapper v1.4 for 770/N800
Quote:
Quote:
Quote:
Has anyone else had problems with that receiver? |
Re: Maemo Mapper v1.4 for 770/N800
The Deluo GPS which was recently discussed and pointed to on eBay. I'll try recompiling the deb with debug enabled (unless you have one to hand already).
Testing it's a bit of a pain, as it's cold outside and there's no GPS lock within my house or office ;-/ Cheers, Andrew |
Cell Phone as GPS device for Maemo Mapper?
I read in a review that if you have a GPS enabled cell phone with bluetooth - it can be used with the application. I searched the forum but only see actual GPS units listed as source GPS.
Can you shed light on if a cell phone can be used and if so - which models. Also - does the program look for the GPS using the SPP bluetooth profile or another profile? Thanks, I live in the US. |
Re: Maemo Mapper v1.4 for 770/N800
Ref posts #79 and #80,
I am trying to make this work but an struggling with the way maemo mapper catalogues it's tiles; Gnuite states that the tiles have paths thus: $HOME/apps/maemo-mapper/[ZOOM]/[LATITUDE]/[LONGITUDE].jpg, but that bears no relation to where I live 51.433623, -1.276541 and the tiling for level 0 starts at 65055 file with tiles named 43656, 43657..... I found this on mapki about MapCruncher; it may help: The following code generates a tile file name for your custom tiles using the x,y and z tile parameters that get passed to GTileLayer.getTileUrl TileToQuadKey ( tx, ty, zl) { var quad; quad = ""; for (var i = zl; i > 0; i--){ var mask = 1 << (i - 1); var cell = 0; if ((tx & mask) != 0) cell++; if ((ty & mask) != 0) cell += 2; quad += cell; } return quad; } Any ideas? Thanks |
Re: Cell Phone as GPS device for Maemo Mapper?
Quote:
As for which cell phones would work: all it has to do is emit NMEA sentences to the SPP. If your cell phone can do that, then it should work with Maemo Mapper. |
Re: Maemo Mapper v1.4 for 770/N800
Quote:
Your post is from 2-22-07. So, will the download at Garage Maemo include everything needed for the install, or do I need to still go out and find libsqlite3-0? If so, could you please provide a link to download it. Does it matter in what order I install everything? Thanks |
Re: Maemo Mapper v1.4 for 770/N800
Quote:
In the mercator projection, the world is a square. Maemo Mapper divides the world into pixels, each pixel of which represents a pixel at zoom level 0. The world is 2^25 (33554432) pixels wide and high. "Tiles" are 256x256 wide, so at zoom level 0, the world is 2^17 (131072) tiles wide and high. You're near the prime meridian, so your tile number (at zoom level 0) is near (131072 / 2). At each zoom level above 0, the width of the world (in # of tiles) is decreased by half. So, at zoom level 5, the world is 2^12 (4096) tiles wide. Now, you have to be careful about what lat/lon you assign to each tiles, because at high zoom levels, the lat/lon of the center of the tile and that of its upper-left corner are very different. And, due to the projection, the longitudes are easy to calculate (-180 + (tile-number / total-number-of-tiles), but the latitudes depend on the tile's distance from the equator. |
Re: Maemo Mapper v1.4 for 770/N800
That was a piece of very useful information.. stored for later reference. Thanks!
|
Re: Maemo Mapper v1.4 for 770/N800
Quote:
|
All times are GMT. The time now is 08:58. |
vBulletin® Version 3.8.8