1 <xsl:transform
   2   xmlns:astro="http://www.astro.com/astro"
   3   xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   4 
   5         <!-- radec.xsl = filters on both RA and DEC using modes -->
   6         
   7         <xsl:output method="xml"/>
   8         
   9         <!-- include the fragments for ra and dec filtering -->
  10         
  11         <xsl:include href="ra_frag.xsl"/>
  12         <xsl:include href="dec_frag.xsl"/>
  13         
  14         <xsl:template match="astro:stardb">
  15               <stardb xmlns="http://www.astro.com/astro"
  16               xsi:schemaLocation="http://www.astro.com/astro catalog.xsd"
  17               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
  18                   <xsl:apply-templates/>
  19               </stardb>
  20         </xsl:template>
  21         
  22         <xsl:template match="astro:_test-04">
  23             <!-- discard text contents -->
  24         </xsl:template>
  25 
  26 
  27 </xsl:transform>
  28