<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AndrewTurner</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AndrewTurner"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/AndrewTurner"/>
	<updated>2026-04-24T01:41:55Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=16565</id>
		<title>parsing-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=16565"/>
		<updated>2006-11-26T21:45:40Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* JavaScript example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Microformat Parsing =&lt;br /&gt;
&lt;br /&gt;
Microformat parsing mechanisms that depend on documents having even minimal xml properties like well-formedness may fail when consuming non-well-formed content.  [http://tidy.sourceforge.net/ Tidy] or even better [http://people.apache.org/~andyc/neko/doc/html/ CyberNeko] may be a useful work around.&lt;br /&gt;
In particular  [http://suda.co.uk/projects/X2V/ Brian Suda's frequently cited X2V hCard and hCalendar discovery and transformation prototypes] use XSLT, and &amp;quot;tidy&amp;quot; any non-well-formed input before processing it.&lt;br /&gt;
&lt;br /&gt;
Most microformats tend to be agnostic about things like exact element type used.&lt;br /&gt;
&lt;br /&gt;
Developers can use tools like XPATH that assume well-formedness on well-formed content (from the web or by using tidy).  Mark Pilgrim's example [http://sourceforge.net/projects/feedparser/ universal feed parser] suggests that it may be possible to sanitize user html to an extent that it is suitable for later processing as xml.&lt;br /&gt;
&lt;br /&gt;
== Parsing class values ==&lt;br /&gt;
&lt;br /&gt;
When parsing class values care must be taken:&lt;br /&gt;
# Class attributes may contain multiple class names, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo vcard bar&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Class attributes may contain class names which contain the class name used by a microformat, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;class=&amp;quot;&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Multiple class names are seperated by one or more whitespace charchters. &lt;br /&gt;
# Class names are case sensitive.&lt;br /&gt;
 &lt;br /&gt;
See http://www.w3.org/TR/html401/struct/global.html#h-7.5.2.&lt;br /&gt;
&lt;br /&gt;
=== JavaScript example ===&lt;br /&gt;
The [http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/ Ultimate getElementsByClassName] JavaScript function may be useful. Then you can do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
var adrs = document.getElementsByClassName(document, &amp;quot;*&amp;quot;, &amp;quot;adr&amp;quot;);&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or even:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
var cities = document.getElementsByClassName(document, &amp;quot;*&amp;quot;, &amp;quot;locality&amp;quot;);&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
if (&amp;lt;em&amp;gt;elemenent&amp;lt;/em&amp;gt;.className.match(/&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;/)) ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XSLT example ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 &amp;amp;lt;xsl:if test=&amp;quot;contains(&lt;br /&gt;
    concat (&lt;br /&gt;
        ' ',&lt;br /&gt;
        concat(normalize-whitespace(@class),' ')&lt;br /&gt;
    ),&lt;br /&gt;
    ' &amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt; '&lt;br /&gt;
  )&amp;quot; &amp;amp;gt; ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://balloon.hobix.com/xpath-generator xpath generator], to help you generate those long ugly xpath queries. [link broken as of 8 August 2006]&lt;br /&gt;
&lt;br /&gt;
== Parsing rel/rev values ==&lt;br /&gt;
&lt;br /&gt;
Parsing rel and rev values is similar to parsing class values except for the following differences:&lt;br /&gt;
&lt;br /&gt;
# rel and rev values should be seperated by one space.&lt;br /&gt;
# rel and rev values are case insensetive.&lt;br /&gt;
&lt;br /&gt;
See http://www.w3.org/TR/html401/types.html#type-links.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[xmdp-brainstorming]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=10724</id>
		<title>parsing-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=10724"/>
		<updated>2006-11-26T21:45:12Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* JavaScript example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Microformat Parsing =&lt;br /&gt;
&lt;br /&gt;
Microformat parsing mechanisms that depend on documents having even minimal xml properties like well-formedness may fail when consuming non-well-formed content.  [http://tidy.sourceforge.net/ Tidy] or even better [http://people.apache.org/~andyc/neko/doc/html/ CyberNeko] may be a useful work around.&lt;br /&gt;
In particular  [http://suda.co.uk/projects/X2V/ Brian Suda's frequently cited X2V hCard and hCalendar discovery and transformation prototypes] use XSLT, and &amp;quot;tidy&amp;quot; any non-well-formed input before processing it.&lt;br /&gt;
&lt;br /&gt;
Most microformats tend to be agnostic about things like exact element type used.&lt;br /&gt;
&lt;br /&gt;
Developers can use tools like XPATH that assume well-formedness on well-formed content (from the web or by using tidy).  Mark Pilgrim's example [http://sourceforge.net/projects/feedparser/ universal feed parser] suggests that it may be possible to sanitize user html to an extent that it is suitable for later processing as xml.&lt;br /&gt;
&lt;br /&gt;
== Parsing class values ==&lt;br /&gt;
&lt;br /&gt;
When parsing class values care must be taken:&lt;br /&gt;
# Class attributes may contain multiple class names, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo vcard bar&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Class attributes may contain class names which contain the class name used by a microformat, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;class=&amp;quot;&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Multiple class names are seperated by one or more whitespace charchters. &lt;br /&gt;
# Class names are case sensitive.&lt;br /&gt;
 &lt;br /&gt;
See http://www.w3.org/TR/html401/struct/global.html#h-7.5.2.&lt;br /&gt;
&lt;br /&gt;
=== JavaScript example ===&lt;br /&gt;
The [http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/ Ultimate getElementsByClassName] JavaScript function may be useful. Then you can do:&lt;br /&gt;
&lt;br /&gt;
[[adr]] &lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
var adrs = document.getElementsByClassName(document, &amp;quot;*&amp;quot;, &amp;quot;adr&amp;quot;);&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or even:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
var cities = document.getElementsByClassName(document, &amp;quot;*&amp;quot;, &amp;quot;locality&amp;quot;);&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
if (&amp;lt;em&amp;gt;elemenent&amp;lt;/em&amp;gt;.className.match(/&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;/)) ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XSLT example ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 &amp;amp;lt;xsl:if test=&amp;quot;contains(&lt;br /&gt;
    concat (&lt;br /&gt;
        ' ',&lt;br /&gt;
        concat(normalize-whitespace(@class),' ')&lt;br /&gt;
    ),&lt;br /&gt;
    ' &amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt; '&lt;br /&gt;
  )&amp;quot; &amp;amp;gt; ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://balloon.hobix.com/xpath-generator xpath generator], to help you generate those long ugly xpath queries. [link broken as of 8 August 2006]&lt;br /&gt;
&lt;br /&gt;
== Parsing rel/rev values ==&lt;br /&gt;
&lt;br /&gt;
Parsing rel and rev values is similar to parsing class values except for the following differences:&lt;br /&gt;
&lt;br /&gt;
# rel and rev values should be seperated by one space.&lt;br /&gt;
# rel and rev values are case insensetive.&lt;br /&gt;
&lt;br /&gt;
See http://www.w3.org/TR/html401/types.html#type-links.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[xmdp-brainstorming]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=10723</id>
		<title>parsing-microformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=parsing-microformats&amp;diff=10723"/>
		<updated>2006-11-26T21:42:39Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added getElementsByClassName example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Microformat Parsing =&lt;br /&gt;
&lt;br /&gt;
Microformat parsing mechanisms that depend on documents having even minimal xml properties like well-formedness may fail when consuming non-well-formed content.  [http://tidy.sourceforge.net/ Tidy] or even better [http://people.apache.org/~andyc/neko/doc/html/ CyberNeko] may be a useful work around.&lt;br /&gt;
In particular  [http://suda.co.uk/projects/X2V/ Brian Suda's frequently cited X2V hCard and hCalendar discovery and transformation prototypes] use XSLT, and &amp;quot;tidy&amp;quot; any non-well-formed input before processing it.&lt;br /&gt;
&lt;br /&gt;
Most microformats tend to be agnostic about things like exact element type used.&lt;br /&gt;
&lt;br /&gt;
Developers can use tools like XPATH that assume well-formedness on well-formed content (from the web or by using tidy).  Mark Pilgrim's example [http://sourceforge.net/projects/feedparser/ universal feed parser] suggests that it may be possible to sanitize user html to an extent that it is suitable for later processing as xml.&lt;br /&gt;
&lt;br /&gt;
== Parsing class values ==&lt;br /&gt;
&lt;br /&gt;
When parsing class values care must be taken:&lt;br /&gt;
# Class attributes may contain multiple class names, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo vcard bar&amp;quot;&amp;lt;/code&amp;gt;&lt;br /&gt;
# Class attributes may contain class names which contain the class name used by a microformat, e.g: &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;class=&amp;quot;foo&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;class=&amp;quot;&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;bar&amp;quot;&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Multiple class names are seperated by one or more whitespace charchters. &lt;br /&gt;
# Class names are case sensitive.&lt;br /&gt;
 &lt;br /&gt;
See http://www.w3.org/TR/html401/struct/global.html#h-7.5.2.&lt;br /&gt;
&lt;br /&gt;
=== JavaScript example ===&lt;br /&gt;
The [http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/ Ultimate getElementsByClassName] JavaScript function may be useful. Then you can do:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
var adrs = document.getElementsByClassName(document, &amp;quot;*&amp;quot;, &amp;quot;adr&amp;quot;);&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or even:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
var cities = document.getElementsByClassName(document, &amp;quot;*&amp;quot;, &amp;quot;locality&amp;quot;);&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
if (&amp;lt;em&amp;gt;elemenent&amp;lt;/em&amp;gt;.className.match(/&amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt;/)) ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XSLT example ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 &amp;amp;lt;xsl:if test=&amp;quot;contains(&lt;br /&gt;
    concat (&lt;br /&gt;
        ' ',&lt;br /&gt;
        concat(normalize-whitespace(@class),' ')&lt;br /&gt;
    ),&lt;br /&gt;
    ' &amp;lt;strong&amp;gt;vcard&amp;lt;/strong&amp;gt; '&lt;br /&gt;
  )&amp;quot; &amp;amp;gt; ...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://balloon.hobix.com/xpath-generator xpath generator], to help you generate those long ugly xpath queries. [link broken as of 8 August 2006]&lt;br /&gt;
&lt;br /&gt;
== Parsing rel/rev values ==&lt;br /&gt;
&lt;br /&gt;
Parsing rel and rev values is similar to parsing class values except for the following differences:&lt;br /&gt;
&lt;br /&gt;
# rel and rev values should be seperated by one space.&lt;br /&gt;
# rel and rev values are case insensetive.&lt;br /&gt;
&lt;br /&gt;
See http://www.w3.org/TR/html401/types.html#type-links.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[xmdp-brainstorming]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=geo&amp;diff=10800</id>
		<title>geo</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=geo&amp;diff=10800"/>
		<updated>2006-11-20T01:44:02Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* Implementations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; geo &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''geo''' (working name, pronounced &amp;quot;gee-oh&amp;quot;) is a simple format for marking up geographic latitude longitude information, suitable for embedding in (X)HTML, Atom, RSS, and arbitrary XML. '''geo''' is a 1:1 representation of the &amp;quot;geo&amp;quot; property in the vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) in XHTML, one of several open [[microformats|microformat]] standards.&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Draft Specification ==&lt;br /&gt;
&lt;br /&gt;
=== Editor/Author ===&lt;br /&gt;
[http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc.]&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
{{MicroFormatCopyrightStatement2005}}&lt;br /&gt;
&lt;br /&gt;
=== Patents ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiration and Acknowledgments ===&lt;br /&gt;
Thanks to everyone who participated in the [[geo-bof-2005-06-30|Geo Microformat BOF at O'Reilly's Where 2.0 conference]], and in particular to [http://radar.oreilly.com/nat/ Nat Torkington] and Vee McMillen of [http://oreilly.com O'Reilly] for [http://conferences.oreillynet.com/cs/where2005/view/e_sess/7476 arranging and hosting the BOF].  Thanks to Chris Hibbbert for providing the [http://www.geocaching.com/seek/cache_details.aspx?guid=dc4754bf-64d5-4f28-8715-45ad2505c86f real world geo-caching example].&lt;br /&gt;
&lt;br /&gt;
== Introduction and Background ==&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]), has been broadly and interoperably implemented (e.g. Apple's Address Book application). The [[hcard|hCard]] microformat has similarly received significant adoption, from numerous sites publishing the format, to hCard to vCard proxies, to clientside javascript parsers.&lt;br /&gt;
&lt;br /&gt;
At the [http://conferences.oreillynet.com/where/ Where 2.0 conference] in June 2005, there was widespread recognition that the community needed a way to simply and easily publish visible, extractable, geographic location information on the Web, given how often bloggers, and numerous other sites publish such information.  The [[geo-bof-2005-06-30|geo microformat BOF]] discussed this very topic, and concluded with a consensus decision to just try using ''geo'' from vCard/hCard.&lt;br /&gt;
&lt;br /&gt;
This specification introduces the '''geo''' microformat, which is a 1:1 representation of the aforementioned ''geo'' property from the vCard standard, by simply reusing the ''geo'' property and sub-properties as-is from the [[hcard|hCard]] microformat.&lt;br /&gt;
&lt;br /&gt;
Publishers can both embed '''geo''' addresses directly in their web pages and feeds, as well as markup existing latitude/longitude coordinates in the context of the rest of the information in their web pages and feeds.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the ''name'' of the location in addition to its geo lat/long, then the publisher MUST use [[hcard|hCard]] instead of just '''geo''' to publish the name and geo lat/long of the location.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the address of the location, OR if the address of the location was what was actually entered by a human, and the publisher simply turned that into lat/long using some sort of a service, then the publisher SHOULD use [[adr]] to publish the actual human entered address information since that communicates far more semantic information than a simple geo lat/long coordinate.&lt;br /&gt;
&lt;br /&gt;
== Semantic XHTML Design Principles ==&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
=== Singular Properties ===&lt;br /&gt;
&lt;br /&gt;
Note that all the properties in '''geo''' are singular properties, and thus the first descendant element with that class should take effect, any others being ignored.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for a property, then the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute of the &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is the value of the property, instead of the contents of the element, which instead provide a human presentable version of the value.&lt;br /&gt;
&lt;br /&gt;
=== Value excerpting ===&lt;br /&gt;
&lt;br /&gt;
Sometimes only part of an element which is the equivalent for a property should be used for the value of the property. For this purpose, the special class name &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; is used to excerpt out the subset of the element that is  the value of the property.  See [[hcard|hCard]] for details on this.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
&lt;br /&gt;
The root class name for an geo location is &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
&lt;br /&gt;
This is the list of properties in geo, taken from [[hcard|hCard]]:&lt;br /&gt;
&lt;br /&gt;
* latitude&lt;br /&gt;
* longitude&lt;br /&gt;
&lt;br /&gt;
=== XMDP Profile ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-profile]] for the [http://gmpg.org/xmdp XMDP] profile of hCard which contains the above complete list of properties, with references to their RFC 2426 definitions.&lt;br /&gt;
&lt;br /&gt;
=== Parsing Details ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-parsing|hCard parsing]], with the only difference being that &amp;quot;geo&amp;quot; is the root class name, rather than &amp;quot;vcard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
This section is informative.&lt;br /&gt;
&lt;br /&gt;
=== Example from RFC2426 ===&lt;br /&gt;
&lt;br /&gt;
Section 3.4.2 of RFC2426 has a simple geo example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
GEO:37.386013;-122.082932&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this vCard fragment as a geo, as [http://microformats.org/wiki/hcard-examples#3.4.2_GEO_Type_Definition first documented on the hCard examples page]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.386013&amp;lt;/span&amp;gt;, &lt;br /&gt;
 &amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.082932&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this geo could be displayed as: &lt;br /&gt;
&lt;br /&gt;
37.386013, -122.082932&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Real world geo example ===&lt;br /&gt;
&lt;br /&gt;
Here is a sample of published lat/long info (from [http://www.geocaching.com/seek/cache_details.aspx?guid=dc4754bf-64d5-4f28-8715-45ad2505c86f geocaching: Noble Steed]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
N 37° 24.491 W 122° 08.313&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With geo markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;37.408183&amp;quot;&amp;gt;N 37° 24.491&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;-122.13855&amp;quot;&amp;gt;W 122° 08.313&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This geo might be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;37.408183&amp;quot;&amp;gt;N 37° 24.491&amp;lt;/abbr&amp;gt; &lt;br /&gt;
&amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;-122.13855&amp;quot;&amp;gt;W 122° 08.313&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that since the real world example used a more human readable presentation of the geo coordinates, we use the [[abbr-design-pattern]] to keep that more human readable presentation, and in addition provide the respective absolute numerical values for the geo.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following sites have published geos, outside their normal context of hCards, and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc., in addition to [[hcard|hCard]] examples in the wild.  If you find geos outside of hCards anywhere else, feel free to add them to the top of this list.  Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://flickr.com/ Flickr] now [http://blog.flickr.com/flickrblog/2006/08/great_shot_wher.html supports the geo microformat] on all [http://flickr.com/map/ geotagged photos].  Within 11 days of launch there are now over 3M+ photos (as of 20060907) marked up with the &amp;quot;geo&amp;quot; microformat. &lt;br /&gt;
* [http://ocono.com/ ocono.com] has marked each of it's &amp;quot;Upcoming Events&amp;quot; items with lat/long values.&lt;br /&gt;
* [http://harry.hchen1.com/mylife.htm Harry Chen has marked up his geo location]&lt;br /&gt;
* [http://www.multimap.com Multimap.com] uses the geo microformat to mark up latitude and longitude values on map pages.&lt;br /&gt;
* [http://rasterweb.net/raster/ Pete Prodoehl] geotags posts on his blog.&lt;br /&gt;
* [http://07.pagesd.info/ 07.pagesd.info] uses the geo microformat to mark up latitude and longitude values for each commune of the Ardèche département in France.&lt;br /&gt;
* [http://www.openguides.org/ OpenGuides] has support for the geo microformat in svn, and for now you can see it in action on the [http://cotswolds.openguides.org/ Cotswolds OpenGuide]&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following implementations have been developed which either generate or parse geos outside the context of hCards. If you have an geo implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/index.php GreaseRoute] is a GreaseMonkey user script (also available as a simple Firefox Extension) which will add icons for displaying the MapQuest map of a [[geo]]. Written by [http://highearthorbit.com Andrew Turner] &lt;br /&gt;
* [http://www.podster.de/page/geotest podster.de] finds geo markups in podcast RSS Feeds and maps soundseeing episodes on a map (German only)&lt;br /&gt;
* [http://blog.codeeg.com/ Calvin Yu] has written a  [http://blog.codeeg.com/2006/01/28/using-microformats-to-plot-my-favorite-places/ web service that will allow you plot and describe places on a Yahoo Map easily] using [[hreview|hReview]] and [[geo]].&lt;br /&gt;
* [http://bluesmoon.blogspot.com/ Philip Tellis] has written a [http://bluesmoon.blogspot.com/2006/01/of-microformats-and-geocoding.html javascript to add maps to geo markup on pages]&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding geos and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
* [http://bluesmoon.blogspot.com/ Philip Tellis] has written some javascript to [http://bluesmoon.blogspot.com/2006/01/of-microformats-and-geocoding.html convert the geo microformat to a google map] using [[geo]].&lt;br /&gt;
* Brian Suda has written some [http://suda.co.uk/projects/microformats/geo/ geo extracting] code to convert geo microformats to KML for use with Google Maps and Google Earth. There is also a bookmarklet to extract the data and pass it to google maps automatically. He is working on a GeoRSS version for Yahoo! Maps as well.&lt;br /&gt;
* Fil explains [http://www.jquery.info/spip.php?article7 how to use the geo microformat with the javascript library jQuery] [http://jquery.com].&lt;br /&gt;
* [http://georss.org/geopress GeoPress] is a WordPress (http://wordpress.org) plugin that supports embedding adrs, geo, maps (dynamically switchable between Google-Yahoo-Microsoft Maps), and GeoRSS (http://georss.org) feeds. Written by [http://highearthorbit.com Andrew Turner]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
=== Normative References ===&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt vCard RFC2426] ([http://www.w3.org/2002/12/cal/rfc2426 HTML reformatted version of RFC2426])&lt;br /&gt;
* [http://www.w3.org/TR/2002/REC-xhtml1-20020801/ XHTML 1.0 SE]&lt;br /&gt;
&lt;br /&gt;
=== Similar Work ===&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[hcalendar|hCalendar]]&lt;br /&gt;
* [[XOXO]]&lt;br /&gt;
&lt;br /&gt;
== Work in progress ==&lt;br /&gt;
This specification is a work in progress. As additional aspects are discussed, understood, and written, they will be added.&lt;br /&gt;
&lt;br /&gt;
== Discussions ==&lt;br /&gt;
&lt;br /&gt;
* See [http://www.technorati.com/cosmos/referer.html blogs discussing this page].&lt;br /&gt;
&lt;br /&gt;
=== Q&amp;amp;A ===&lt;br /&gt;
* If you have any questions about hCard, check the [[hcard-faq|hCard FAQ]] first, and if you don't find answers, add your questions! (Odds are that any geo question will apply to hCard as well).&lt;br /&gt;
&lt;br /&gt;
=== Issues ===&lt;br /&gt;
* Please add any issues with the specification to the separate [[hcard-issues|hCard issues]] document.  Ditto.&lt;br /&gt;
* Proposals for changes, additions and other thoughts about [[geo]] may be found in the [[hcard-brainstorming|hCard brainstorming]] page.&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[luna]] (proposal for geo-style microformat for co-ordinates on The Moon)&lt;br /&gt;
*[[mars]] (proposal for geo-style microformat for co-ordinates on the planet Mars)&lt;br /&gt;
* [http://www.census.gov/geo/www/tiger/tigermap.html TIGER Map Service]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Geotagging Wikipedia article on GeoTagging]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=geo&amp;diff=10397</id>
		<title>geo</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=geo&amp;diff=10397"/>
		<updated>2006-11-20T01:43:39Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added GeoPress&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; geo &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''geo''' (working name, pronounced &amp;quot;gee-oh&amp;quot;) is a simple format for marking up geographic latitude longitude information, suitable for embedding in (X)HTML, Atom, RSS, and arbitrary XML. '''geo''' is a 1:1 representation of the &amp;quot;geo&amp;quot; property in the vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) in XHTML, one of several open [[microformats|microformat]] standards.&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Draft Specification ==&lt;br /&gt;
&lt;br /&gt;
=== Editor/Author ===&lt;br /&gt;
[http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc.]&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
{{MicroFormatCopyrightStatement2005}}&lt;br /&gt;
&lt;br /&gt;
=== Patents ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiration and Acknowledgments ===&lt;br /&gt;
Thanks to everyone who participated in the [[geo-bof-2005-06-30|Geo Microformat BOF at O'Reilly's Where 2.0 conference]], and in particular to [http://radar.oreilly.com/nat/ Nat Torkington] and Vee McMillen of [http://oreilly.com O'Reilly] for [http://conferences.oreillynet.com/cs/where2005/view/e_sess/7476 arranging and hosting the BOF].  Thanks to Chris Hibbbert for providing the [http://www.geocaching.com/seek/cache_details.aspx?guid=dc4754bf-64d5-4f28-8715-45ad2505c86f real world geo-caching example].&lt;br /&gt;
&lt;br /&gt;
== Introduction and Background ==&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]), has been broadly and interoperably implemented (e.g. Apple's Address Book application). The [[hcard|hCard]] microformat has similarly received significant adoption, from numerous sites publishing the format, to hCard to vCard proxies, to clientside javascript parsers.&lt;br /&gt;
&lt;br /&gt;
At the [http://conferences.oreillynet.com/where/ Where 2.0 conference] in June 2005, there was widespread recognition that the community needed a way to simply and easily publish visible, extractable, geographic location information on the Web, given how often bloggers, and numerous other sites publish such information.  The [[geo-bof-2005-06-30|geo microformat BOF]] discussed this very topic, and concluded with a consensus decision to just try using ''geo'' from vCard/hCard.&lt;br /&gt;
&lt;br /&gt;
This specification introduces the '''geo''' microformat, which is a 1:1 representation of the aforementioned ''geo'' property from the vCard standard, by simply reusing the ''geo'' property and sub-properties as-is from the [[hcard|hCard]] microformat.&lt;br /&gt;
&lt;br /&gt;
Publishers can both embed '''geo''' addresses directly in their web pages and feeds, as well as markup existing latitude/longitude coordinates in the context of the rest of the information in their web pages and feeds.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the ''name'' of the location in addition to its geo lat/long, then the publisher MUST use [[hcard|hCard]] instead of just '''geo''' to publish the name and geo lat/long of the location.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the address of the location, OR if the address of the location was what was actually entered by a human, and the publisher simply turned that into lat/long using some sort of a service, then the publisher SHOULD use [[adr]] to publish the actual human entered address information since that communicates far more semantic information than a simple geo lat/long coordinate.&lt;br /&gt;
&lt;br /&gt;
== Semantic XHTML Design Principles ==&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
=== Singular Properties ===&lt;br /&gt;
&lt;br /&gt;
Note that all the properties in '''geo''' are singular properties, and thus the first descendant element with that class should take effect, any others being ignored.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for a property, then the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute of the &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is the value of the property, instead of the contents of the element, which instead provide a human presentable version of the value.&lt;br /&gt;
&lt;br /&gt;
=== Value excerpting ===&lt;br /&gt;
&lt;br /&gt;
Sometimes only part of an element which is the equivalent for a property should be used for the value of the property. For this purpose, the special class name &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; is used to excerpt out the subset of the element that is  the value of the property.  See [[hcard|hCard]] for details on this.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
&lt;br /&gt;
The root class name for an geo location is &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
&lt;br /&gt;
This is the list of properties in geo, taken from [[hcard|hCard]]:&lt;br /&gt;
&lt;br /&gt;
* latitude&lt;br /&gt;
* longitude&lt;br /&gt;
&lt;br /&gt;
=== XMDP Profile ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-profile]] for the [http://gmpg.org/xmdp XMDP] profile of hCard which contains the above complete list of properties, with references to their RFC 2426 definitions.&lt;br /&gt;
&lt;br /&gt;
=== Parsing Details ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-parsing|hCard parsing]], with the only difference being that &amp;quot;geo&amp;quot; is the root class name, rather than &amp;quot;vcard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
This section is informative.&lt;br /&gt;
&lt;br /&gt;
=== Example from RFC2426 ===&lt;br /&gt;
&lt;br /&gt;
Section 3.4.2 of RFC2426 has a simple geo example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
GEO:37.386013;-122.082932&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this vCard fragment as a geo, as [http://microformats.org/wiki/hcard-examples#3.4.2_GEO_Type_Definition first documented on the hCard examples page]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.386013&amp;lt;/span&amp;gt;, &lt;br /&gt;
 &amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.082932&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this geo could be displayed as: &lt;br /&gt;
&lt;br /&gt;
37.386013, -122.082932&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Real world geo example ===&lt;br /&gt;
&lt;br /&gt;
Here is a sample of published lat/long info (from [http://www.geocaching.com/seek/cache_details.aspx?guid=dc4754bf-64d5-4f28-8715-45ad2505c86f geocaching: Noble Steed]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
N 37° 24.491 W 122° 08.313&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With geo markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;37.408183&amp;quot;&amp;gt;N 37° 24.491&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;-122.13855&amp;quot;&amp;gt;W 122° 08.313&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This geo might be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;37.408183&amp;quot;&amp;gt;N 37° 24.491&amp;lt;/abbr&amp;gt; &lt;br /&gt;
&amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;-122.13855&amp;quot;&amp;gt;W 122° 08.313&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that since the real world example used a more human readable presentation of the geo coordinates, we use the [[abbr-design-pattern]] to keep that more human readable presentation, and in addition provide the respective absolute numerical values for the geo.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following sites have published geos, outside their normal context of hCards, and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc., in addition to [[hcard|hCard]] examples in the wild.  If you find geos outside of hCards anywhere else, feel free to add them to the top of this list.  Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://flickr.com/ Flickr] now [http://blog.flickr.com/flickrblog/2006/08/great_shot_wher.html supports the geo microformat] on all [http://flickr.com/map/ geotagged photos].  Within 11 days of launch there are now over 3M+ photos (as of 20060907) marked up with the &amp;quot;geo&amp;quot; microformat. &lt;br /&gt;
* [http://ocono.com/ ocono.com] has marked each of it's &amp;quot;Upcoming Events&amp;quot; items with lat/long values.&lt;br /&gt;
* [http://harry.hchen1.com/mylife.htm Harry Chen has marked up his geo location]&lt;br /&gt;
* [http://www.multimap.com Multimap.com] uses the geo microformat to mark up latitude and longitude values on map pages.&lt;br /&gt;
* [http://rasterweb.net/raster/ Pete Prodoehl] geotags posts on his blog.&lt;br /&gt;
* [http://07.pagesd.info/ 07.pagesd.info] uses the geo microformat to mark up latitude and longitude values for each commune of the Ardèche département in France.&lt;br /&gt;
* [http://www.openguides.org/ OpenGuides] has support for the geo microformat in svn, and for now you can see it in action on the [http://cotswolds.openguides.org/ Cotswolds OpenGuide]&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following implementations have been developed which either generate or parse geos outside the context of hCards. If you have an geo implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/index.php GreaseRoute] is a GreaseMonkey user script (also available as a simple Firefox Extension) which will add icons for displaying the MapQuest map of a [[geo]]. Written by [http://highearthorbit.com Andrew Turner] &lt;br /&gt;
* [http://www.podster.de/page/geotest podster.de] finds geo markups in podcast RSS Feeds and maps soundseeing episodes on a map (German only)&lt;br /&gt;
* [http://blog.codeeg.com/ Calvin Yu] has written a  [http://blog.codeeg.com/2006/01/28/using-microformats-to-plot-my-favorite-places/ web service that will allow you plot and describe places on a Yahoo Map easily] using [[hreview|hReview]] and [[geo]].&lt;br /&gt;
* [http://bluesmoon.blogspot.com/ Philip Tellis] has written a [http://bluesmoon.blogspot.com/2006/01/of-microformats-and-geocoding.html javascript to add maps to geo markup on pages]&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding geos and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
* [http://bluesmoon.blogspot.com/ Philip Tellis] has written some javascript to [http://bluesmoon.blogspot.com/2006/01/of-microformats-and-geocoding.html convert the geo microformat to a google map] using [[geo]].&lt;br /&gt;
* Brian Suda has written some [http://suda.co.uk/projects/microformats/geo/ geo extracting] code to convert geo microformats to KML for use with Google Maps and Google Earth. There is also a bookmarklet to extract the data and pass it to google maps automatically. He is working on a GeoRSS version for Yahoo! Maps as well.&lt;br /&gt;
* Fil explains [http://www.jquery.info/spip.php?article7 how to use the geo microformat with the javascript library jQuery] [http://jquery.com].&lt;br /&gt;
* GeoPress (http://georss.org/geopress) is a WordPress (http://wordpress.org) plugin that supports embedding adrs, geo, maps (dynamically switchable between Google-Yahoo-Microsoft Maps), and GeoRSS (http://georss.org) feeds. Written by [http://highearthorbit.com Andrew Turner]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
=== Normative References ===&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt vCard RFC2426] ([http://www.w3.org/2002/12/cal/rfc2426 HTML reformatted version of RFC2426])&lt;br /&gt;
* [http://www.w3.org/TR/2002/REC-xhtml1-20020801/ XHTML 1.0 SE]&lt;br /&gt;
&lt;br /&gt;
=== Similar Work ===&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[hcalendar|hCalendar]]&lt;br /&gt;
* [[XOXO]]&lt;br /&gt;
&lt;br /&gt;
== Work in progress ==&lt;br /&gt;
This specification is a work in progress. As additional aspects are discussed, understood, and written, they will be added.&lt;br /&gt;
&lt;br /&gt;
== Discussions ==&lt;br /&gt;
&lt;br /&gt;
* See [http://www.technorati.com/cosmos/referer.html blogs discussing this page].&lt;br /&gt;
&lt;br /&gt;
=== Q&amp;amp;A ===&lt;br /&gt;
* If you have any questions about hCard, check the [[hcard-faq|hCard FAQ]] first, and if you don't find answers, add your questions! (Odds are that any geo question will apply to hCard as well).&lt;br /&gt;
&lt;br /&gt;
=== Issues ===&lt;br /&gt;
* Please add any issues with the specification to the separate [[hcard-issues|hCard issues]] document.  Ditto.&lt;br /&gt;
* Proposals for changes, additions and other thoughts about [[geo]] may be found in the [[hcard-brainstorming|hCard brainstorming]] page.&lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
*[[luna]] (proposal for geo-style microformat for co-ordinates on The Moon)&lt;br /&gt;
*[[mars]] (proposal for geo-style microformat for co-ordinates on the planet Mars)&lt;br /&gt;
* [http://www.census.gov/geo/www/tiger/tigermap.html TIGER Map Service]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Geotagging Wikipedia article on GeoTagging]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=adr&amp;diff=10745</id>
		<title>adr</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=adr&amp;diff=10745"/>
		<updated>2006-11-20T01:42:09Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added GeoPress&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= adr =&lt;br /&gt;
&lt;br /&gt;
'''adr''' (working name, pronounced &amp;quot;adder&amp;quot;) is a simple format for marking up address information, suitable for embedding in (X)HTML, Atom, RSS, and arbitrary XML. '''adr''' is a 1:1 representation of the ''adr'' property in the vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) in XHTML, one of several open [[microformats|microformat]] standards.&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Draft Specification ==&lt;br /&gt;
=== Editor/Author ===&lt;br /&gt;
[http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc.]&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
{{MicroFormatCopyrightStatement2005}}&lt;br /&gt;
&lt;br /&gt;
=== Patents ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiration and Acknowledgments ===&lt;br /&gt;
Thanks to everyone who participated in the [[geo-bof-2005-06-30|Geo Microformat BOF at O'Reilly's Where 2.0 conference]], and in particular to [http://radar.oreilly.com/nat/ Nat Torkington] and Vee McMillen of [http://oreilly.com O'Reilly] for [http://conferences.oreillynet.com/cs/where2005/view/e_sess/7476 arranging and hosting the BOF].&lt;br /&gt;
&lt;br /&gt;
== Introduction and Background ==&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]), has been broadly and interoperably implemented (e.g. Apple's Address Book application). The [[hcard|hCard]] microformat has similarly received significant adoption, from numerous sites publishing the format, to hCard to vCard proxies, to clientside javascript parsers.&lt;br /&gt;
&lt;br /&gt;
At the [http://conferences.oreillynet.com/where/ Where 2.0 conference] in June 2005, there was widespread recognition that the community needed a way to simply and easily publish visible, extractable, address information on the Web, given how often bloggers, and numerous other sites publish address information.  The [[geo-bof-2005-06-30|geo microformat BOF]] discussed this very topic, and concluded with a consensus decision to just try using ''adr'' from vCard/hCard.&lt;br /&gt;
&lt;br /&gt;
This specification introduces the '''adr''' microformat, which is a 1:1 representation of the aforementioned ''adr'' property from the vCard standard, by simply reusing the ''adr'' property and sub-properties as-is from the [[hcard|hCard]] microformat.&lt;br /&gt;
&lt;br /&gt;
Publishers can both embed '''adr''' addresses directly in their web pages and feeds, as well as markup existing addresses in the context of the rest of the information in their web pages and feeds.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the ''name'' of the location in addition to its address, then the publisher MUST use [[hcard|hCard]] instead of just '''adr''' to publish the name and address of the location.&lt;br /&gt;
&lt;br /&gt;
== Semantic XHTML Design Principles ==&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
=== Singular Properties ===&lt;br /&gt;
&lt;br /&gt;
Note that all the properties in '''adr''' are singular properties, and thus the first descendant element with that class should take effect, any others being ignored.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for a property, then the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute of the &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is the value of the property, instead of the contents of the element, which instead provide a human presentable version of the value.  &lt;br /&gt;
&lt;br /&gt;
Similarly, if an &amp;lt;code&amp;gt;&amp;amp;lt;img&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for one or more properties, it must be treated as follows:&lt;br /&gt;
# For the &amp;lt;code&amp;gt;PHOTO&amp;lt;/code&amp;gt; property and any other property that takes a &amp;lt;abbr title=&amp;quot;Uniform Resource Locator&amp;quot;&amp;gt;URL&amp;lt;/abbr&amp;gt; as its value, the &amp;lt;code&amp;gt;src&amp;lt;/code&amp;gt; attribute provides the property value.&lt;br /&gt;
# For other properties, the &amp;lt;code&amp;gt;&amp;amp;lt;img&amp;amp;gt;&amp;lt;/code&amp;gt; element's &amp;lt;code&amp;gt;alt&amp;lt;/code&amp;gt; attribute is the value of the property.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Value excerpting ===&lt;br /&gt;
&lt;br /&gt;
Sometimes only part of an element which is the equivalent for a property should be used for the value of the property. For this purpose, the special class name &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; is used to excerpt out the subset of the element that is  the value of the property.  See [[hcard|hCard]] for details on this.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
&lt;br /&gt;
The root class name for an '''adr''' address is &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
&lt;br /&gt;
This is the list of properties in '''adr''', taken from [[hcard|hCard]]:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;post-office-box&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;extended-address&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;street-address&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;locality&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;region&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;postal-code&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;country-name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;type&amp;lt;/code&amp;gt; sub-property is omitted because without the context of a type of address for ''whom'', it doesn't make much sense.&lt;br /&gt;
&lt;br /&gt;
=== XMDP Profile ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-profile]] for the [http://gmpg.org/xmdp XMDP] profile of hCard which contains the above complete list of properties, with references to their RFC 2426 definitions.&lt;br /&gt;
&lt;br /&gt;
=== Parsing Details ===&lt;br /&gt;
See [[hcard-parsing|hCard parsing]], with the only difference being that &amp;quot;adr&amp;quot; is the root class name, rather than &amp;quot;vcard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
This section is informative.&lt;br /&gt;
&lt;br /&gt;
=== Sample adr ===&lt;br /&gt;
&lt;br /&gt;
Here is a sample adr:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;adr&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;street-address&amp;quot;&amp;gt;665 3rd St.&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;extended-address&amp;quot;&amp;gt;Suite 207&amp;lt;/div&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;locality&amp;quot;&amp;gt;San Francisco&amp;lt;/span&amp;gt;,&lt;br /&gt;
 &amp;lt;span class=&amp;quot;region&amp;quot;&amp;gt;CA&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;postal-code&amp;quot;&amp;gt;94107&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;div class=&amp;quot;country-name&amp;quot;&amp;gt;U.S.A.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This adr might be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;665 3rd St.&lt;br /&gt;
Suite 207&lt;br /&gt;
San Francisco, CA 94107&lt;br /&gt;
U.S.A.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== More Examples ===&lt;br /&gt;
&lt;br /&gt;
See [http://microformats.org/wiki/hcard-examples#3.2.1_ADR_Type_Definition hCard example ADR] for more examples.&lt;br /&gt;
&lt;br /&gt;
See [http://microformats.org/wiki/adr-examples adr examples] for additional uses of ADR.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following sites have published adrs, outside their normal context of hCards, and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc., in addition to [[hcard|hCard]] examples in the wild.  If you find adrs outside of hCards anywhere else, feel free to add them to the top of this list.  Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following implementations have been developed which either generate or parse adrs outside the context of hCards. If you have an adr implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/index.php GreaseRoute] is a GreaseMonkey user script (also available as a simple Firefox Extension) which will add icons for displaying the location, or route to, an [[adr]] using a MapQuest map. The route is displayed from the starting location based on the viewer's IP-Address as determined by the [http://hostip.info HostIP] geolocation service.&lt;br /&gt;
&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/index.php GreaseRouteEmbed] is another GreaseMonkey user script that will actually embed a route image in the webpage when the user clicks the &amp;quot;route&amp;quot; link. &lt;br /&gt;
&lt;br /&gt;
* [http://georss.org/geopress GeoPress] is a [http://wordpress.org WordPress] plugin that supports embedding adrs, geo, maps (dynamically switchable between Google-Yahoo-Microsoft Maps), and [http://georss.org GeoRSS] feeds.&lt;br /&gt;
&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding adrs and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
&lt;br /&gt;
* The [http://tantek.com/microformats/hcard-creator.html hCard creator], though it creates complete hCards, can also be used simply to create adrs by filling out the address portion and simply copy and pasting the &amp;amp;lt;div class=&amp;quot;adr&amp;quot;&amp;amp;gt; element and its contents.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
=== Normative References ===&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt vCard RFC2426] ([http://www.w3.org/2002/12/cal/rfc2426 HTML reformatted version of RFC2426])&lt;br /&gt;
* [http://www.w3.org/TR/2002/REC-xhtml1-20020801/ XHTML 1.0 SE]&lt;br /&gt;
&lt;br /&gt;
=== Similar Work ===&lt;br /&gt;
* [[geo]]&lt;br /&gt;
* [[hcalendar|hCalendar]]&lt;br /&gt;
* [[XOXO]]&lt;br /&gt;
&lt;br /&gt;
== Work in progress ==&lt;br /&gt;
This specification is a work in progress. As additional aspects are discussed, understood, and written, they will be added.&lt;br /&gt;
&lt;br /&gt;
== Discussions ==&lt;br /&gt;
&lt;br /&gt;
* See [http://www.technorati.com/cosmos/referer.html blogs discussing this page].&lt;br /&gt;
&lt;br /&gt;
=== Q&amp;amp;A ===&lt;br /&gt;
* If you have any questions about hCard, check the [[hcard-faq|hCard FAQ]] first, and if you don't find answers, add your questions! (Odds are that any '''adr''' question will apply to [[hCard]] as well).&lt;br /&gt;
* See also [http://microformats.org/discuss/ for other methods of feedback].&lt;br /&gt;
&lt;br /&gt;
=== Issues ===&lt;br /&gt;
* Please add any issues with the specification to the separate [[hcard-issues|hCard issues]] document.  Ditto.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[adr-examples]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=19534</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=19534"/>
		<updated>2006-09-28T01:43:00Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
Interested in location, [[adr]], [[geo]], [[luna]], [[mars]], and any formats dealing with &amp;quot;place&amp;quot; and &amp;quot;experience&amp;quot;. Also trying to raise awareness of licensing of data, especially when it comes to aggregation. &lt;br /&gt;
&lt;br /&gt;
aka: ajturner on IRC&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
* [[picoformats]]&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;br /&gt;
* [http://georss.org/geopress GeoPress] - WordPress blog plugin for embedding location, dynamic maps (Y-G-M), GeoRSS, and Microformats [[geo]] or [[adr]].&lt;br /&gt;
* [http://mapufacture.com Mapufacture] - [http://georss.org GeoRSS], and Microformats [[geo]] feed aggregator and mapping&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=mars&amp;diff=9072</id>
		<title>mars</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=mars&amp;diff=9072"/>
		<updated>2006-09-28T01:39:55Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added MRO reference and ideas&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Imagine viewing a web page with a reference to a landing site on Mars - and being able to use an add-on to you browser to be taken directly to that site, in a 'Martian' mapping application of your choosing, or on a site like Google Mars. Or being able to search, easily, for web sites referring to the same site, without seeing places on Earth with co-incidentally similar coordinates.&lt;br /&gt;
&lt;br /&gt;
This is especially true now that the [http://mars.jpl.nasa.gov/mro/ Mars Reconnaissance Orbiter] is getting some publicity. It would be nice to markup photographs, findings, reports, etc. &lt;br /&gt;
&lt;br /&gt;
Those are just two of the things a &amp;quot;mars&amp;quot; microformat, based on the existing [[geo]] version, might do for you.&lt;br /&gt;
&lt;br /&gt;
Here's some work-in-progress:&lt;br /&gt;
&lt;br /&gt;
*[[mars-brainstorming]]&lt;br /&gt;
*[[mars-examples]]&lt;br /&gt;
&lt;br /&gt;
==Contributors==&lt;br /&gt;
*[[User:AndyMabbett|Andy Mabbett]] (proponent)&lt;br /&gt;
*[[User:AndrewTurner|Andrew Turner]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[luna]] - the same sort of thing, for The Moon&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=luna-brainstorming&amp;diff=9073</id>
		<title>luna-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=luna-brainstorming&amp;diff=9073"/>
		<updated>2006-09-28T01:36:18Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added thoughts behind a general &amp;quot;location&amp;quot; uf that can be used for various coordinate systems/spatial bodies.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Luna Brainstorming=&lt;br /&gt;
&lt;br /&gt;
==Andy Mabbett==&lt;br /&gt;
===Proposal===&lt;br /&gt;
I propose a &amp;quot;'''[[luna]]'''&amp;quot; microformat, for marking up co-ordinates on our Moon. This would be based on the &amp;quot;[[geo]]&amp;quot; microformat (and thus relatively easy to implement, since code for &amp;quot;geo&amp;quot; can be re-used).&lt;br /&gt;
&lt;br /&gt;
Note, though, that [http://www.xs4all.nl/~carlkop/stenneck.html] and [http://www.lunarrepublic.com/history/apollo_sites.shtml] indicate that more than one system of&lt;br /&gt;
recording the co-ordinates, for any given point, is in use, and it may be necessary to include an attribute to indicate which system is to be used, though the most recent standards appears to be the IAU Mean Earth&lt;br /&gt;
Polar Axis co-ordinate system, as used by [http://www.spds.nasa.gov/planetary/lunar/lunar_sites.html NASA] and [http://en.wikipedia.org/wiki/Apollo_11 Wikipedia], and described in Davies and Colvin, J. Geophys. Res., v. 105, pp. 20,227 - 20,280, 2000.&lt;br /&gt;
&lt;br /&gt;
==Kevin Marks==&lt;br /&gt;
Note multiple statements of Apollo landing co-ords here: [http://www.hq.nasa.gov/alsj/alsjcoords.html] &lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Currently, the lunar geoid is being redefined with Clementine data, so the location (latitude, longitude, and elevation) of everything will change again very soon&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I believe the reference geoids for other planets are also under revision&lt;br /&gt;
* True, but there are also other reference systems for Earth too&lt;br /&gt;
&lt;br /&gt;
==Drew McLellan==&lt;br /&gt;
Perhaps geo could be extended to encompass multiple grids. The existing type/value system in [[hCard]] et al could be used. Available types would intially be 'Earth', 'Luna', 'Mars', with the default (if none is specified) being 'Earth'. These could be extended to add new grids when needed. The value is then the co-ordinate.&lt;br /&gt;
&lt;br /&gt;
Obviously the name 'geo' applies to Earth, but we should seriously consider if we want to create a different microformat for every lump of rock someone wishes to map. It has to be advantageous to have a single format for this function that can be applied to any orbiting mass.&lt;br /&gt;
&lt;br /&gt;
* How would an existing user agent parse the grid ref.s for somewhere on the moon, marked up this way? - Andy Mabbett&lt;br /&gt;
** Badly, I'd imagine. However, it's easier to modify user agents to account for developments than a bulk of existing published data - Drew.&lt;br /&gt;
*** What published data would need to be modified? (Either way, I like the idea of an hCard for 'Ed Straker, SHADO, Moonbase 1, the Moon'. Maybe we need to add a &amp;quot;solar system&amp;quot; attribute... ;-) ) - Andy Mabbett&lt;br /&gt;
* Perhaps, like Mabbett points out, there should be a more general class for marking that this is a &amp;quot;coordinate&amp;quot;, or a &amp;quot;location&amp;quot;. Then a specific reference frame or spatial body can be defined. However, this may only happen once per document and then the rest of the locations references should/could be assumed to be in the same reference frame - AndrewTurner&lt;br /&gt;
&lt;br /&gt;
== AndrewTurner ==&lt;br /&gt;
I think we should keep it simple, and also follow the same format used for marking Home/Work for adr, etc. which uses the class=&amp;quot;type&amp;quot; &lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.386013&amp;lt;/span&amp;gt;, &lt;br /&gt;
 &amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.082932&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;moon&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This would also apply to Earth-centric coordinate representations such as WGS84, NAD, ED50, etc. &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;type&amp;quot; title=&amp;quot;moon&amp;quot;&amp;gt;The Apollo 11 mission landed at &amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;0.67408&amp;quot;&amp;gt;the Sea of Tranquility&amp;lt;/abbr&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;23.47297&amp;quot;&amp;gt;&amp;lt;/abbr &amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*The value must be &amp;quot;luna&amp;quot; not &amp;quot;moon&amp;quot;. &amp;quot;Luna&amp;quot; is the scientifically-correct name for ''our'' moon; there are other moons in our solar system, such as Titan. I have two concerns about re-using &amp;quot;geo&amp;quot; (aside from the fact that it means &amp;quot;Earth&amp;quot;!) - how it will affect existing tools, and the likely need to also specify the coordinate schema. Can these be addressed satisfactorily? - Andy Mabbett&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[luna-examples]]&lt;br /&gt;
*[[geo]]&lt;br /&gt;
*[[mars]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=greasemonkey&amp;diff=9441</id>
		<title>greasemonkey</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=greasemonkey&amp;diff=9441"/>
		<updated>2006-09-24T18:08:36Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added GreaseRoute script examples&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= About GreaseMonkey =&lt;br /&gt;
Greasemonkey is a powerful tool for customizing Firefox.  &lt;br /&gt;
&lt;br /&gt;
[http://www.reifysoft.com/turnabout.php Turnabout] is a tool for IE for the same purpose.  Its APIs are largely compatible with Greasemonkey, allowing for cross-browser user scripts.&lt;br /&gt;
&lt;br /&gt;
Opera can also run Greasmonkey scipts using the built-in support for [http://www.opera.com/support/tutorials/userjs/ user javascripts].&lt;br /&gt;
&lt;br /&gt;
While there is no way to extend Safari directly, [http://safariguide.net/ Safari Guide] will allow you to run JavaScripts (though not GreaseMonkey scripts) against the front page in Safari.&lt;br /&gt;
&lt;br /&gt;
This page collects ways to use them with microformats.&lt;br /&gt;
&lt;br /&gt;
= Getting Started =&lt;br /&gt;
== Get Greasemonkey ==&lt;br /&gt;
* [http://www.mozilla.org/products/firefox/ Download FireFox] (required)&lt;br /&gt;
* [http://greasemonkey.mozdev.org/ Download Greasemonkey]&lt;br /&gt;
&lt;br /&gt;
== Developing with Greasemonkey ==&lt;br /&gt;
* [http://diveintogreasemonkey.org/ Dive Into Greasemonkey] -- start here&lt;br /&gt;
&lt;br /&gt;
= Demo =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
* install microfomat-find-gm5: http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/. '''Note:''' This does work with FireFox 1.5+/GreaseMonkey 0.6.4+, now!&lt;br /&gt;
&lt;br /&gt;
== Prebuilt hCard ==&lt;br /&gt;
* go to Neil Dunn's vCard: http://www.ndunn.com/2005/10/7/hCard&lt;br /&gt;
* look for the [hCard] icon and click on it&lt;br /&gt;
* click on &amp;quot;Add to Address Book&amp;quot;&lt;br /&gt;
** note the magic of the data: URI here ...&lt;br /&gt;
&lt;br /&gt;
== Dynamic hCard ==&lt;br /&gt;
* go to http://we05.com/presenters.cfm&lt;br /&gt;
* select any presenter&lt;br /&gt;
* look for the [hCard] icon and click on it&lt;br /&gt;
* click on &amp;quot;Show as Text&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==  hCard Mapping ==&lt;br /&gt;
* go to: http://www.blogmatrix.com/company_main/&lt;br /&gt;
* look for the [hCard] icon and click on it&lt;br /&gt;
* click on &amp;quot;Show on Google Maps&amp;quot;&lt;br /&gt;
* go &amp;quot;ooo and ahh&amp;quot; ...&lt;br /&gt;
&lt;br /&gt;
== xFolk demo ==&lt;br /&gt;
* go to:  http://thecommunityengine.com/home/archives/2005/10/xfolk_vegomatic.html&lt;br /&gt;
* look for the [xFolk] icon and click on it&lt;br /&gt;
* look up tags on other services&lt;br /&gt;
&lt;br /&gt;
= Resources =&lt;br /&gt;
&lt;br /&gt;
== Posts and Articles ==&lt;br /&gt;
&lt;br /&gt;
* Bud Gibson on [http://thecommunityengine.com/home/archives/2005/07/followup_to_gre.html Follow-up to Greasemonkey &amp;amp;amp; Microformats]&lt;br /&gt;
* Alf Eaton on [http://hublog.hubmed.org/archives/001187.html Extracting microcontent (XSLT, GRDDL, RDF)]&lt;br /&gt;
* http://microformats.org/discuss/mail/microformats-discuss/2005-October/001112.html&lt;br /&gt;
* Phil Windley on [http://www.windley.com/archives/2005/10/greasemonkey_an.shtml Greasemonkey and Microformats]&lt;br /&gt;
* 90% Crud on [http://george.hotelling.net/90percent/geekery/greasemonkey_and_microformats.php Greasemonkey and Microformats]&lt;br /&gt;
* David Janes on &amp;quot;microformat find&amp;quot;: [http://blog.davidjanes.com/mtarchives/2005_08.html#003375 Introduction], [http://blog.davidjanes.com/mtarchives/2005_08.html#003377 xFolk], [http://blog.davidjanes.com/mtarchives/2005_08.html#003376 hCard], [http://blog.davidjanes.com/mtarchives/2005_08.html#003379 hCalendar]&lt;br /&gt;
&lt;br /&gt;
== Scripts ==&lt;br /&gt;
Some sample scripts:&lt;br /&gt;
;tails:http://blog.codeeg.com/tails-firefox-extension/ (shows all, works with 1.5)&lt;br /&gt;
;SmartZilla: http://www.stripytshirt.co.uk/features/firefox/smartzilla (exports data)&lt;br /&gt;
;[[hcard|hCard]]:http://diveintomark.org/projects/greasemonkey/hcard/&lt;br /&gt;
:http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/ (updated for FF 1.5/Greasemonkey 0.6.4)&lt;br /&gt;
;[[hcalendar|hCalendar]]:http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/ (updated for FF 1.5/Greasemonkey 0.6.4)&lt;br /&gt;
;[[xfolk|xFolk]]:http://thecommunityengine.com/resources/xfolk-veg-o-matic.user.js&lt;br /&gt;
:http://inside.glnetworks.de/2006/06/05/microformats-have-arrived-in-firefox-15-greasemonkey-06/ (updated for FF 1.5/Greasemonkey 0.6.4)&lt;br /&gt;
;[[rellicense|RelLicense]]:http://diveintomark.org/projects/greasemonkey/rellicense/&lt;br /&gt;
;XFN (Magic Line):http://diveintomark.org/projects/greasemonkey/magicline.user.js&lt;br /&gt;
;GRDDL/RDF:http://alf.hubmed.org/microcontentextractor.user.js&lt;br /&gt;
;[[adr]] | [[geo]] - GreaseRoute:http://code.highearthorbit.com/greaseroute/index.php &lt;br /&gt;
;[[adr]] | [[geo]] -GreaseRouteEmbed:http://code.highearthorbit.com/greaseroute/index.php&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[firefox-extensions]] - other tools for customizing Firefox.&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=luna-brainstorming&amp;diff=8837</id>
		<title>luna-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=luna-brainstorming&amp;diff=8837"/>
		<updated>2006-09-23T03:00:59Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* AndrewTurner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Luna Brainstorming=&lt;br /&gt;
&lt;br /&gt;
==Andy Mabbett==&lt;br /&gt;
===Proposal===&lt;br /&gt;
I propose a &amp;quot;luna&amp;quot; microformat, for marking up co-ordinates on our Moon. This would be based on the &amp;quot;[[geo]]&amp;quot; microformat (and thus relatively easy to implement, since code for &amp;quot;geo&amp;quot; can be re-used).&lt;br /&gt;
&lt;br /&gt;
Note, though, that [http://www.xs4all.nl/~carlkop/stenneck.html] and [http://www.lunarrepublic.com/history/apollo_sites.shtml] indicate that more than one system of&lt;br /&gt;
recording the co-ordinates, for any given point, is in use, and it may be necessary to include an attribute to indicate which system is to be used, though the most recent standards appears to be the IAU Mean Earth&lt;br /&gt;
Polar Axis co-ordinate system, as used by [http://www.spds.nasa.gov/planetary/lunar/lunar_sites.html NASA] and [http://en.wikipedia.org/wiki/Apollo_11 Wikipedia], and described in Davies and Colvin, J. Geophys. Res., v. 105, pp. 20,227 - 20,280, 2000.&lt;br /&gt;
&lt;br /&gt;
==Kevin Marks==&lt;br /&gt;
Note multiple statements of Apollo landing co-ords here: [http://www.hq.nasa.gov/alsj/alsjcoords.html] &lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Currently, the lunar geoid is being redefined with Clementine data, so the location (latitude, longitude, and elevation) of everything will change again very soon&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I believe the reference geoids for other planets are also under revision&lt;br /&gt;
* True, but there are also other reference systems for Earth too&lt;br /&gt;
&lt;br /&gt;
==Drew McLellan==&lt;br /&gt;
Perhaps geo could be extended to encompass multiple grids. The existing type/value system in [[hCard]] et al could be used. Available types would intially be 'Earth', 'Luna', 'Mars', with the default (if none is specified) being 'Earth'. These could be extended to add new grids when needed. The value is then the co-ordinate.&lt;br /&gt;
&lt;br /&gt;
Obviously the name 'geo' applies to Earth, but we should seriously consider if we want to create a different microformat for every lump of rock someone wishes to map. It has to be advantageous to have a single format for this function that can be applied to any orbiting mass.&lt;br /&gt;
&lt;br /&gt;
* How would an existing user agent parse the grid ref.s for somewhere on the moon, marked up this way? - Andy Mabbett&lt;br /&gt;
** Badly, I'd imagine. However, it's easier to modify user agents to account for developments than a bulk of existing published data - Drew.&lt;br /&gt;
*** What published data would need to be modified? (Either way, I like the idea of an hCard for 'Ed Straker, SHADO, Moonbase 1, the Moon'. Maybe we need to add a &amp;quot;solar system&amp;quot; attribute... ;-) ) - Andy Mabbett&lt;br /&gt;
&lt;br /&gt;
== AndrewTurner ==&lt;br /&gt;
I think we should keep it simple, and also follow the same format used for marking Home/Work for adr, etc. which uses the class=&amp;quot;type&amp;quot; &lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.386013&amp;lt;/span&amp;gt;, &lt;br /&gt;
 &amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.082932&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;moon&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This would also apply to Earth-centric coordinate representations such as WGS84, NAD, ED50, etc. &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;type&amp;quot; title=&amp;quot;moon&amp;quot;&amp;gt;The Apollo 11 mission landed at &amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;0.67408&amp;quot;&amp;gt;the Sea of Tranquility&amp;lt;/abbr&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;23.47297&amp;quot;&amp;gt;&amp;lt;/abbr &amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[luna-examples]]&lt;br /&gt;
*[[geo]]&lt;br /&gt;
*[[mars]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=luna-brainstorming&amp;diff=8835</id>
		<title>luna-brainstorming</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=luna-brainstorming&amp;diff=8835"/>
		<updated>2006-09-23T03:00:44Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Luna Brainstorming=&lt;br /&gt;
&lt;br /&gt;
==Andy Mabbett==&lt;br /&gt;
===Proposal===&lt;br /&gt;
I propose a &amp;quot;luna&amp;quot; microformat, for marking up co-ordinates on our Moon. This would be based on the &amp;quot;[[geo]]&amp;quot; microformat (and thus relatively easy to implement, since code for &amp;quot;geo&amp;quot; can be re-used).&lt;br /&gt;
&lt;br /&gt;
Note, though, that [http://www.xs4all.nl/~carlkop/stenneck.html] and [http://www.lunarrepublic.com/history/apollo_sites.shtml] indicate that more than one system of&lt;br /&gt;
recording the co-ordinates, for any given point, is in use, and it may be necessary to include an attribute to indicate which system is to be used, though the most recent standards appears to be the IAU Mean Earth&lt;br /&gt;
Polar Axis co-ordinate system, as used by [http://www.spds.nasa.gov/planetary/lunar/lunar_sites.html NASA] and [http://en.wikipedia.org/wiki/Apollo_11 Wikipedia], and described in Davies and Colvin, J. Geophys. Res., v. 105, pp. 20,227 - 20,280, 2000.&lt;br /&gt;
&lt;br /&gt;
==Kevin Marks==&lt;br /&gt;
Note multiple statements of Apollo landing co-ords here: [http://www.hq.nasa.gov/alsj/alsjcoords.html] &lt;br /&gt;
&lt;br /&gt;
:&amp;quot;Currently, the lunar geoid is being redefined with Clementine data, so the location (latitude, longitude, and elevation) of everything will change again very soon&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I believe the reference geoids for other planets are also under revision&lt;br /&gt;
* True, but there are also other reference systems for Earth too&lt;br /&gt;
&lt;br /&gt;
==Drew McLellan==&lt;br /&gt;
Perhaps geo could be extended to encompass multiple grids. The existing type/value system in [[hCard]] et al could be used. Available types would intially be 'Earth', 'Luna', 'Mars', with the default (if none is specified) being 'Earth'. These could be extended to add new grids when needed. The value is then the co-ordinate.&lt;br /&gt;
&lt;br /&gt;
Obviously the name 'geo' applies to Earth, but we should seriously consider if we want to create a different microformat for every lump of rock someone wishes to map. It has to be advantageous to have a single format for this function that can be applied to any orbiting mass.&lt;br /&gt;
&lt;br /&gt;
* How would an existing user agent parse the grid ref.s for somewhere on the moon, marked up this way? - Andy Mabbett&lt;br /&gt;
** Badly, I'd imagine. However, it's easier to modify user agents to account for developments than a bulk of existing published data - Drew.&lt;br /&gt;
*** What published data would need to be modified? (Either way, I like the idea of an hCard for 'Ed Straker, SHADO, Moonbase 1, the Moon'. Maybe we need to add a &amp;quot;solar system&amp;quot; attribute... ;-) ) - Andy Mabbett&lt;br /&gt;
&lt;br /&gt;
== AndrewTurner ==&lt;br /&gt;
I think we should keep it simple, and also follow the same format used for marking Home/Work for adr, etc. which uses the class=&amp;quot;type&amp;quot; &lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.386013&amp;lt;/span&amp;gt;, &lt;br /&gt;
 &amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.082932&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;type&amp;quot;&amp;gt;moon&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This would also apply to Earth-centric coordinate representations such as WGS84, NAD, ED50, etc. &lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;type&amp;quot; title=&amp;quot;moon&amp;quot;&amp;gt;The Apollo 11 mission landed at &amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;0.67408&amp;quot;&amp;gt;the Sea of Tranquility&amp;lt;/abbr&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;23.47297E&amp;gt;&amp;lt;/abbr &amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[luna-examples]]&lt;br /&gt;
*[[geo]]&lt;br /&gt;
*[[mars]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=picoformats&amp;diff=8110</id>
		<title>picoformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=picoformats&amp;diff=8110"/>
		<updated>2006-08-09T13:43:54Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added MeetMoi syntax link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Picoformats represent an effort being undertaken by [http://factoryjoe.com/blog Chris Messina] and Andy Stack of [http://mozes.com Mozes] to codify various standards and openly pursue a nomenclature and syntax for communicating and executing commands with mobile devices over SMS.&lt;br /&gt;
&lt;br /&gt;
An example application is [http://dodgeball.com Dodgeball's] use of the at symbol (@) to express checking in to a place.&lt;br /&gt;
&lt;br /&gt;
Using the Microformats process and principles of building block design, our goal is to openly develop a complete syntax for interacting with various mobile services using the characters available on most mobile devices.&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
# send messages to user mobiles - via SMS, or a small application,&lt;br /&gt;
that contains information like appointment times, locations,&lt;br /&gt;
directions, and contact info. For example, when2where.com reminds&lt;br /&gt;
users when they need to leave to get to their appointment, so the&lt;br /&gt;
message may be like:&lt;br /&gt;
&lt;br /&gt;
 leave @ 4:35PM ~Dentist Office -&amp;gt; Detroit, MI&lt;br /&gt;
&lt;br /&gt;
where the text itself is simple and readable, but there *may* be an&lt;br /&gt;
small utility that would parse the @ symbol to add the event to the&lt;br /&gt;
calendar, the ~ to allow the person to quickly call that contact, or&lt;br /&gt;
the -&amp;gt; to pull up a Map/directions to the location&lt;br /&gt;
&lt;br /&gt;
# allow users to write messages to query an application - this is&lt;br /&gt;
similar to what Mozes has started with notes:&lt;br /&gt;
&lt;br /&gt;
 when2where: ?today    --- what appointements to I have today&lt;br /&gt;
 new @ 4PM ~Olive Garden -&amp;gt; Novi     --- add an appointment&lt;br /&gt;
&lt;br /&gt;
In addition to the obvious mobile device arena, I think picoformats&lt;br /&gt;
are usable in any context where &amp;quot;markup&amp;quot; is too heavy. For example, I&lt;br /&gt;
also just put together an IRC bot, whereisbot, that announces user&lt;br /&gt;
locations as they sign into a channel, or allows people to do:&lt;br /&gt;
&lt;br /&gt;
 .whereami, or .whereis &amp;lt;nick&amp;gt; to geolocate other people in a channel.&lt;br /&gt;
&lt;br /&gt;
I want to 'markup' the information, but putting actual XHTML or XML is&lt;br /&gt;
annoying, since IRC doesn't parse the information at all. So right now&lt;br /&gt;
the response is:&lt;br /&gt;
&lt;br /&gt;
 ajturner: .whereami&lt;br /&gt;
 whereisbot: ajturner is in Northville, MI, US  [42.4365 x -83.4884]&lt;br /&gt;
&lt;br /&gt;
So then someone could write a Picoformat parser for&lt;br /&gt;
X-Chat/Colloquy/other that would parse the [ #### x #### ] and provide&lt;br /&gt;
a Map url link.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* Flagr: [http://www.flagr.com/help/howto#mobile_creating_flag Creating mobile flags]&lt;br /&gt;
* [http://www.dodgeball.com/glossary Dodgeball Glossary]&lt;br /&gt;
* [http://twttr.com/t/help/lingo twttr lingo]&lt;br /&gt;
* [http://skobee.com/email_howto Skobee's email syntax]&lt;br /&gt;
* [http://www.meetmoi.com/1/meetmoi?wicket:bookmarkablePage=:com.mdate.web.GettingStarted#11 MeetMoi syntax]&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
* [http://highearthorbit.com Andrew Turner]&lt;br /&gt;
* [http://factoryjoe.com/blog Chris Messina]&lt;br /&gt;
* Andy Stack of [http://mozes.com Mozes]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=geo&amp;diff=8208</id>
		<title>geo</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=geo&amp;diff=8208"/>
		<updated>2006-08-05T05:03:39Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* Implementations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1&amp;gt; geo &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''geo''' (working name, pronounced &amp;quot;gee-oh&amp;quot;) is a simple format for marking up geographic latitude longitude information, suitable for embedding in (X)HTML, Atom, RSS, and arbitrary XML. '''geo''' is a 1:1 representation of the &amp;quot;geo&amp;quot; property in the vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]) in XHTML, one of several open [[microformats|microformat]] standards.&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Draft Specification ==&lt;br /&gt;
&lt;br /&gt;
=== Editor/Author ===&lt;br /&gt;
[http://tantek.com/ Tantek Çelik], [http://technorati.com Technorati, Inc.]&lt;br /&gt;
&lt;br /&gt;
=== Copyright ===&lt;br /&gt;
{{MicroFormatCopyrightStatement2005}}&lt;br /&gt;
&lt;br /&gt;
=== Patents ===&lt;br /&gt;
{{MicroFormatPatentStatement}}&lt;br /&gt;
&lt;br /&gt;
=== Inspiration and Acknowledgments ===&lt;br /&gt;
Thanks to everyone who participated in the [[geo-bof-2005-06-30|Geo Microformat BOF at O'Reilly's Where 2.0 conference]], and in particular to [http://radar.oreilly.com/nat/ Nat Torkington] and Vee McMillen of [http://oreilly.com O'Reilly] for [http://conferences.oreillynet.com/cs/where2005/view/e_sess/7476 arranging and hosting the BOF].  Thanks to Chris Hibbbert for providing the [http://www.geocaching.com/seek/cache_details.aspx?guid=dc4754bf-64d5-4f28-8715-45ad2505c86f real world geo-caching example].&lt;br /&gt;
&lt;br /&gt;
== Introduction and Background ==&lt;br /&gt;
The vCard standard ([http://www.ietf.org/rfc/rfc2426.txt RFC2426]), has been broadly and interoperably implemented (e.g. Apple's Address Book application). The [[hcard|hCard]] microformat has similarly received significant adoption, from numerous sites publishing the format, to hCard to vCard proxies, to clientside javascript parsers.&lt;br /&gt;
&lt;br /&gt;
At the [http://conferences.oreillynet.com/where/ Where 2.0 conference] in June 2005, there was widespread recognition that the community needed a way to simply and easily publish visible, extractable, geographic location information on the Web, given how often bloggers, and numerous other sites publish such information.  The [[geo-bof-2005-06-30|geo microformat BOF]] discussed this very topic, and concluded with a consensus decision to just try using ''geo'' from vCard/hCard.&lt;br /&gt;
&lt;br /&gt;
This specification introduces the '''geo''' microformat, which is a 1:1 representation of the aforementioned ''geo'' property from the vCard standard, by simply reusing the ''geo'' property and sub-properties as-is from the [[hcard|hCard]] microformat.&lt;br /&gt;
&lt;br /&gt;
Publishers can both embed '''geo''' addresses directly in their web pages and feeds, as well as markup existing latitude/longitude coordinates in the context of the rest of the information in their web pages and feeds.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the ''name'' of the location in addition to its geo lat/long, then the publisher MUST use [[hcard|hCard]] instead of just '''geo''' to publish the name and geo lat/long of the location.&lt;br /&gt;
&lt;br /&gt;
If the publisher knows and is publishing the address of the location, OR if the address of the location was what was actually entered by a human, and the publisher simply turned that into lat/long using some sort of a service, then the publisher SHOULD use [[adr]] to publish the actual human entered address information since that communicates far more semantic information than a simple geo lat/long coordinate.&lt;br /&gt;
&lt;br /&gt;
== Semantic XHTML Design Principles ==&lt;br /&gt;
{{semantic-xhtml-design-principles}}&lt;br /&gt;
&lt;br /&gt;
== Format ==&lt;br /&gt;
=== Singular Properties ===&lt;br /&gt;
&lt;br /&gt;
Note that all the properties in '''geo''' are singular properties, and thus the first descendant element with that class should take effect, any others being ignored.&lt;br /&gt;
&lt;br /&gt;
=== Human vs. Machine readable ===&lt;br /&gt;
&lt;br /&gt;
If an &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is used for a property, then the &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute of the &amp;lt;code&amp;gt;&amp;amp;lt;abbr&amp;amp;gt;&amp;lt;/code&amp;gt; element is the value of the property, instead of the contents of the element, which instead provide a human presentable version of the value.&lt;br /&gt;
&lt;br /&gt;
=== Value excerpting ===&lt;br /&gt;
&lt;br /&gt;
Sometimes only part of an element which is the equivalent for a property should be used for the value of the property. For this purpose, the special class name &amp;lt;code&amp;gt;value&amp;lt;/code&amp;gt; is used to excerpt out the subset of the element that is  the value of the property.  See [[hcard|hCard]] for details on this.&lt;br /&gt;
&lt;br /&gt;
=== Root Class Name ===&lt;br /&gt;
&lt;br /&gt;
The root class name for an geo location is &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Property List ===&lt;br /&gt;
&lt;br /&gt;
This is the list of properties in geo, taken from [[hcard|hCard]]:&lt;br /&gt;
&lt;br /&gt;
* latitude&lt;br /&gt;
* longitude&lt;br /&gt;
&lt;br /&gt;
=== XMDP Profile ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-profile]] for the [http://gmpg.org/xmdp XMDP] profile of hCard which contains the above complete list of properties, with references to their RFC 2426 definitions.&lt;br /&gt;
&lt;br /&gt;
=== Parsing Details ===&lt;br /&gt;
&lt;br /&gt;
See [[hcard-parsing|hCard parsing]], with the only difference being that &amp;quot;geo&amp;quot; is the root class name, rather than &amp;quot;vcard&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
This section is informative.&lt;br /&gt;
&lt;br /&gt;
=== Example from RFC2426 ===&lt;br /&gt;
&lt;br /&gt;
Section 3.4.2 of RFC2426 has a simple geo example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
GEO:37.386013;-122.082932&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this vCard fragment as a geo, as [http://microformats.org/wiki/hcard-examples#3.4.2_GEO_Type_Definition first documented on the hCard examples page]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;latitude&amp;quot;&amp;gt;37.386013&amp;lt;/span&amp;gt;, &lt;br /&gt;
 &amp;lt;span class=&amp;quot;longitude&amp;quot;&amp;gt;-122.082932&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
this geo could be displayed as: &lt;br /&gt;
&lt;br /&gt;
37.386013, -122.082932&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Real world geo example ===&lt;br /&gt;
&lt;br /&gt;
Here is a sample of published lat/long info (from [http://www.geocaching.com/seek/cache_details.aspx?guid=dc4754bf-64d5-4f28-8715-45ad2505c86f geocaching: Noble Steed]):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
N 37° 24.491 W 122° 08.313&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With geo markup:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;geo&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;37.408183&amp;quot;&amp;gt;N 37° 24.491&amp;lt;/abbr&amp;gt; &lt;br /&gt;
 &amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;-122.13855&amp;quot;&amp;gt;W 122° 08.313&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This geo might be displayed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;abbr class=&amp;quot;latitude&amp;quot; title=&amp;quot;37.408183&amp;quot;&amp;gt;N 37° 24.491&amp;lt;/abbr&amp;gt; &lt;br /&gt;
&amp;lt;abbr class=&amp;quot;longitude&amp;quot; title=&amp;quot;-122.13855&amp;quot;&amp;gt;W 122° 08.313&amp;lt;/abbr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that since the real world example used a more human readable presentation of the geo coordinates, we use the [[abbr-design-pattern]] to keep that more human readable presentation, and in addition provide the respective absolute numerical values for the geo.&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following sites have published geos, outside their normal context of hCards, and thus are a great place to start for anyone looking for examples &amp;quot;in the wild&amp;quot; to try parsing, indexing, organizing etc., in addition to [[hcard|hCard]] examples in the wild.  If you find geos outside of hCards anywhere else, feel free to add them to the top of this list.  Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://ocono.com/ ocono.com] has marked each of it's &amp;quot;Upcoming Events&amp;quot; items with lat/long values.&lt;br /&gt;
* [http://harry.hchen1.com/mylife.htm Harry Chen has marked up his geo location]&lt;br /&gt;
* [http://www.multimap.com Multimap.com] uses the geo microformat to mark up latitude and longitude values on map pages.&lt;br /&gt;
* [http://rasterweb.net/raster/ Pete Prodoehl] geotags posts on his blog.&lt;br /&gt;
* [http://07.pagesd.info/ 07.pagesd.info] uses the geo microformat to mark up latitude and longitude values for each commune of the Ardèche département in France.&lt;br /&gt;
* [http://www.openguides.org/ OpenGuides] has support for the geo microformat in svn, and for now you can see it in action on the [http://cotswolds.openguides.org/ Cotswolds OpenGuide]&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
This section is '''informative'''.&lt;br /&gt;
&lt;br /&gt;
The following implementations have been developed which either generate or parse geos outside the context of hCards. If you have an geo implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.&lt;br /&gt;
&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/index.php GreaseRoute] is a GreaseMonkey user script (also available as a simple Firefox Extension) which will add icons for displaying the MapQuest map of a [[geo]]. Written by [http://highearthorbit.com Andrew Turner] &lt;br /&gt;
* [http://www.podster.de/page/geotest podster.de] finds geo markups in podcast RSS Feeds and maps soundseeing episodes on a map (German only)&lt;br /&gt;
* [http://blog.codeeg.com/ Calvin Yu] has written a  [http://blog.codeeg.com/2006/01/28/using-microformats-to-plot-my-favorite-places/ web service that will allow you plot and describe places on a Yahoo Map easily] using [[hreview|hReview]] and [[geo]].&lt;br /&gt;
* [http://bluesmoon.blogspot.com/ Philip Tellis] has written a [http://bluesmoon.blogspot.com/2006/01/of-microformats-and-geocoding.html javascript to add maps to geo markup on pages]&lt;br /&gt;
* [http://placenamehere.com/TXP/pnh_mf/ pnh_mf] is a plugin for [http://textpattern.com/ Textpattern] that supports embedding geos and other microformats in templates and blog posts. Written by [http://placenamehere.com/ Chris Casciano].&lt;br /&gt;
* [http://bluesmoon.blogspot.com/ Philip Tellis] has written some javascript to [http://bluesmoon.blogspot.com/2006/01/of-microformats-and-geocoding.html convert the geo microformat to a google map] using [[geo]].&lt;br /&gt;
* Brian Suda has written some [http://suda.co.uk/projects/microformats/geo/ geo extracting] code to convert geo microformats to KML for use with Google Maps and Google Earth. There is also a bookmarklet to extract the data and pass it to google maps automatically. He is working on a GeoRSS version for Yahoo! Maps as well.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
=== Normative References ===&lt;br /&gt;
* [[hcard|hCard]]&lt;br /&gt;
&lt;br /&gt;
=== Informative References ===&lt;br /&gt;
* [http://www.ietf.org/rfc/rfc2426.txt vCard RFC2426] ([http://www.w3.org/2002/12/cal/rfc2426 HTML reformatted version of RFC2426])&lt;br /&gt;
* [http://www.w3.org/TR/2002/REC-xhtml1-20020801/ XHTML 1.0 SE]&lt;br /&gt;
&lt;br /&gt;
=== Similar Work ===&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[hcalendar|hCalendar]]&lt;br /&gt;
* [[XOXO]]&lt;br /&gt;
&lt;br /&gt;
== Work in progress ==&lt;br /&gt;
This specification is a work in progress. As additional aspects are discussed, understood, and written, they will be added.&lt;br /&gt;
&lt;br /&gt;
== Discussions ==&lt;br /&gt;
&lt;br /&gt;
* See [http://www.technorati.com/cosmos/referer.html blogs discussing this page].&lt;br /&gt;
&lt;br /&gt;
=== Q&amp;amp;A ===&lt;br /&gt;
* If you have any questions about hCard, check the [[hcard-faq|hCard FAQ]] first, and if you don't find answers, add your questions! (Odds are that any geo question will apply to hCard as well).&lt;br /&gt;
&lt;br /&gt;
=== Issues ===&lt;br /&gt;
* Please add any issues with the specification to the separate [[hcard-issues|hCard issues]] document.  Ditto.&lt;br /&gt;
* Proposals for changes, additions and other thoughts about [[geo]] may be found in the [[hcard-brainstorming|hCard brainstorming]] page.&lt;br /&gt;
&lt;br /&gt;
== Additional Related Reading and Sites ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.census.gov/geo/www/tiger/tigermap.html TIGER Map Service]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=picoformats&amp;diff=7843</id>
		<title>picoformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=picoformats&amp;diff=7843"/>
		<updated>2006-07-30T03:28:31Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Added contributors section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Picoformats represent an effort being undertaken by [http://factoryjoe.com/blog Chris Messina] and Andy Stack of [http://mozes.com Mozes] to codify various standards and openly pursue a nomenclature and syntax for communicating and executing commands with mobile devices over SMS.&lt;br /&gt;
&lt;br /&gt;
An example application is [http://dodgeball.com Dodgeball's] use of the at symbol (@) to express checking in to a place.&lt;br /&gt;
&lt;br /&gt;
Using the Microformats process and principles of building block design, our goal is to openly develop a complete syntax for interacting with various mobile services using the characters available on most mobile devices.&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
# send messages to user mobiles - via SMS, or a small application,&lt;br /&gt;
that contains information like appointment times, locations,&lt;br /&gt;
directions, and contact info. For example, when2where.com reminds&lt;br /&gt;
users when they need to leave to get to their appointment, so the&lt;br /&gt;
message may be like:&lt;br /&gt;
&lt;br /&gt;
 leave @ 4:35PM ~Dentist Office -&amp;gt; Detroit, MI&lt;br /&gt;
&lt;br /&gt;
where the text itself is simple and readable, but there *may* be an&lt;br /&gt;
small utility that would parse the @ symbol to add the event to the&lt;br /&gt;
calendar, the ~ to allow the person to quickly call that contact, or&lt;br /&gt;
the -&amp;gt; to pull up a Map/directions to the location&lt;br /&gt;
&lt;br /&gt;
# allow users to write messages to query an application - this is&lt;br /&gt;
similar to what Mozes has started with notes:&lt;br /&gt;
&lt;br /&gt;
 when2where: ?today    --- what appointements to I have today&lt;br /&gt;
 new @ 4PM ~Olive Garden -&amp;gt; Novi     --- add an appointment&lt;br /&gt;
&lt;br /&gt;
In addition to the obvious mobile device arena, I think picoformats&lt;br /&gt;
are usable in any context where &amp;quot;markup&amp;quot; is too heavy. For example, I&lt;br /&gt;
also just put together an IRC bot, whereisbot, that announces user&lt;br /&gt;
locations as they sign into a channel, or allows people to do:&lt;br /&gt;
&lt;br /&gt;
 .whereami, or .whereis &amp;lt;nick&amp;gt; to geolocate other people in a channel.&lt;br /&gt;
&lt;br /&gt;
I want to 'markup' the information, but putting actual XHTML or XML is&lt;br /&gt;
annoying, since IRC doesn't parse the information at all. So right now&lt;br /&gt;
the response is:&lt;br /&gt;
&lt;br /&gt;
 ajturner: .whereami&lt;br /&gt;
 whereisbot: ajturner is in Northville, MI, US  [42.4365 x -83.4884]&lt;br /&gt;
&lt;br /&gt;
So then someone could write a Picoformat parser for&lt;br /&gt;
X-Chat/Colloquy/other that would parse the [ #### x #### ] and provide&lt;br /&gt;
a Map url link.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* Flagr: [http://www.flagr.com/help/howto#mobile_creating_flag Creating mobile flags]&lt;br /&gt;
* [http://www.dodgeball.com/glossary Dodgeball Glossary]&lt;br /&gt;
* [http://twttr.com/t/help/lingo twttr lingo]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
* [http://highearthorbit.com Andrew Turner]&lt;br /&gt;
* [http://factoryjoe.com/blog Chris Messina]&lt;br /&gt;
* Andy Stack of [http://mozes.com Mozes&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=picoformats&amp;diff=7811</id>
		<title>picoformats</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=picoformats&amp;diff=7811"/>
		<updated>2006-07-30T03:21:51Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: Add picoformats &amp;quot;Problem Statement&amp;quot; from Mailing list ideas&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Picoformats represent an effort being undertaken by [http://factoryjoe.com/blog Chris Messina] and Andy Stack of [http://mozes.com Mozes] to codify various standards and openly pursue a nomenclature and syntax for communicating and executing commands with mobile devices over SMS.&lt;br /&gt;
&lt;br /&gt;
An example application is [http://dodgeball.com Dodgeball's] use of the at symbol (@) to express checking in to a place.&lt;br /&gt;
&lt;br /&gt;
Using the Microformats process and principles of building block design, our goal is to openly develop a complete syntax for interacting with various mobile services using the characters available on most mobile devices.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
# send messages to user mobiles - via SMS, or a small application,&lt;br /&gt;
that contains information like appointment times, locations,&lt;br /&gt;
directions, and contact info. For example, when2where.com reminds&lt;br /&gt;
users when they need to leave to get to their appointment, so the&lt;br /&gt;
message may be like:&lt;br /&gt;
&lt;br /&gt;
 leave @ 4:35PM ~Dentist Office -&amp;gt; Detroit, MI&lt;br /&gt;
&lt;br /&gt;
where the text itself is simple and readable, but there *may* be an&lt;br /&gt;
small utility that would parse the @ symbol to add the event to the&lt;br /&gt;
calendar, the ~ to allow the person to quickly call that contact, or&lt;br /&gt;
the -&amp;gt; to pull up a Map/directions to the location&lt;br /&gt;
&lt;br /&gt;
# allow users to write messages to query an application - this is&lt;br /&gt;
similar to what Mozes has started with notes:&lt;br /&gt;
&lt;br /&gt;
 when2where: ?today    --- what appointements to I have today&lt;br /&gt;
 new @ 4PM ~Olive Garden -&amp;gt; Novi     --- add an appointment&lt;br /&gt;
&lt;br /&gt;
In addition to the obvious mobile device arena, I think picoformats&lt;br /&gt;
are usable in any context where &amp;quot;markup&amp;quot; is too heavy. For example, I&lt;br /&gt;
also just put together an IRC bot, whereisbot, that announces user&lt;br /&gt;
locations as they sign into a channel, or allows people to do:&lt;br /&gt;
&lt;br /&gt;
 .whereami, or .whereis &amp;lt;nick&amp;gt; to geolocate other people in a channel.&lt;br /&gt;
&lt;br /&gt;
I want to 'markup' the information, but putting actual XHTML or XML is&lt;br /&gt;
annoying, since IRC doesn't parse the information at all. So right now&lt;br /&gt;
the response is:&lt;br /&gt;
&lt;br /&gt;
 ajturner: .whereami&lt;br /&gt;
 whereisbot: ajturner is in Northville, MI, US  [42.4365 x -83.4884]&lt;br /&gt;
&lt;br /&gt;
So then someone could write a Picoformat parser for&lt;br /&gt;
X-Chat/Colloquy/other that would parse the [ #### x #### ] and provide&lt;br /&gt;
a Map url link.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* Flagr: [http://www.flagr.com/help/howto#mobile_creating_flag Creating mobile flags]&lt;br /&gt;
* [http://www.dodgeball.com/glossary Dodgeball Glossary]&lt;br /&gt;
* [http://twttr.com/t/help/lingo twttr lingo]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=9071</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=9071"/>
		<updated>2006-07-30T03:18:55Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
aka: ajturner on IRC&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
* [[picoformats]]&lt;br /&gt;
* [http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7809</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7809"/>
		<updated>2006-07-30T03:18:48Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
aka: ajturner on IRC&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
 * [[picoformats]]&lt;br /&gt;
 * [http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7808</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7808"/>
		<updated>2006-07-30T03:18:37Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
aka: ajturner on IRC&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
[[picoformats]]&lt;br /&gt;
[http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7807</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7807"/>
		<updated>2006-07-30T03:18:24Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
aka: ajturner on IRC&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
[http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7806</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=7806"/>
		<updated>2006-06-16T18:45:47Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
[http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=6701</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=6701"/>
		<updated>2006-06-16T18:45:28Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
!! Projects&lt;br /&gt;
[http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=6700</id>
		<title>User:AndrewTurner</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=User:AndrewTurner&amp;diff=6700"/>
		<updated>2006-06-16T18:45:17Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Andrew Turner - [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
[http://code.highearthorbit.com/greaseroute/ GreaseRoute] - embeds a MapQuest map with directions to an [[adr]] or [[geo]] location&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2006-06-13-where-2-bof&amp;diff=7773</id>
		<title>events/2006-06-13-where-2-bof</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2006-06-13-where-2-bof&amp;diff=7773"/>
		<updated>2006-06-16T18:44:10Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* Attending */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Where 2.0 Microformats BOF II =&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
;Date: Tuesday, June 13, 2006&lt;br /&gt;
;Time: 7:30pm - 8:30pm PDT '''Tantek and Kevin running late ETA 7.50pm'''&lt;br /&gt;
;Location: Paseo Room, Fairmont Hotel San Jose, California, USA&lt;br /&gt;
;URLs: [http://wiki.oreillynet.com/where20_2006/index.cgi?BOFs Where 2.0 BOFs wiki page], [http://conferences.oreillynet.com/pub/w/47/bof.html Where 2.0 BOFs overview] &amp;amp;gt; [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9406 Geo Microformats BOF II: Developing a &amp;quot;directions&amp;quot; Microformat BOF page].&lt;br /&gt;
;Overview: Tim O'Reilly and Bill Gates [http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/ recently discussed microformats], and the [http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html need for a directions microformat became clear].  This sequel to [http://microformats.org/wiki/geo-bof-2005-06-30 last year's Microformats BOF] at Where 2.0 will discuss the [http://microformats.org/wiki/directions-examples work on the directions microformat to date], and  [http://microformats.org/wiki/directions-brainstorming brainstorm on proposals] for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik], [http://technorati.com/ Technorati] (moderator)&lt;br /&gt;
* [http://epeus.blogspot.com Kevin Marks] [http://technorati.com/ Technorati] &lt;br /&gt;
* Jérémy Huylebroeck [http://www.francetelecom.com/en France Telecom R&amp;amp;D]&lt;br /&gt;
* [http://greg.abstrakt.ch Gregor J. Rothfuss], [http://www.endoxon.com Endoxon]&lt;br /&gt;
* [http://360.yahoo.com/shi_norman Norman Shi]&lt;br /&gt;
* [http://metaweb.com/ Jamie Taylor]&lt;br /&gt;
* Michael Leahy&lt;br /&gt;
* Gregor Rothfuss&lt;br /&gt;
* Josu Azpillaga [http://www.tagzania.com Tagzania.com]&lt;br /&gt;
* Luistxo Fernandez [http://www.tagzania.com Tagzania.com]&lt;br /&gt;
* Adrian Cuthbert [http://www.m-spatial.com m-spatial] [http://www.mylocalguru.com mylocalguru]&lt;br /&gt;
* [[User:AndrewTurner|Andrew Turner]] [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
== Original Proposal ==&lt;br /&gt;
&lt;br /&gt;
Original proposal as submitted to the Where 2.0 BOF proposal form:&lt;br /&gt;
&lt;br /&gt;
=== Title ===&lt;br /&gt;
&lt;br /&gt;
Geo Microformats BOF II: Developing a &amp;quot;directions&amp;quot; microformat&lt;br /&gt;
&lt;br /&gt;
=== Describe the people who would be interested in attending this BOF ===&lt;br /&gt;
&lt;br /&gt;
Anyone interested in *simple* standards for publishing and sharing geo related information on the Web, in particular directions information.&lt;br /&gt;
&lt;br /&gt;
=== Which evenings(s) are you available to host your BOF? ===&lt;br /&gt;
&lt;br /&gt;
I am available to host the BOF on June 13th only.  My recommended time is from 6:30pm-7:30pm.&lt;br /&gt;
&lt;br /&gt;
=== Full description of this BOF Maximum 250 words, about 35 lines.* ===&lt;br /&gt;
&lt;br /&gt;
Last year at the inaugural &amp;quot;Where 2.0&amp;quot; conference, the Microformats BOF brought together key folks in the geo and microformats communities and together we were able to brainstorm and develop the &amp;quot;geo&amp;quot; and &amp;quot;adr&amp;quot; microformats.&lt;br /&gt;
&lt;br /&gt;
http://flickr.com/photos/tantek/45109751/&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/adr&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/geo&lt;br /&gt;
&lt;br /&gt;
During the opening keynote at the Mix06 conference this past March, Tim O'Reilly engaged Bill Gates in a discussion about microformats.  During that conversation, Bill Gates specifically noted that we need microformats for contacts, events, and directions.  &lt;br /&gt;
&lt;br /&gt;
http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/&lt;br /&gt;
&lt;br /&gt;
http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html&lt;br /&gt;
&lt;br /&gt;
The first of those two have been well defined by hCard and hCalendar microformats.  However, a directions microformat has yet to be defined.  Research has begun towards the development of a directions microformat.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/directions-examples&lt;br /&gt;
&lt;br /&gt;
The goal of this BOF is to once again bring together key interested folks in the geo and microformats communities, discuss the work on the directions microformat to date, and  brainstorm on proposals for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
=== Brief description of this BOF Maximum 50 words, about 7 lines.* ===&lt;br /&gt;
&lt;br /&gt;
Tim O'Reilly and Bill Gates recently discussed microformats, and the need for a directions microformat became clear.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/&lt;br /&gt;
&lt;br /&gt;
http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html&lt;br /&gt;
&lt;br /&gt;
This sequel to last year's Microformats BOF at Where 2.0 will discuss the work on the directions microformat to date, and  brainstorm on proposals for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/directions-examples&lt;br /&gt;
&lt;br /&gt;
=== Anything else we should know about your proposal? ===&lt;br /&gt;
&lt;br /&gt;
=== Confirmation Post Submission ===&lt;br /&gt;
&lt;br /&gt;
Birds of a Feather&lt;br /&gt;
&lt;br /&gt;
Thank you for filling out the BOF Request Form. If you have any questions, please contact Vee McMillen at vee at oreilly dot com.&lt;br /&gt;
&lt;br /&gt;
== Directions Examples ==&lt;br /&gt;
&lt;br /&gt;
Examples of how directions information is available on the net&lt;br /&gt;
* [http://mashpit.pbwiki.com/WalkaPedia Walkapedia]&lt;br /&gt;
* Direction By Landmark: leaving from Fairmont Hotel front door, making a left, next block take a right, cross the street and then enter Gordons Beer.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[geo]]&lt;br /&gt;
* [[location-formats]]&lt;br /&gt;
* [[events]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2006-06-13-where-2-bof&amp;diff=6699</id>
		<title>events/2006-06-13-where-2-bof</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2006-06-13-where-2-bof&amp;diff=6699"/>
		<updated>2006-06-16T18:42:32Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* Attending */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Where 2.0 Microformats BOF II =&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
;Date: Tuesday, June 13, 2006&lt;br /&gt;
;Time: 7:30pm - 8:30pm PDT '''Tantek and Kevin running late ETA 7.50pm'''&lt;br /&gt;
;Location: Paseo Room, Fairmont Hotel San Jose, California, USA&lt;br /&gt;
;URLs: [http://wiki.oreillynet.com/where20_2006/index.cgi?BOFs Where 2.0 BOFs wiki page], [http://conferences.oreillynet.com/pub/w/47/bof.html Where 2.0 BOFs overview] &amp;amp;gt; [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9406 Geo Microformats BOF II: Developing a &amp;quot;directions&amp;quot; Microformat BOF page].&lt;br /&gt;
;Overview: Tim O'Reilly and Bill Gates [http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/ recently discussed microformats], and the [http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html need for a directions microformat became clear].  This sequel to [http://microformats.org/wiki/geo-bof-2005-06-30 last year's Microformats BOF] at Where 2.0 will discuss the [http://microformats.org/wiki/directions-examples work on the directions microformat to date], and  [http://microformats.org/wiki/directions-brainstorming brainstorm on proposals] for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik], [http://technorati.com/ Technorati] (moderator)&lt;br /&gt;
* [http://epeus.blogspot.com Kevin Marks] [http://technorati.com/ Technorati] &lt;br /&gt;
* Jérémy Huylebroeck [http://www.francetelecom.com/en France Telecom R&amp;amp;D]&lt;br /&gt;
* [http://greg.abstrakt.ch Gregor J. Rothfuss], [http://www.endoxon.com Endoxon]&lt;br /&gt;
* [http://360.yahoo.com/shi_norman Norman Shi]&lt;br /&gt;
* [http://metaweb.com/ Jamie Taylor]&lt;br /&gt;
* Michael Leahy&lt;br /&gt;
* Gregor Rothfuss&lt;br /&gt;
* Josu Azpillaga [http://www.tagzania.com Tagzania.com]&lt;br /&gt;
* Luistxo Fernandez [http://www.tagzania.com Tagzania.com]&lt;br /&gt;
* Adrian Cuthbert [http://www.m-spatial.com m-spatial] [http://www.mylocalguru.com mylocalguru]&lt;br /&gt;
* AndrewTurner [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
== Original Proposal ==&lt;br /&gt;
&lt;br /&gt;
Original proposal as submitted to the Where 2.0 BOF proposal form:&lt;br /&gt;
&lt;br /&gt;
=== Title ===&lt;br /&gt;
&lt;br /&gt;
Geo Microformats BOF II: Developing a &amp;quot;directions&amp;quot; microformat&lt;br /&gt;
&lt;br /&gt;
=== Describe the people who would be interested in attending this BOF ===&lt;br /&gt;
&lt;br /&gt;
Anyone interested in *simple* standards for publishing and sharing geo related information on the Web, in particular directions information.&lt;br /&gt;
&lt;br /&gt;
=== Which evenings(s) are you available to host your BOF? ===&lt;br /&gt;
&lt;br /&gt;
I am available to host the BOF on June 13th only.  My recommended time is from 6:30pm-7:30pm.&lt;br /&gt;
&lt;br /&gt;
=== Full description of this BOF Maximum 250 words, about 35 lines.* ===&lt;br /&gt;
&lt;br /&gt;
Last year at the inaugural &amp;quot;Where 2.0&amp;quot; conference, the Microformats BOF brought together key folks in the geo and microformats communities and together we were able to brainstorm and develop the &amp;quot;geo&amp;quot; and &amp;quot;adr&amp;quot; microformats.&lt;br /&gt;
&lt;br /&gt;
http://flickr.com/photos/tantek/45109751/&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/adr&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/geo&lt;br /&gt;
&lt;br /&gt;
During the opening keynote at the Mix06 conference this past March, Tim O'Reilly engaged Bill Gates in a discussion about microformats.  During that conversation, Bill Gates specifically noted that we need microformats for contacts, events, and directions.  &lt;br /&gt;
&lt;br /&gt;
http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/&lt;br /&gt;
&lt;br /&gt;
http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html&lt;br /&gt;
&lt;br /&gt;
The first of those two have been well defined by hCard and hCalendar microformats.  However, a directions microformat has yet to be defined.  Research has begun towards the development of a directions microformat.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/directions-examples&lt;br /&gt;
&lt;br /&gt;
The goal of this BOF is to once again bring together key interested folks in the geo and microformats communities, discuss the work on the directions microformat to date, and  brainstorm on proposals for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
=== Brief description of this BOF Maximum 50 words, about 7 lines.* ===&lt;br /&gt;
&lt;br /&gt;
Tim O'Reilly and Bill Gates recently discussed microformats, and the need for a directions microformat became clear.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/&lt;br /&gt;
&lt;br /&gt;
http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html&lt;br /&gt;
&lt;br /&gt;
This sequel to last year's Microformats BOF at Where 2.0 will discuss the work on the directions microformat to date, and  brainstorm on proposals for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/directions-examples&lt;br /&gt;
&lt;br /&gt;
=== Anything else we should know about your proposal? ===&lt;br /&gt;
&lt;br /&gt;
=== Confirmation Post Submission ===&lt;br /&gt;
&lt;br /&gt;
Birds of a Feather&lt;br /&gt;
&lt;br /&gt;
Thank you for filling out the BOF Request Form. If you have any questions, please contact Vee McMillen at vee at oreilly dot com.&lt;br /&gt;
&lt;br /&gt;
== Directions Examples ==&lt;br /&gt;
&lt;br /&gt;
Examples of how directions information is available on the net&lt;br /&gt;
* [http://mashpit.pbwiki.com/WalkaPedia Walkapedia]&lt;br /&gt;
* Direction By Landmark: leaving from Fairmont Hotel front door, making a left, next block take a right, cross the street and then enter Gordons Beer.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[geo]]&lt;br /&gt;
* [[location-formats]]&lt;br /&gt;
* [[events]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=events/2006-06-13-where-2-bof&amp;diff=6697</id>
		<title>events/2006-06-13-where-2-bof</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=events/2006-06-13-where-2-bof&amp;diff=6697"/>
		<updated>2006-06-16T18:42:18Z</updated>

		<summary type="html">&lt;p&gt;AndrewTurner: /* Attending */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Where 2.0 Microformats BOF II =&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
&lt;br /&gt;
;Date: Tuesday, June 13, 2006&lt;br /&gt;
;Time: 7:30pm - 8:30pm PDT '''Tantek and Kevin running late ETA 7.50pm'''&lt;br /&gt;
;Location: Paseo Room, Fairmont Hotel San Jose, California, USA&lt;br /&gt;
;URLs: [http://wiki.oreillynet.com/where20_2006/index.cgi?BOFs Where 2.0 BOFs wiki page], [http://conferences.oreillynet.com/pub/w/47/bof.html Where 2.0 BOFs overview] &amp;amp;gt; [http://conferences.oreillynet.com/cs/where2006/view/e_sess/9406 Geo Microformats BOF II: Developing a &amp;quot;directions&amp;quot; Microformat BOF page].&lt;br /&gt;
;Overview: Tim O'Reilly and Bill Gates [http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/ recently discussed microformats], and the [http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html need for a directions microformat became clear].  This sequel to [http://microformats.org/wiki/geo-bof-2005-06-30 last year's Microformats BOF] at Where 2.0 will discuss the [http://microformats.org/wiki/directions-examples work on the directions microformat to date], and  [http://microformats.org/wiki/directions-brainstorming brainstorm on proposals] for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
== Attending ==&lt;br /&gt;
&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik], [http://technorati.com/ Technorati] (moderator)&lt;br /&gt;
* [http://epeus.blogspot.com Kevin Marks] [http://technorati.com/ Technorati] &lt;br /&gt;
* Jérémy Huylebroeck [http://www.francetelecom.com/en France Telecom R&amp;amp;D]&lt;br /&gt;
* [http://greg.abstrakt.ch Gregor J. Rothfuss], [http://www.endoxon.com Endoxon]&lt;br /&gt;
* [http://360.yahoo.com/shi_norman Norman Shi]&lt;br /&gt;
* [http://metaweb.com/ Jamie Taylor]&lt;br /&gt;
* Michael Leahy&lt;br /&gt;
* Gregor Rothfuss&lt;br /&gt;
* Josu Azpillaga [http://www.tagzania.com Tagzania.com]&lt;br /&gt;
* Luistxo Fernandez [http://www.tagzania.com Tagzania.com]&lt;br /&gt;
* Adrian Cuthbert [http://www.m-spatial.com m-spatial] [http://www.mylocalguru.com mylocalguru]&lt;br /&gt;
* Andrew Turner [http://highearthorbit.com HighEarthOrbit]&lt;br /&gt;
&lt;br /&gt;
== Original Proposal ==&lt;br /&gt;
&lt;br /&gt;
Original proposal as submitted to the Where 2.0 BOF proposal form:&lt;br /&gt;
&lt;br /&gt;
=== Title ===&lt;br /&gt;
&lt;br /&gt;
Geo Microformats BOF II: Developing a &amp;quot;directions&amp;quot; microformat&lt;br /&gt;
&lt;br /&gt;
=== Describe the people who would be interested in attending this BOF ===&lt;br /&gt;
&lt;br /&gt;
Anyone interested in *simple* standards for publishing and sharing geo related information on the Web, in particular directions information.&lt;br /&gt;
&lt;br /&gt;
=== Which evenings(s) are you available to host your BOF? ===&lt;br /&gt;
&lt;br /&gt;
I am available to host the BOF on June 13th only.  My recommended time is from 6:30pm-7:30pm.&lt;br /&gt;
&lt;br /&gt;
=== Full description of this BOF Maximum 250 words, about 35 lines.* ===&lt;br /&gt;
&lt;br /&gt;
Last year at the inaugural &amp;quot;Where 2.0&amp;quot; conference, the Microformats BOF brought together key folks in the geo and microformats communities and together we were able to brainstorm and develop the &amp;quot;geo&amp;quot; and &amp;quot;adr&amp;quot; microformats.&lt;br /&gt;
&lt;br /&gt;
http://flickr.com/photos/tantek/45109751/&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/adr&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/geo&lt;br /&gt;
&lt;br /&gt;
During the opening keynote at the Mix06 conference this past March, Tim O'Reilly engaged Bill Gates in a discussion about microformats.  During that conversation, Bill Gates specifically noted that we need microformats for contacts, events, and directions.  &lt;br /&gt;
&lt;br /&gt;
http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/&lt;br /&gt;
&lt;br /&gt;
http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html&lt;br /&gt;
&lt;br /&gt;
The first of those two have been well defined by hCard and hCalendar microformats.  However, a directions microformat has yet to be defined.  Research has begun towards the development of a directions microformat.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/directions-examples&lt;br /&gt;
&lt;br /&gt;
The goal of this BOF is to once again bring together key interested folks in the geo and microformats communities, discuss the work on the directions microformat to date, and  brainstorm on proposals for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
=== Brief description of this BOF Maximum 50 words, about 7 lines.* ===&lt;br /&gt;
&lt;br /&gt;
Tim O'Reilly and Bill Gates recently discussed microformats, and the need for a directions microformat became clear.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/blog/2006/03/20/bill-gates-at-mix06-we-need-microformats/&lt;br /&gt;
&lt;br /&gt;
http://radar.oreilly.com/archives/2006/03/directions_microformat_leading.html&lt;br /&gt;
&lt;br /&gt;
This sequel to last year's Microformats BOF at Where 2.0 will discuss the work on the directions microformat to date, and  brainstorm on proposals for a directions microformat.&lt;br /&gt;
&lt;br /&gt;
http://microformats.org/wiki/directions-examples&lt;br /&gt;
&lt;br /&gt;
=== Anything else we should know about your proposal? ===&lt;br /&gt;
&lt;br /&gt;
=== Confirmation Post Submission ===&lt;br /&gt;
&lt;br /&gt;
Birds of a Feather&lt;br /&gt;
&lt;br /&gt;
Thank you for filling out the BOF Request Form. If you have any questions, please contact Vee McMillen at vee at oreilly dot com.&lt;br /&gt;
&lt;br /&gt;
== Directions Examples ==&lt;br /&gt;
&lt;br /&gt;
Examples of how directions information is available on the net&lt;br /&gt;
* [http://mashpit.pbwiki.com/WalkaPedia Walkapedia]&lt;br /&gt;
* Direction By Landmark: leaving from Fairmont Hotel front door, making a left, next block take a right, cross the street and then enter Gordons Beer.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[adr]]&lt;br /&gt;
* [[geo]]&lt;br /&gt;
* [[location-formats]]&lt;br /&gt;
* [[events]]&lt;/div&gt;</summary>
		<author><name>AndrewTurner</name></author>
	</entry>
</feed>