New cells contributions
April 21st, 2008Good news, OpenCellID is taking off in a great way. Nick Gering from Device54 contributed by providing some informations about some cells located in London and Barcelona! So thanks Nick for the contribution
Good news, OpenCellID is taking off in a great way. Nick Gering from Device54 contributed by providing some informations about some cells located in London and Barcelona! So thanks Nick for the contribution
Ok, following some requests, here is another tutorial on how to use the J2memap library. First, note that if you just want to display a KML file on mobile, you can use 8Motions directly, no need to create your own application.
Anyway, here we are going to show you how to create a very simple app that display a KML file on a cell phone. First, download the J2memap library (you need to be registered to download it), and put thelibraryCLDC11.jar (or 10.jar) as a library of your project. In netbeans, you do Properties,add jar/zip,select the jar file.
Here I take a KML file, but it could be also a GPX file, LOC or GEORSS file….
Then, here is the code:
package com.eightmotions.LoadTrack; import javax.microedition.midlet.*; import javax.microedition.lcdui.*; import com.eightmotions.util.*; import com.eightmotions.map.*; /** * * @author tlandspurg * @version */ public class LoadTrack extends MIDlet implements TrackNotifier { MapCanvas m_map; Display m_display; public void startApp() { UtilMidp.checkMIDP(this); //Initialise the utility library… // Initialize the map, get the display, and put the map on it m_map=new MapCanvas(); m_display=Display.getDisplay(this); m_display.setCurrent(m_map); // Load a track, and display this track to a map Track track=Track.getTrack(m_display,“http://www.8motions.com/map/showKml/107″,“Loading Track”,m_map); // Listen for track loaded event… track.setNotifier(this); } public void pauseApp() { } public void destroyApp(boolean unconditional) { } /* When the track has been loaded, display it… */ public void onTrackLoaded(Track tr) { m_map.displayTrack(tr,true); } public void onTrackCreated(Track t) { }; public void onTrackSaved(Track t) {}; }
Here is the result:

Here is a project that I wanted to introduce to you: OpenCellID.The purpose of this project is to create an OpenSource database of GSM cells.
Why? Because this can be used as a “cheap” way to get your location. There is not a lot of phones that provides this access to JavaMe application (mostly SonyEricsson), but this may change in the near future.
The idea is do it in a transparent way for end user, thanks to 8Motions or other applications. This is not a new idea, as Google probably made the same for his GoogleMap mobile application. The only issue, is that the application needs to access to two informations:
and for now, no handset provides this. N95 for instance, haves a GPS but does not provide CellID information in JavaME. Latest SonyEricsson phone, provides CellID, but not GPS position. I think that new GPS enabled handsets will provide both, but for new you need to use a SonyEricsson phone and an external bluetooth receiver….
You can check the result of collected data on the OpenCellID.org web site….
There were other initiatives like this, but the idea is to provide the Datas as an OpenSource information. The code of the project is hosted on Google Code.
Identificateurs Technorati : cellid, mobile, opencellid, gsm, towers
Just put in place a better design for the j2memap developer web site. Let me know if you have any issue….
Hello dear J2memap developer,
We’ve just put on line a new version of the SDK.
Beyon some small improvment, there is a major (but easy to handle) change:
As a reminder, this SDK allows you to easily create mobile mapping application, and is freely available for non commercial application at http://j2memap.8motions.com
Let us now if you have any issue!
Navx, a french company selling customized voices and POI for GPS, seems to go also in the UGC content. They just announced yesterday the opening in public beta of their platform.
This seems very similar to what 8Motions is doing, except that they are focused on the GPS market. While GPS is a big market, I stilll doubt that GPS users will be big UGC contributors: the primary goal of a GPS is to help you to navigate but it will be far from being a perfect device to create UGC.
Our objective is to bring the ability to create user generated content related to geolocalisation with a clear focus on mobile, which is in our view the most interesting device for this. Export is possible for plenty of format, including GPS to consume some user generated content.
Anyway, good luck for NavX, and we will see how the platform will evolve!
Navizon integrate the J2memap library from 8Motions…. Navizon, a well know provider of geolocation software uses the J2memap library to display on line maps… See more on the Navizon blog.
If you want to add easily maps in your j2me app, just contact us, or check directly the SDK .
Identificateurs Technorati : 8motions, J2memap, mobile, maps, navizon
Aurel, posted a great trip of his holidays in Guadeloupe on 8Motions….Look at this:

Thanks to 8Motions, you can follow Aurelien path, and get all these great places on your mobile, for your next trip in Guadeloupe
You can even check his trip on Google Earth:


8Motions just run perfectly well on my latest N95 8Gb. The screen orientation is supported, as well as taking picture and uploading them to the flickr directly.

TIP: put the software in the internal memory, not the 7GB one. This one is extremely slow, and will slow done applications like 8Motions which use local storage for caching.
TIP2: if you want to upload directly to flickr, remember to put ask a flickr token on the mobile. It will be asked the first time that you try to do it, so you need to be close to your computer and type the required URL. I know that this could be better, and we will improve this later on.
Also thanks to nokia 95 user blog for linking the app…