I am trying to the universal feedparser to parse <georss:point>55.32967 10.236263</georss:point>
but it's not working. I have tried accessing item['georss']
, item['georss:point']
and item['point']
all resulting in a KeyError
.
I have tried to follow can feedparser parse geo-rss but it's still not working
I had a look at the keys for each entry and found that the
georss:point
tag is listed asgeorss_point
, so you can call the coordinate value for the entry with eitherfeed.entry[i].georss_point
orfeed.entry[i]['georss_point']
.