Including Geolocation in Feed Streamer Atom Entries

Many of the feeds returned by social media services include geolocation information. These can be selected and included in your Feed Streamer items by including the following part:

<georss:where>
            <gml:Point>
                        <gml:pos>LATITUDE LONGITUDE</gml:pos>
            </gml:Point>
</georss:where>

This element adds two namespaces that have to be added to the entry element - xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml".

An example takes from Instagram configuration:

<georss:where>
            <gml:Point>
                        <gml:pos>{location/latitude} {location/longitude}</gml:pos>
            </gml:Point>
</georss:where>