Geotagging Web Pages and RSS Feeds
January 11th, 2005 by Andrew Turner in
My previous article discussed how geolocation by IP address enables applications and Web sites to determine users' locations automatically in order to provide specific location-based services to users and members of an on-line community. In this article, we present various methods by which Web sites can provide their geographic locations to static pages and syndicated feeds, in the form of meta information or geotags. Put another way, geolocation by IP address is the technique a Web site uses to determine where users are located; geotagging is the technique users employ to find out where a Web site is located.
Geotags typically locate the Web site's principle location on the Earth. This information can include latitude and longitude information for exact locations or simply city, region and country information for general locations. Web services, applications and users then can query this information to obtain directions (how to get from here to there), locality (what's near there) or context (where was this article written). Geotags differ from a simple address in that they usually are encoded in metadata and are not visible as part of the Web page. Furthermore, by following a standard, other services easily and reliably can find these geotags. Various semantic Web projects still are solidifying geospatial tagging standards, but several techniques already have become common and supported. This article presents these current techniques.
Providing a geographic location is beneficial particularly for retail and service businesses, tourist attractions and entertainment venues. Geographic link directories, such as A2B and Multimap, can index these services by location and allow users to search geographically as well as by service type. Currently, many of these services limit users in their selection of available services. But, it would be possible to allow for more complex queries, such as searching for "Italian restaurants within 2 miles of downtown Arlington, Virginia". Or, when using automatic geolocation, one could ask for "directions from my current location to the nearest theater".
Current location-based services rely on the Web site administrator registering with an on-line index and specifying its location. Some of these services charge a fee, and many are not used commonly, nor are they cross-referenced. Google is now beta-testing Google Local, a free engine that allows users to search for location-based services using complex queries such as the examples above. Unfortunately, Google Local probably uses a form of scraping instead of meta information, considering that the 2002 Google Programming Contest winner's entry, by Daniel Egnor, is a geographic search which: "includes a geocoder (... to turn street addresses into latitude/longitude coordinates), a simple indexer that looks for addresses and keywords in documents, and a query engine to search for documents matching certain keywords that also contain addresses within a certain distance of a target location". Still, Google Local is an excellent example of how providing geographic information on a Web site greatly can enhance its visibility and usefulness to potential customers and users.
Geographic metadata also is useful for bloggers and photographers. Traveling writers, travel writers and reviewers can give context to their articles by supplying specific geographic information about where they are writing from or where the business they are reviewing is located. Photographers can provide viewers with information necessary for better understanding the photograph by informing them of where it was taken. Environmental services are now beginning to offer syndication feeds for weather and earthquakes. By geotagging these feeds, aggregators could sort, search and display information by region and location. As a result, users would gain a better picture of the current events happening in their areas.
By embedding a geographic location in the metadata of the Web site, applications and Web-based services quickly and reliably can determine the site's location relative to search criteria. Using metadata prevents the confusion of an automated search bot having to determine the location from the site's text. The rest of this article discusses the techniques used for embedding geographic information in your Web site or syndicated feed.
For a Web site, several means of geotagging are available. My previous article explained how to embed the site's geographic information in its DNS entry. Other options also allow this information to be placed within a site or each individual page. These are the older ICBM tags and the newer, more generic geo-structure tags.
The ICBM (original acronym is Intercontinental Ballistic Missile) tags derive from a more historical application, as described in the AntiOnline jargon dictionary:
(Also 'missile address') The form used to register a site with the Usenet mapping project, back before the day of pervasive Internet, included a blank for longitude and latitude, preferably to seconds-of-arc accuracy. This was actually used for generating geographically-correct maps of Usenet links on a plotter; however, it became traditional to refer to this as one's 'ICBM address' or 'missile address', and some people include it in their sig block with that name. (A real missile address would include target elevation.)
ICBM tags are limited to latitude and longitude and do not include other regional information, such as city or country. From Matt Croydon's PostNeo, the RFC (request for comment) of the syntax is as follows:
<meta name='ICBM' content="latitude, longitude" />
This tag would be included in your Web page's <head> section.
Another means of embedding geographic metadata is through geo-structure tags. These geo-structure tags can include latitude and longitude information as well as regional information and an extra placename. The placename could contain the specific address of the person or business. Or, it could be useful for providing a location that may not have a specific point but covering a broader region, such as a city or district. The following example is for the Museo Nacional Del Prado, in Madrid, Spain.
<meta name="geo.position" content="40.4157;-3.6947" /> <meta name="geo.region" content="ES-M"> <meta name="geo.placename" content="Paseo del Prado">
I obtained the geo.position information using Multimap, given the address provided on the museum's Web page. The geo.region uses the ISO-3166-1 Country Names and Region Names specifications. For the US and Canada, this is the abbreviation for the state or province; it varies in other countries. All together, the code for my Web site looks like this:
<meta name="DC.title" content="High Earth Orbit" /> <meta name="ICBM" content="42.4266, -83.49307" /> <meta name="geo.position" content="42.4266;-83.49307" /> <meta name="geo.region" content="US-MI"> <meta name="geo.placename" content="Northville">
As mentioned in the introduction, Multimap provides a location service that offers hotels located within the area of the maps you have selected. This service is provided by the Accommodation Search Engine Network. The Web pages on the ASE site employ the use of commented-out tables to hide the geographic information. The Multimap Web service then pulls this information from each of the hotels' Web pages or backend databases. This method is not recommended, however, because it is not standard and is difficult to use for applications and other Web services. An example of this block is shown below:
<!--
<a name="geo"></a><br>
<table>
<tr class="bg2">
<td class="head2">Geographical Information:</td>
</tr>
<tr class="bg1">
<td class="text">
<span>Accuracy:</span>Property<br>
<span>Lat:</span>39.894337<br>
<span>Long:</span>-83.807657<br>
<span>TimeZone:</span>Eastern<br>
</td>
</tr>
</table>
-->
Besides geotagging a Web site, it is possible to geotag the source of an RSS feed as well as the individual articles. By geotagging each article, your feed can provide entries from various locations. Then, these entries can be displayed on a map where users can read about locations that interest them. Alternatively, by geotagging the source of the feed, a directory or opml file could provide feeds based on user-selected locations.
The Resource Description Framework Interest Group (RDFIG) has published a solidifying standard for the geospatial vocabulary. It includes specifying latitude, longitude and, optionally, altitude. This is similar to the geo tags discussed above, with small syntactic differences. Furthermore, the RDF requires you to specify an XML namespace (xmlns) for the WGS84 geodetic reference datum.
<rdf:RDF
>
<geo:Point>
<geo:lat>55.701</geo:lat>
<geo:long>12.552</geo:long>
<geo:alt>52.4</geo:alt>
</geo:Point>
</rdf:RDF>
The ICBM standard discussed above also can be used in tagging an RSS feed. Again, an XML namespace is used to specify the keywords of the file, and the tags are included either in the header or within the item tags. Here is example from the USGS Earthquake feed of events over 2.5 on the Richter scale in the last 7 days:
<rss version="2.0" > <item> <title>M 3.7, Southern Alaska</title> <description>January 02, 2005 03:55:52 GMT</description> <link>http://earthquake.usgs.gov/recenteqsww/Quakes/ak00043775.htm</link> <icbm:latitude>60.4780</icbm:latitude> <icbm:longitude>-152.4355</icbm:longitude> <dc:subject>3</dc:subject> <dc:subject>pasthour</dc:subject> </item>
Finally, some Weblog services may prevent users from adding new tags to RSS feeds. In this case, it is acceptable for some sites and packages to embed the geographic information in <dc:subject> tags, as shown below:
<?xml version="1.0"?> <rss version="2.0" > <channel> <item> <title>Example Title</title> <link>http://site.com/geo</link> <description>Example Description</description> <dc:subject>geo:lat=33.00 geo:long=-44.54</dc:subject> </item> </channel> </rss>
Several Weblog packages already incorporate the ability to specify a geographic location within an entry as well as for the entire Weblog. This geographic information then can be included for users when reading the Weblog through their browsers or through their own aggregators. Each entry, when posted, is assigned either a default location or is given a new location. The following is an example of the geotagged RSS feed generated by Wordpress v1.2:
<?xml version="1.0" encoding="utf-8"?> <rss version="2.0" > <channel> <title>High Earth Orbit</title> <link>http://highearthorbit.com</link> <description>LinuxJournal Example</description> <icbm:latitude>42.4266</icbm:latitude> <icbm:longitude>-83.4931</icbm:longitude> <copyright>Copyright 2005</copyright> <pubDate>Wed, 05 Jan 2005 18:54:47 +0000</pubDate> <generator>http://wordpress.org/?v=1.2</generator> <item> <title>Sample Title</title> <link>http://highearthorbit.com/index.php?p=121</link> <pubDate>Wed, 05 Jan 2005 18:54:47 +0000</pubDate> <category>Sample Category</category> <guid>http://highearthorbit.com/index.php?p=121</guid> <description>Sample Description</description> <geo:Point> <geo:lat>42.5021</geo:lat> <geo:long>-83.1454</geo:long> </geo:Point> <icbm:latitude>42.5021</icbm:latitude> <icbm:longitude>-83.1454</icbm:longitude> </item> </channel> </rss>
For more information on other particular Weblogs, check out the Worldkit Documentation.
Now that your Web site has been geotagged, what can you do to share this information with users and have new users find your site? A2B is the new incarnation of the defunct geourl.com. A2B allows Web site administrators to register their sites. From there, users can search for sites based on location or geographic locality to another Web site. It may be interesting to find out what other sites and places can be found in your area.
A2B also provides a free public API that allows application and Web site developers to query the A2B database of locations. The A2B query does not return the actual location of the Web sites, however, merely their distances and directions (compass headings) from the queried location.
To find out the latitude and longitude or city and region of a Web site, the user can view the Web site's meta information. To illustrate this, we have written an extension to the Firefox browser that alerts users that geotags are available for the Web site currently being viewed. The extension also retrieves that information without the user having to look at the Web site's markup source. Download and install the extension to try it out for yourself.
Another index to check out is WorldPress. For RSS feeds, MapBureau and Michael Maron's WorldKit Mapper have on-line mapper applications that parse out the locations from your feed and display them on a map. It then is possible to embed a link to a map of your feed in your Web site.
Other applications of geotags include creating a Web page of closely related Web sites, similar to a Web ring, and display their locations on a map of the Earth or a specific region. A restaurant review Web page, for example, could display a map of their reviewing regions, and users could click on locations to read reviews of the restaurants located there. Furthermore, travelers could pull up Weblogs and travel information for the area they will be visiting. Hopefully, larger services similar to Google Local or Multimap will be developed that automatically will collect and use this information to provide users with a large database of services.
Geotags currently are not employed widely, and only a small number of services support their use. However, many could benefit from better geographic knowledge of Web sites and on-line data. Applications could provide a central location to assist users in finding out about their locations or intended travel locations. In order for this to occur, a better standardization of geospatial metadata must be created, utilized and supported by the Internet community. The W3C Semantic Web is such an effort to standardize the extension of Web data. Many groups across the globe are working together to create enhanced definitions (see Resources). Part of these efforts is defining a complete standard for geospatial tagging and for supporting other location-based services. With this work, the future of geotagging will provide better integration between the digital world and the physical world.
Special Magazine Offer -- 2 Free Trial Issues!
Receive 2 free trial issues of Linux Journal as well as instant online access to current and past issues. There's NO RISK and NO OBLIGATION to buy. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Sorry, offer available in the US only. International orders, click here.
Subscribe now!
The Latest
Featured Videos
Email is one of the least private and least secure forms of communication, although few people realize this. MixMaster is one way to allow secure, anonymous communication even over the very public medium of email. This tutorial will get you started with MixMaster quickly and easily.
In case you were wondering about the fun side of Linux World Expo, we thought we'd give you a peek at our shenanigans. We at Linux Journal love what we do so much, that we can't help but have a ball wherever we go.
Recently Popular
From the Magazine
September 2008, #173
Feeling a bit like a Thermian? Never give up, never surrender! Someday, you could go from underdog to top dog. Just take a look at a few of the underdogs we highlight in this issue: Mutt, djbdns, Nginix, Gentoo, Xara and the program voted mostly likely to fail just a few years back—Firefox. If Firefox is not radical enough for you, check out Chef Marcel's column for some more alternatives. Having trouble mapping your program data to your relational database? If so, Rueven Lerner shows you some tricks in his At The Forge column.
Need to run GUI applications on your server in the next state? In his Paranoid Penguin column, Mick Bauer shows you how to do it securely. Kyle Rankin keeps hacking and slashing and shows you a few split screen secrets you may not be familiar with. Finally, we all know what happens next February, but only Doc knows what happens afterward.
Delicious
Digg
Reddit
Newsvine
Technorati







Metadata are invisible: enter the Geotag Icon
On March 7th, 2008 Bruce McKenzie (not verified) says:
Wish I'd come across your summary of the situation earlier, although what is really interesting is how little has changed since 2005. Geotagging is about to surge forward for a number of reasons, but whether geo-location uses meta tags, microformats, or EXIF-GPS it's hard for people to identify content that is location-specific. All these standards are invisible to people (but not to machines). Visibility is one reason why we need a web "standard" geotag icon; others are that it provides visual homogeneity in meaning, is format- and service-agnostic, and encourages development of the semantic web.
This is the rationale behind the Geotag Icon Project, which is a community-designed icon free for use by geotaggers everywhere. See geotagicons.com.
Thanks
On September 30th, 2007 teia (not verified) says:
Thanks for the article. I wish there were a Drupal module that could do this automatically.
Drupal has great Geo-modules
On January 24th, 2008 Anonymous (not verified) says:
Drupal actually has great modules for adding GeoRSS and KML:
http://drupal.org/project/georss
http://drupal.org/project/kml
Great Article, got me started on geotagging
On August 22nd, 2005 grasshoppermind (not verified) says:
Your article is an excellent reference for anyone wanting to geotag their own content. However, I also wanted to be able to tag any content. I finally figured out how to do this and I've written up a quick HOWTO: geotag anything article.
Many thanks
zfzsprbh
On September 7th, 2007 Anonymous (not verified) says:
lulxopgn
Superb Article
On February 15th, 2006 dankeblog (not verified) says:
I agree, the article is great, and I really hope it'll help me for my future website. Geotagging your content is one of the prospects.
Re:Geo
On August 18th, 2006 Falko Paradus (not verified) says:
The tools provided includes "WWMX Client Application", which it says will add geotagging to a photograph by dragging and dropping photos to a location on a map (presumably supplied as well).
For more accurate tags, it providess "WWMX Location Stamper", that checks a digital photo's embedded timestamp, correlates it to GPS track files loaded in GPX format, and "WWMX TrackDownload" that can be used to extract tracks from handheld Garmin GPS device (and some others).
Re: Geo
On August 18th, 2006 Florian Kater (not verified) says:
I don't know about software solutions, but there are a few cameras out
there with GPS built in that will give you that data, along with
direction you are facing and elevation. They are used in real estate,
appraising, etc. You then download from the camera to a map.
Great article, helped me roll geo tags into my system
On June 12th, 2005 Walter S. (not verified) says:
I have a site creation service, 5minutesite.com, that is tailored to small, local businesses. This article gave me the info I needed to add the code needed to automatically add geo codes to the sites my service creates.
If anyone sets up PPC ad campaigns in the US for local businesses, you might like to check out a tool I created to help build localized keyword lists.
Local Keyword Generator
Thanks!
Geotagged blogs on Multimap
On February 18th, 2005 Richard Rutter (not verified) says:
Over the past few months, Multimap has been scraping weblogs for geotags. So far Multimap has collected and mapped nearly 6,000 blogs.
You can search for blogs on any given map by selecting 'Weblogs' from Multimap's local information feature. For example here is a map of blogs in Brighton, UK.
There are more details on Clagnut.
Man, don't you know today's
On February 15th, 2006 Diana (not verified) says:
Man, don't you know today's statistics? Very interesting to see it.
b.t.w geotap article is very useful.
Mobiletracker reports that
On August 18th, 2006 Faustus Erratus (not verified) says:
Mobiletracker reports that over the weekend, Yahoo released some
interesting alpha geotagging software called Zonetag.
It's the application for Nokia Series 60 smartphones that automatically
tags photos with the location where they were taken according to info
from the cellular towers the phone was connected to at the time. Photos
are then sent to Yahoo's photo sharing site, Flickr.
A2B - some extra features in last few days
On January 12th, 2005 Sam Critchley - A2B (not verified) says:
Hi Andrew (everyone),
Many thanks for writing the article - great article (which I will definitely be bookmarking) and it's very exciting for us at A2B to get a mention!
I think the real challenge for the future of the whole geotagging area is integration with mapping. Wealthy commercial applications can afford the huge prices for mapping data, but the USA is about the only country where full country mapping information is available for free (called "TIGER data" from the US Census), and commercial services are charging a LOT for mapping data (which A2B can't afford at the moment).
Anyway, thought you and your readers might like to know about a couple of new extras on A2B which add to what you wrote:
- RSS feeds. You can now autogenerate an RSS feed URL which shows "most recently added/updated sites within XX kilometres/miles" of your site.
- Blog/site buttons - you can now autogenerate the link for an "A2B Nearby" button for your blog/site which will show your visitors which other sites are geographically nearest to yours.
- Map-based A2B searching - you can now put up your own map image file (including scanned maps, assuming copyright permission) and generate imagemap HTML to put on your site.
Details in the latest A2B newsletter at http://forum.a2b.cc/viewtopic.php?t=26
Many thanks,
Sam
thanks!
On January 18th, 2005 Ben LeMasurier (not verified) says:
Thanks for the great article. I think I will start to include this in all the sites I build. Is there a known lat/long search engine?
thanks again,
Ben
uidzer0.org
geourl.org
On April 4th, 2005 neilp (not verified) says:
yea - you should check out geourl.org it (sort of) does lookups based on latitude and longitude.
re: Is there a known lat/long search engine?
On February 18th, 2005 Richard Rutter (not verified) says:
The map information are below every map on Multimap.com displays latitude and longitude. So you can search for any location world-wide and Multimap will give you the map and associated coordinates below.
linux
On October 2nd, 2007 enigma rising tide patch download (not verified) says:
patch? a What is Thanks.
not sure how to add?
On July 28th, 2006 MyIndia (not verified) says:
not sure how to add tags on my blog named SEO India. pls guide
How to add geo tags
On April 29th, 2007 Anonymous (not verified) says:
Try this Geo-Tag-Generator to create your geo tags. Then copy and paste them to your html header.