I think one of the sweet points of RDFa should be in marking up tabular data and then enabling sorting, grouping and simple numeric analysis such as summation over the table using Javascript.
Does anyone have any pointers or examples of this being done?
As an example, how could you mark up the table from Wikipedia's List of tallest structures? (here are the first few rows slightly edited for clarity)
<table class="wikitable">
<tr>
<th>Name</th>
<th colspan="2">Pinnacle height</th>
<th>Year</th>
<th>Structural type</th>
<th>Main use</th>
<th>Country</th>
<th>Town</th>
<th>Remarks</th>
<th>Coordinates</th>
</tr>
<tr>
<td><a href="/wiki/Burj_Dubai" title="Burj Dubai">Burj Dubai</a></td>
<td>2,684 feet</td>
<td>818 m</td>
<td>2009</td>
<td>Skyscraper</td>
<td>Office, hotel, residential</td>
<td><a href="/wiki/United_Arab_Emirates" title="United Arab Emirates">United Arab Emirates</a></td>
<td><a href="/wiki/Dubai" title="Dubai">Dubai</a></td>
<td>Topped-out on 17 January 2009</td>
<td><span class="latitude">25°11′50.0″N</span> <span class="longitude">55°16′26.6″E</span></td>
</tr>
<tr>
<td><i><a href="/wiki/Warsaw_Radio_Mast" title="Warsaw Radio Mast" class="mw-redirect">Warsaw Radio Mast</a></i></td>
<td>2,121 feet</td>
<td>646.4 m</td>
<td>1974</td>
<td>Guyed mast</td>
<td>LF-transmission</td>
<td><a href="/wiki/Poland" title="Poland">Poland</a></td>
<td><a href="/wiki/G%C4%85bin" title="Gąbin">Gąbin</a>-<a href="/wiki/Konstantyn%C3%B3w_(P%C5%82ock_County)" title="Konstantynów (Płock County)" class="mw-redirect">Konstantynów</a>, <a href="/wiki/Masovian_Voivodeship" title="Masovian Voivodeship">Masovian Voivodeship</a></td>
<td>insulated; collapsed on August 8</td>
<td><span class="latitude">52°22′3.44″N</span> <span class="longitude">19°48′8.51″E</span></td>
</tr>
</table>