geo-extension-waypoints: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
m (→‎Other: URL)
(→‎Real-World Examples: fix URL; revised markup (now using geo!))
Line 23: Line 23:
===Collections===
===Collections===
*[http://www.poi66.com/ POI66]
*[http://www.poi66.com/ POI66]
**example: [http://www.poi66.com/maps/show_earth.php?album=adelaarspad&lat=52.38035&lon=4.89872&extent=0.1&scale=126400#p214738&text=Waypoint%201 Amsterdam CS-Alkmaar CS walking route] (n.b long page; 612 waypoints)
**example: [http://www.poi66.com/maps/show_album?album=adelaarspad Amsterdam CS-Alkmaar CS walking route] (n.b long page; 612 waypoints)
**relevant mark-up: <code><nowiki><li><div>waypoint 10<br/>Latitude 52.386165<br/>Longitude 4.91199</div></li></nowiki></code>
**relevant mark-up: <s><code><nowiki><li><div>waypoint 10<br/>Latitude 52.386165<br/>Longitude 4.91199</div></li></nowiki></code></s>
  <pre><nowiki>
  <tr>
  <td>10</td>
  <td>
    <div class="geo">
      <span class="latitude">52.38616</span><br/>
      <span class="longitude">4.91199</span>
    </div>
  </td>
  <td ><a href="...">Waypoint 10</a></td>
  <td >Amsterdam (3 km) <a title="" href="...">Map</a></td>
  </tr>
</nowiki></pre>


===Other===
===Other===

Revision as of 00:30, 24 March 2007

Geo Waypoint Trails

An exploration of publishing trail or boundary information using series of Geo data waypoints.

Waypoints are geographic points, as currently published using the geo microformat.

Presented sequentially, they can describe trails or routes (which may or may not have been traversed at specific times) or boundaries (which may be on any scale, from a small garden to a continent).

The Problem

To allow the publishing of series of waypoints in such a way that they are downloadable and that their ordering is parsable.

Participants

Real-World Examples

Collections

  <tr>
  <td>10</td>
  <td>
    <div class="geo">
      <span class="latitude">52.38616</span><br/>
      <span class="longitude">4.91199</span>
    </div>
  </td>
  <td ><a href="...">Waypoint 10</a></td>
  <td >Amsterdam (3 km) <a title="" href="...">Map</a></td>
  </tr>

Other

  <wpt lat="39.921055008" lon="3.054223107"> 
  <ele>12.863281</ele> 
  <time>2005-05-16T11:49:06Z</time> 
  <name>Cala Sant Vicenç - Mallorca</name> 
  <sym>City</sym> 
  </wpt>

Typical mandatory attributes

  • Latitude (WSG84, using decimal or degrees-minutes-seconds values)
  • Longitude (ditto)
  • text label

Typical optional attributes

  • elevation
  • image
  • note ?
  • url ?

Issues

  • How to differentiate between a trail (for example in the shape of a letter "U") and a boundary - in other words, to say whether or not, after the last point, the line returns to the first.
  • How to sequence/ timestamp waypoints

See Also