<?xml version="1.0"?>
<!-- example showing how to have pixel and ra,de values
     explicitly in Q. The issue here is that the values
     are properly described as a vector, as you cannot
     iterate over the ra, de values separately. The data
     are:
 
   X   Y   RA   DEC    Flux
    3  4   98.3 -78.0  10.1
   11  9  109.1 -77.7  34.5
   55 33  100.1 -75.2  56.2
   55 34  111.2 -78.5  34.3

  -->

<mydocument
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://ivoa.org/Quantity MyStdDocument.xsd"
      xmlns:c="http://ivoa.org/CoordinateSystems"
      xmlns:m="http://ivoa.org/Mappings"
      xmlns="http://ivoa.org/Quantity"
>
        <flux size="4">
                <axesList>
                        <axes size="1"> <!-- yep, thats right, its a 1-D quantity --> 
                                <pixelPos size="4"> <!-- a quantity as a vector, which has 
							4 possible realizations/combinations 
							of its component values-->
                                        <vector> <!-- has 2 component frames -->
                                                <x_pixel><integer width="1"/></x_pixel>
                                                <y_pixel><integer width="1"/></y_pixel>
                                        </vector>
                                        <values>3 4 11 9 55 33 55 34</values>
                                </pixelPos>
                        </axes>
                        <axes size="1"> <!-- ditto for above, will appear 1-D -->
                                <skyVector size="4"> <!-- another quantity as vector -->
                                        <vector>
                                                <ra><float width="5" precision="1"/></ra>
                                                <dec><float width="5" precision="1"/></dec>
                                        </vector>
                                        <values>98.3 -78.0 109.1 -77.7 100.1 -75.2 111.2 -78.5</values>
                                </skyVector>
                        </axes>
                </axesList>
		<units>erg cm^-2 sec^-1</units>
                <float width="3" precision="1"/>
		<!-- actual values of flux -->
                <values>10.1 34.5 56.2 34.3</values>
        </flux>
</mydocument>
