I am trying to get the attributes from a point layer in a KMZ file stored in a HTML table within kml_description......
I have tried using HTMLToXHTMLConverter, but the features always fail. Currently using FME 2013 SP3. FME Data Inspector is able to read and list them under "Attributes".
I followed the instructions from:
https://knowledge.safe.com/articles/19918/how-to-expose-feature-attributes-from-kml-tag.html
Here is an example of the html code that comes between <description> and </description><html lang="en">
<head><meta charset="utf8"/><style> * { margin: 0; } html, body { height: 100%; margin: 0; padding: 0; } h2 { textalign: center; background: #e5eCf9; } #summaryData { fontfamily: 'Helvetica Neue', Arial, Helvetica, sansserif; fontsize: 12px; width: 350px; } #summaryData th{ paddingright: 20px; width: 40%; } .fire_title { background: #ffffff; marginbottom: 15px; } .box { textalign: left; padding: 1.5em; paddingtop: 1em; marginbottom: 1.5em; background: #e5eCf9; width: 100%; } .spacer { height: 15px; } </style></head>
<body>
<div id="summaryData"><h2>Friday, June 3, 2016</h2>
<table>
<tr><th>Type</th><td>WF</td></tr></table><h2>Totals</h2>
<table>
<tr><th>Area Burned</th><td>28.22 acres</td></tr><tr/>
<tr><th>CO2</th><td>17.91 tons</td></tr>
<tr><th>CO</th><td>2.44 tons</td></tr>
<tr><th>PM10</th><td>0.23 tons</td></tr>
<tr><th>VOC</th><td>0.57 tons</td></tr>
<tr><th>SO2</th><td>0.01 tons</td></tr>
<tr><th>NOX</th><td>0.01 tons</td></tr>
<tr><th>NH3</th><td>0.04 tons</td></tr>
<tr><th>CH4</th><td>0.12 tons</td></tr>
<tr><th>PM25</th><td>0.2 tons</td></tr>
</table></div></body></html>