Hi everyone,
First I’d like to say thanks to marc for the geoRss module (Rome) and to everyone that has contributed to the project.....It Rocks!
I was wondering if it was possible to get the name of the place which Rome has converted to coordinates so I can also list the location i.e "Brazil"
My code is shown below, please be gentle I am only a student
Any help would be much appreciated
Thanks in advance
Code:
java.util.List x = parseGeoRss();
for (Iterator i = x.iterator();i.hasNext();)
{
SyndEntry p = (SyndEntry) i.next();
GeoRSSModule geoRSSModule = GeoRSSUtils.getGeoRSS(p);
String t = Double.toString(geoRSSModule.getPosition().getLatitude());
String v = Double.toString(geoRSSModule.getPosition().getLongitude());
//Get the name of the of the place which the coordinates have been
retrived for?
}