<?xml version="1.0" encoding="UTF-8" ?>

<!--
   Name: 08_gmd:dataSetURI.xsl 
   Author:  Matthew J. McCready
   Date:  20110601
   Description:  XSLT stylesheet that transforms the onlink element of the FGDC standard to the gmd:dataSetURI ISO element.
   Modification History:
      Initial   Date      Change Request ID   Description

-->


<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco">
   <xsl:output method="xml" version="1.0" encoding="ISO-8859-1" indent="yes"/>



   <xsl:template name="dataSetURI" match="/">

      <xsl:for-each select="//idinfo/citation/citeinfo/onlink">
         <xsl:element name="gmd:dataSetURI">
            <xsl:element name="gco:CharacterString">
               <xsl:apply-templates select="."/>
            </xsl:element>
         </xsl:element>
      </xsl:for-each>
   </xsl:template>
</xsl:stylesheet>
