Active Topics

 


Reply
Thread Tools
Posts: 58 | Thanked: 10 times | Joined on Dec 2009
#1
Hi,

I'm developing a translator application.

I'd like it to detect languages automatically, target language from GPS coordinates and source language from information about SIM card operator.

So I need to extract only the country name, no coordinates.

Does anyone know how to do this?
I'm developing in Python and Qt4.
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#2
Not so sure about the GPS/Sim part but the device has system locale built in. So depending on what the locale of the device is - you could use that?

Code:
                import os

                print " ** Getting system locale**"
		sl = os.popen('locale | grep LANG').read()
		print sl.strip()[5:]
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 58 | Thanked: 10 times | Joined on Dec 2009
#3
Thanks!

It is very useful.
I can get the local information from LC_TELEPHONE variable.
This can be used instead of SIM operator information.

So I just need the same thing from the GPS coordinates
 

The Following User Says Thank You to zolakt For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#4
hmmm what exact info do you want from the gps co-ords....
Getting the co-ords is easy, but to find location out from there i'd assume you would need to either
a) Have a local database and select nearest co-ord as the location
b) Query a web api from somewhere?
Maybe something like - http://code.google.com/apis/maps/doc...verseGeocoding

You can even get the timecode from gps co-ords here - http://www.earthtools.org/index.php?...&z=4&t=3&m=Map
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 58 | Thanked: 10 times | Joined on Dec 2009
#5
I just want to get the language/country information.

So here is an example.
I live in Croatia.
Let's say I go on a holiday to Turkey.
I get there, start my translator application.

Id like the initial data to be the following:
- source language set to Croatian
- target (translation) language set to Turkish

Last edited by zolakt; 2010-04-26 at 09:50.
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#6
ahhh clever......

Hmmm how about -
http://ws.geonames.org/findNearbyPla...lat=47.3&lng=9

(notice the basic lat + long sent in - and it returns an xml - nearest city, country code and country name )

Code:
<geonames>
−
<geoname>
<name>Atzmännig</name>
<lat>47.287633</lat>
<lng>8.988454</lng>
<geonameId>6559633</geonameId>
<countryCode>CH</countryCode>
<countryName>Switzerland</countryName>
<fcl>P</fcl>
<fcode>PPL</fcode>
<distance>1.6276</distance>
</geoname>
</geonames>
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 58 | Thanked: 10 times | Joined on Dec 2009
#7
Thank you very much noobmonkey!

That's what I'm looking for.

My app needs an internet connection anyway, so a web service approach is the way to go. Much simpler than making a local database
 

The Following User Says Thank You to zolakt For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#8
Also - multimap will do it too - http://www.multimap.com/share/docume...htm#parameters
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#9
Originally Posted by zolakt View Post
Thank you very much noobmonkey!

That's what I'm looking for.

My app needs an internet connection anyway, so a web service approach is the way to go. Much simpler than making a local database
Good to hear - very interested in that part of your application - as it could have many many uses!

Will definitley be interested in testing it too! - good idea and good luck!
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 58 | Thanked: 10 times | Joined on Dec 2009
#10
Thanks.

There isn't much to tell about that part.
I have my own web service that will resolve country name to a standard format (for my app).

The client program gets the right name string, checks if the two collected information are different (otherwise target lang is English), and sets the comboboxes to appropriate value.

The original idea was to create a speech-to-speech translator, using a composition of available web services like: Google translate, Google TTS(text-to-speech), ISpeech, Loquendo TTS etc. etc. etc. It can use any engine, as long as it can get the result trough HTTP.

Unfortunately I couldn't find a suitable speech-to-text Linux program, so it will only accept typed input, and return translated text and an audio file with the pronunciation.

Now I'm looking to spice thing up a little. With this location thing, OpenGL face model with lip sync etc.

Anyway, it will be in testing in about a month or two.
 

The Following User Says Thank You to zolakt For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 18:32.