<?xml version="1.0" encoding="UTF-8" ?> 
  <xsl:stylesheet version="1.0" xmlns="http://earth.google.com/kml/2.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:output method="xml" /> 
  <xsl:template match="/">
  <kml>
  <Document>
  <name>Geleende plaatsnamen</name> 
  <xsl:apply-templates /> 
  </Document>
  </kml>

  </xsl:template>
  <xsl:template match="sheet">
  <xsl:for-each select="row[@row >= 0]">
  <Placemark>
  <Snippet maxLines="0" /> 
  <name>
  <xsl:value-of select="cell[@col=0]" /> 
  </name>
  <description><xsl:value-of select="cell[@col=2]" /></description>
  <Style>
   <IconStyle>
    <scale>1</scale>
   <Icon>
    <href>http://maps.google.com/mapfiles/kml/shapes/flag.png</href>

   </Icon>
   </IconStyle>
   <LabelStyle>
  <scale>1</scale>
  </LabelStyle>
  </Style>
<address><![CDATA[<i>]]><xsl:value-of select="cell[@col=1]/@value" /><![CDATA[</i>]]></address>
  </Placemark>

  </xsl:for-each>
  </xsl:template>
  </xsl:stylesheet>
