Need help parsing some Atom feed

Need help parsing some Atom feed

I have trouble doing the parsing in a correct way, probably.

Example of a page I'm trying to parse:
http://to.uri.st/search.atom?c=52.5,-0.25

I did it the following way:

$(response).find("entry").each(function(){
 hName = $(this).find("title").text(); 
hpoint = $(this).find("georss:point").text();
} );


Now for some reason I do get the hName but I don't get any of the hpoint's. What can be a reason for that? They seem to be on a same hierarchy level.

Thanks in advance.