Adiing row header to J Table

i want to add my row header dynamically when i am add a row by pressing the add button it is possible..
and thr problem iam facing in this program is that the row header is there but along with row header a label like shade visible upto the end of frame.
Any help over these
And this is my code
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
]import javax.swing.table.*;
public class RowHeaderExample extends JFrame {JTable table;  
public RowHeaderExample()
{        super( "Row Header Example" );    
   setSize( 300, 150 );    
   ListModel listModel = new AbstractListModel() {   
        String headers[] = {"","","","","","" };        
   public int getSize() { return headers.length; }    
       public Object getElementAt(int index) { return headers[index];
     DefaultTableModel defaultModel =            new DefaultTableModel(listModel.getSize(),10);  
      table = new JTable( defaultModel );   
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);    
   // Create single component to add to scrollpane  
final JList rowHeader = new JList(listModel);    
   rowHeader.setFixedCellWidth(40);    
   rowHeader.setFixedCellHeight(table.getRowHeight());      
rowHeader.setCellRenderer(new RowHeaderRenderer(table));   
    JScrollPane scroll = new JScrollPane( table ); 
      scroll.setRowHeaderView(rowHeader);
// Adds row-list left of the table      
getContentPane().add(scroll, BorderLayout.CENTER);   
   rowHeader.addMouseListener(new MouseAdapter() {     
     public void mouseClicked(MouseEvent e) {     
     System.out.println("click Here 1");          
int index = rowHeader.locationToIndex(e.getPoint());
table.setRowSelectionInterval(index,index);          
table.requestFocus();     
public static void main(String[] args) {     
  RowHeaderExample frame = new RowHeaderExample();      
frame.addWindowListener( new WindowAdapter() {    
       public void windowClosing( WindowEvent e ) {       
        System.exit(0);            }        });    
   frame.setVisible(true); 

actually i dont quite understand your problem, dont know whether this one solve your problem, i guess may be the problem come from your renderer
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.table.*;
public class RowHeaderExample
    extends JFrame {
  JTable table;
  public RowHeaderExample() {
    super("Row Header Example");
    setSize(300, 150);
    ListModel listModel = new AbstractListModel() {
      String headers[] = {
          "Row 1", "Row 2", "Row 3", "Row 4", "Row 5", "Row 6"};
      public int getSize() {
        return headers.length;
      public Object getElementAt(int index) {
        return headers[index];
    DefaultTableModel defaultModel = new DefaultTableModel(listModel.getSize(),
        10);
    table = new JTable(defaultModel);
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    // Create single component to add to scrollpane
    final JList rowHeader = new JList(listModel);
    rowHeader.setFixedCellWidth(40);
    rowHeader.setFixedCellHeight(table.getRowHeight());
    rowHeader.setCellRenderer(new RowHeaderRenderer(table));
    JScrollPane scroll = new JScrollPane(table);
    scroll.setRowHeaderView(rowHeader);
    // Adds row-list left of the table
    getContentPane().add(scroll, BorderLayout.CENTER);
    rowHeader.addMouseListener(new MouseAdapter() {
      public void mouseClicked(MouseEvent e) {
        System.out.println("click Here 1");
        int index = rowHeader.locationToIndex(e.getPoint());
        table.setRowSelectionInterval(index, index);
        table.requestFocus();
  public static void main(String[] args) {
    RowHeaderExample frame = new RowHeaderExample();
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
    frame.setVisible(true);
  class RowHeaderRenderer extends JButton implements ListCellRenderer{
    JTable table;
    public RowHeaderRenderer(JTable table){
      this.table = table;
      setFont(new Font("Dialog",0,11));
      setMargin(new Insets(0,0,0,0));
    public Component getListCellRendererComponent(JList list, Object value,int index, boolean isSelected, boolean hasFocus){
      list.setBackground(getBackground());
      this.setText(value.toString());
      return this;
    public Component getListCellRendererComponent(JList list, Object value, boolean isSelected, boolean hasFocus){
      list.setBackground(getBackground());
      this.setText(value.toString());
      return this;
}

Similar Messages

  • Fixed header for Pivot Table

    Is there any way to show the fixed row header for Pivot Table. Currently its showing on hover.
    Thanks
    Suneesh

    Hi,
    I also have this problem. My view is using 3 EO, my third tables have multiple rows and I want these rows displayed as columns. So I'm using a pivot table to achieve this. I then only have one column in the "data" section of the pivot and all other data is to its left. I only see the column headers on hovering over the column and tha6t just wont suffice. Is there any way of modifying the width aswell?

  • SSRS Table/Row Header does not repeat on every page when exported to PDF

    Hi, I have a SSRS Report in which the rows are grouped and the Tablix has a Table/Row header. I wanted the header to repeat on every page for a group because sometimes the data from the group would be more than one page.
                                   To achieve this
                                   - I went to Advance mode by clicking the arrow next to column group
                                   - Selected the Header Static column from Row Group
                                   - Changed the following properties
                                                    - KeepWithGroup: After
                                                    - RepeatOnNewPage:
    True
                                                    - The header columns
    are set to not grow.
    The problem only occurs when the nested grouped data in one of the columns goes over a page. The following pages don't have any header.
    So half of the time the header row repeats but when the nested grouped data extends over one page the header does not show. Problem only occurs when rendered to pdf.
    I found this line "Headings are repeated on each page only if there is sufficient room" in SQL 2008 version. But I could not find it in later versions of sql server. So does that mean it is fixed

    Hi Mumblesnz1,
    According to your description, you specify value of RepeatOnNewPage as True in the report. When exporting the report to PDF, one grouped data extend over one page, and tablix header display on first page, not repeat on following pages.
    As we tested in our environment(SQL Server 2008(SP3)-10.0.5520.0(X64)), it works as you required. We set KeepWithGroup as After and RepeatOnNewPage as True. After exporting to PDF, the grouped data display on two pages, and tablix header repeats on each
    page. Since we haven’t found any document mentioned this issue is fixed on which version, I suggest you try to install the service pack 3 for sql server 2008.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Updating row header strings of a main VI table indicator simultaneously from the subVI.

    Hi, I am trying to update the row header strings of a table which is present in the main VI from the SubVI.i want to update the row headers
    simultaniously as the sub vi runs.I have used control Reference and a property node(Value) but i dint get the result.Please find the attached VI.
    Please give me the solution.Thank you.
    Attachments:
    Main VI.vi ‏9 KB
    subvi.vi ‏9 KB

     i am getting the data in the main VI after sub VI finished the execution
    That's called dataflow
    use your property node on the block diagram of main VI, create header first and then pass other elements in Table.

  • Af:table row header

    I have two questions regarding adf table
    1. Is there a way to set header for each row (not the column) in the table?
    2. Which property is responsible for displaying line numbers in the table?
    Thank you

    Hi,
    1. You can set a column as row header by setting the "rowHeader" attribute on column to be true and these header columns should be first columns in table.
    2. AFAIK, there is no property as such, but you can do it programmatically by adding a transient attribute in vo for line number and by calling a method which increments line number for each row by iterating all rows in vo
    Eg. code using DeptView(where lineNumber is a transient attribute added in DeptView to hold line numbers assigned to each record).
    public void incrementLineNumbers(){
    RowSetIterator deptVOIterator = getDeptView().createRowSetIterator("DeptViewIterator");
    Long lineNumber = 0L;
    try{
    while (deptVOIterator.hasNext()) {
    DeptViewRowImpl row = (DeptViewRowImpl)deptVOIterator.next();
    row.setLineNumber(++lineNumber);
    System.out.println("Line number: "+lineNumber+"\n*********\n");
    deptVOIterator.closeRowSetIterator();
    }catch(Exception e){
    e.printStackTrace();
    Sireesha

  • How to get the last row of a database table.

    HI ,
    I want to get record exactly from the last row of a database table.
    How is that possible?

    Hi,
    To fetch last record from an internal table, just do find the number of records in it and read using index.
    DESCRIBE TABLE ITAB LINES L_LINES.
    READ TABLE ITAB INDEX L_LINES.
    You can also use LOOP .. ENDLOOP but the above method is better (performance wise).
    using LOOP .. ENDLOOP.
    LOOP AT ITAB.
    **do nothing
    ENDLOOP.
    **process ITAB (Header record of ITAB).
    **after ENLOOP, ITAB will have the last record of the internal table.
    [here ITAB is internal table as well as header record.]
    But what is the requirement?
    If you are looking for the current record of an employee then you can use ENDDA = HIGH_DATE.
    My advice is to review your requirement again and try to fetch only that record which you need.
    Mubeen

  • JTable with row header plus value extraction from headers

    Hi, I am trying to do the following:
    Short Version-
    1. Create a table that has both row and column headers
    2. Allow the user to mouse over any of these headers such that doing so will display an image I have produced on a panel. (I already know how to create the image and how to display it, I'm just not sure how to associate it with a particular row or column header)
    3. Make the row headers look as much as possible like the column headers.
    Slightly Longer Version-
    Column headers will be labled A-H (maximum) while row headers will be labled 1-12 (maximum). Either can be less, however, depending on user input. After the table has been realized, the user will move the mouse over say, header 'H' and when they do, a JPEG image will appear on another panel and a tooltip will appear above the cell showing a formula. This happens when either row or column headers are moused over.
    Currently, I am using the following code from the O'reilly Swing book as a baseline for experimentation but any help you can offer will be appreciated. I'm fairly new to the JTable world... :-(
    TableModel tm = new AbstractTableModel(){
                   String data[] = {"", "a", "b", "c", "d", "e"};
                   String headers [] = {"Row #", "Column1", "Column2", "Column3", "Column4", "Column5"};
                   public int getColumnCount(){ return data.length;}
                   public int getRowCount() { return 1000;}
                   public String getColumnName(int col){ return headers[col];}
                   public Object getValueAt(int row, int col){
                        return data[col] + row;
              //creates a column model for the main table. This model ignores the first
              //column added and sets a minimum width of 150 pixels for all others
              TableColumnModel cm = new DefaultTableColumnModel(){
                   boolean first = true;
                   public void addColumn(TableColumn tc){
                        if(first) {first = false; return;}
                        tc.setMinWidth(150);
                        super.addColumn(tc);
              //Creates a column model that will serve as the row header table. This model
              //picks a maxium width and stores only the first column
              TableColumnModel rowHeaderModel = new DefaultTableColumnModel(){
                   boolean first = true;
                   public void addColumn(TableColumn tc){
                        if(first) {
                             tc.setMaxWidth(tc.getPreferredWidth());
                             super.addColumn(tc);
                             first = false;
              JTable grid = new JTable(tm, cm);
              //set up the header column and hook it up to everything
              JTable headerColumn = new JTable(tm, rowHeaderModel);
              grid.createDefaultColumnsFromModel();
              headerColumn.createDefaultColumnsFromModel();
              //make sure the selection between the main table and the header stay in sync
              grid.setSelectionModel(headerColumn.getSelectionModel());
              headerColumn.setBorder(BorderFactory.createEtchedBorder());
              headerColumn.setBackground(Color.lightGray);
              headerColumn.setColumnSelectionAllowed(false);
              headerColumn.setCellSelectionEnabled(false);
              JViewport jv = new JViewport();
              jv.setView(headerColumn);
              jv.setPreferredSize(headerColumn.getMaximumSize());
              //to make the table scroll properly
              grid.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
              //have to manually attach row headers but after that, the scroll pane
              //keeps them in sync
              JScrollPane jsp = new JScrollPane(grid);
              jsp.setRowHeader(jv);
              jsp.setCorner(ScrollPaneConstants.UPPER_LEFT_CORNER, headerColumn.getTableHeader());
              gridPanel.add(jsp, BorderLayout.NORTH);

    There a number of nice examples on JTable: http://www.senun.com/Left/Programming/Java_old/Examples_swing/SwingExamples.html
    Hope you could find something suitable ...
    Regards,
    Anton.

  • SWAP COLUMNS AND ROW IN AN INTERNAL TABLE to display in ALV

    Hi ,
    I want to swap all the rows in an internal table with the column of the internal table to display it horizontally in ALV grid.
    e.g
    1     2   3  (field names)
    A    P   X
    B    Q   Y
    C    R    Z
    should look like :
    D       A   B     C
    E      P   Q    R
    F       X    Y    Z
    Where D , E, F in first column is already apended in new table.
    Or else is there a way to rotate the ALV grid so that it can display rows as columns & columns as rows.
    regards

    hi,
    i have an internal table which is like
    f1  f2 f3  f4 (column header)
    A  1  2   3
    B  4  5   6
    C  7  8   9
    the values in o/p table should be
    A B C  ( column header)
    1  4 7 
    2  5 8
    3  6 9
    Please help!!

  • Dynamic rows in ABAP webdynpro table

    hi all
    I've got a question. I have a webdynpro with a table.
    This table is feed by a node. The number of rows of this node is dynamic.
    I had seen in the properties of the table object that the number of visible rows can be set.
    But is there also a method to set this number of rows dynamicly? So when the node has 20 rows
    the table object is also set to show 20 rows and when there are none, the table
    only shows the header of the  table.
    Currently the table always shows 5 rows, without checking how many rows there actually are.
    Does any of you know how to do this?
    kind regards,
    Anton Pierhagen

    Hi Anton ,
    You can use the method SET_VISIBLE_ROW_COUNT() of the class cl_wd_table for setting the visible row count dynamically.
    In the WDDOMODIFY view , you can get the reference of the table UI element used and proceed.
    DATA lo_table TYPE cl_wd_table.
    lo_table ?= view->get_element( ID = 'name_of_table_in_the_view').
    lo_table->SET_VISIBLE_ROW_COUNT(value = 5)."Here the value you can decide based on your data.
    But this method is not recommended as it directly deals with the view's elements and will be very difficult for the person maintaining the code.
    Instead create a attribute which can store a number and bind the visible row count property to this attribute.
    set this attribute with the values based on the data.(as in number of visible rows you would want to see.)
    Thanks,
    Aditya

  • Word wrapping in row header cell in OLAPDataGrid

    I have an issue with the OLAPDatagrid. Does anyone know how
    to wrap text in the row header cells?
    (to avoid confusion, i will demonstrate my issue using a grid
    with 1 row and 1 column dimension).
    OLAPDataGrid has 2 properties: wordWrap, which only seems to
    affect the data cells, and headerWordWrap which only appears to
    affect the dimension data across the topmost row.
    However, neither of these properties appear to allow the row
    dimensions' data to wrap (this is the data in the leftmost column).
    Not only this, the column does not automatically resize to reveal
    the data.
    I also can't see how to manually modify the width of the
    columns as at the point when the olapdatagrid's dataprovider is
    assigned to the olapresult, the column count is zero.
    any suggestions?
    thanks
    Mark

    //i tryied this it is not working
    //its selecting the first colum first row and when i clicked the second row header it is selecting the second //column seconf row.
    //And pressing Ctrl [key] and click row header is not working.
    what do u mean by Second row header. For a Table we wil be having only one header na

  • How to insert a button on the column header of a table in webdynpro java

    Hi
    Can anyone tell me how to insert a button on the column header of a table in webdynpro java?
    regards
    sunit

    Hi sunit,
    Instead of adding button in the column header , in the column
    add a fixed top cell.
        right click on the column
        Insert FixedTopCell
        Right click on the fixedTopCell
        insert Editor.
       select button.
    then button will be only in the top most row.
    Hope it will satisfy ur requirement
    Regards
    Smitha

  • Freezing header in a table

    Hi friends,
    How can I freeze header in a table? If not possible with a table, can I use any other web bean in OAF. Or can I use CSS or javascript or extending a TableBean.
    Need a solution as soon as possible.
    Thanks,
    Amar.

    Hi Amar,
    do you need something like "freezing the header and making the rows scrollable like yahoo mail"?
    If yes, then its not possible in OAFramework.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                   

  • Can any one tell me how to change the current row header in FB1LN tcode

    Hi,
    can any one tell me how to change the current row header in FB1LN tcode.
    I want to show input date also in the layout.
    Regards
    Mave

    Hi
    I know two ways:
    - transaction obvu: here you can insert new fields, but only if these fields are included in certain table (like BKPF, BSEG, BSIS.....
    - if your field isn't included in those table, you have to modify the structure RFPOS and manage it in the BTE 1650. After updating RFPOS you have to run the program RFPOSXEXTEND to update the structure RFPOSXEXT.
    Max

  • How to set different colors for even odd rows in a data table

    hi,
    In my project i hav a data table. i am using jsf. i want the rows of the data table different colors for even, odd rows. can i do it just setting the row class property ? or there should be there some other way? please help.
    sailajoy

    Hope this helps
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-loose.dtd">
    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    <title></title>
    <style type='text/css'>
    .scrollContent {
    height:100px;
    overflow-x:hidden;
    overflow-y:auto;
    .scrollContent tr {
    height: auto;
    white-space: nowrap;
    .scrollContent tr td:last-child {
    padding-right: 20px;
    .fixedHeader tr {
    position: relative;
    height: auto;
    top: expression( this.parentNode.parentNode.parentNode.scrollTop + 'px' );
    div.TableContainer {
    border: 1px solid #7DA87D;
    .headerFormat {
    background-color: white;
    color: #C8D7B5;
    margin: 3px;
    padding: 1px;
    white-space: nowrap;
    font-family: Helvetica;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    .headerFormat tr td {
    border: 1px solid #C8D7B5;
    background-color: #666633;
    .bodyFormat tr td {
         color: #000000;
         margin: 3px;
         padding: 1px;
         border: 0px none;
         font-family: Helvetica;
         font-size: 12px;
    .alternateRow {
    background-color: #C8D7B5;
    </style>
    <style type="text/css">
    div.TableContainer {
    height: 121px;
    overflow-x:hidden;
    overflow-y:auto;
    </style>
    </head>
    <body>
    <table cellpadding="0" cellspacing="0" border="0"><tr><td><div id="TableContainer" class="TableContainer" style="height:230px;">
    <table class="scrollTable">
    <thead class="fixedHeader headerFormat">
    <tr class="title">
    <td title="Sort" align="center"><b>NAME</b> </td>
    <td title="Sort" align="center"><b>Amt</b> </td>
    <td title="Sort" align="center"><b>Lvl</b> </td>
    <td title="Sort" align="center"><b>Rank</b> </td>
    <td title="Sort" align="center"><b>Position</b> </td>
    <td title="Sort" align="center"><b>Date</b></td>
    </tr>
    </thead>
    <tbody class="scrollContent bodyFormat" style="height:200px;">
    <tr class="alternateRow">
    <td>Maha</td>
    <td>
    <input type="text" name="textfield" size="7" />
    </td>
    <td align="right"><input type="text" name="textfield2" size="7" /></td>
    <td align="right"><input type="text" name="textfield3" size="7" /></td>
    <td><input type="text" name="textfield4" size="7" /></td>
    <td align="right"><input type="text" name="textfield5" size="7" /></td>
    </tr>
    <tr>
    <td>Thrawl</td>
    <td align="right">$9,550</td>
    <td align="right">159</td>
    <td align="right">100%</td>
    <td>Co-Owner</td>
    <td align="right">11/07/2003</td>
    </tr>
    <tr class="alternateRow">
    <td>Marhanen</td>
    <td align="right">$223.04</td>
    <td align="right">83</td>
    <td align="right">99%</td>
    <td>Banker</td>
    <td align="right">06/27/2006</td>
    </tr>
    <tr>
    <td>Peter</td>
    <td align="right">$121</td>
    <td align="right">567</td>
    <td align="right">23423%</td>
    <td>FishHead</td>
    <td align="right">06/06/2006</td>
    </tr>
    <tr class="alternateRow">
    <td>Jones</td>
    <td align="right">$15</td>
    <td align="right">11</td>
    <td align="right">15%</td>
    <td>Bubba</td>
    <td align="right">10/27/2005</td>
    </tr>
    <tr>
    <td>Supa-De-Dupa</td>
    <td align="right">$145</td>
    <td align="right">91</td>
    <td align="right">32%</td>
    <td>momma</td>
    <td align="right">12/15/1996</td>
    </tr>
    <tr class="alternateRow">
    <td>ClickClock</td>
    <td align="right">$1,213</td>
    <td align="right">23</td>
    <td align="right">1%</td>
    <td>Dada</td>
    <td align="right">1/30/1998</td>
    </tr>
    <tr>
    <td>Mrs. Robinson</td>
    <td align="right">$99</td>
    <td align="right">99</td>
    <td align="right">99%</td>
    <td>Wife</td>
    <td align="right">07/04/1963</td>
    </tr>
    <tr class="alternateRow">
    <td>Maha</td>
    <td align="right">$19,923.19</td>
    <td align="right">100</td>
    <td align="right">100%</td>
    <td>Owner</td>
    <td align="right">01/02/2001</td>
    </tr>
    <tr>
    <td>Thrawl</td>
    <td align="right">$9,550</td>
    <td align="right">159</td>
    <td align="right">100%</td>
    <td>Co-Owner</td>
    <td align="right">11/07/2003</td>
    </tr>
    <tr class="alternateRow">
    <td>Marhanen</td>
    <td align="right">$223.04</td>
    <td align="right">83</td>
    <td align="right">59%</td>
    <td>Banker</td>
    <td align="right">06/27/2006</td>
    </tr>
    <tr>
    <td>Peter</td>
    <td align="right">$121</td>
    <td align="right">567</td>
    <td align="right">534.23%</td>
    <td>FishHead</td>
    <td align="right">06/06/2006</td>
    </tr>
    <tr class="alternateRow">
    <td>Jones</td>
    <td align="right">$15</td>
    <td align="right">11</td>
    <td align="right">15%</td>
    <td>Bubba</td>
    <td align="right">10/27/2005</td>
    </tr>
    <tr>
    <td>Supa-De-Dupa</td>
    <td align="right">$145</td>
    <td align="right">91</td>
    <td align="right">42%</td>
    <td>momma</td>
    <td align="right">12/15/1996</td>
    </tr>
    <tr class="alternateRow">
    <td>ClickClock</td>
    <td align="right">$1,213</td>
    <td align="right">23</td>
    <td align="right">2%</td>
    <td>Dada</td>
    <td align="right">1/30/1998</td>
    </tr>
    <tr>
    <td>Mrs. Robinson</td>
    <td align="right">$99</td>
    <td align="right">99</td>
    <td align="right">(-10.42%)</td>
    <td>Wife</td>
    <td align="right">07/04/1963</td>
    </tr>
    <tr class="alternateRow">
    <td>Maha</td>
    <td align="right">-$19,923.19</td>
    <td align="right">100</td>
    <td align="right">(-10.01%)</td>
    <td>Owner</td>
    <td align="right">01/02/2001</td>
    </tr>
    <tr >
    <td>Thrawl</td>
    <td align="right">$9,550</td>
    <td align="right">159</td>
    <td align="right">-10.20%</td>
    <td>Co-Owner</td>
    <td align="right">11/07/2003</td>
    </tr>
    <tr class="alternateRow" >
    <td><strong>TOTAL</strong>:</td>
    <td align="right"><strong>999999</strong></td>
    <td align="right"><strong>9999999</strong></td>
    <td align="right"><strong>99</strong></td>
    <td > </td>
    <td align="right"> </td>
    </tr>
    </tbody>
    </table>
    </div></td></tr></table>
    </body>
    </html>

  • No rows appear in nested tables

    Hi,
    I registered below XML schema and let the register proceduree to create the default tables. after I inserted 100 xml files into the table with XMLType column, I can't find any rows in the nested tables, say "Message191_TAb".
    SQL> select count(*) from "Message191_TAB";
    COUNT(*)
    0
    Thanks!
    ====================sample.xsd========================
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <!--W3C Schema generated by XMLSpy v2005 sp2 U (http://www.altova.com)-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
         <xs:element name="From">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="User"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="Log">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Message" maxOccurs="unbounded"/>
                   </xs:sequence>
                   <xs:attribute name="FirstSessionID" type="xs:string" use="required"/>
                   <xs:attribute name="LastSessionID" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="Message">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="From"/>
                        <xs:element ref="To"/>
                        <xs:element ref="Text"/>
                   </xs:sequence>
                   <xs:attribute name="Date" type="xs:string" use="required"/>
                   <xs:attribute name="Time" type="xs:string" use="required"/>
                   <xs:attribute name="DateTime" type="xs:string" use="required"/>
                   <xs:attribute name="SessionID" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="Text">
              <xs:complexType mixed="true">
                   <xs:attribute name="Style" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="To">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="User"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="User">
              <xs:complexType>
                   <xs:attribute name="FriendlyName" type="xs:string" use="required"/>
              </xs:complexType>
         </xs:element>
    </xs:schema>
    ==================end=============================

    I use the following to delete / register schemas:
    -- delete previously registered schema
    begin
      DBMS_XMLSCHEMA.deleteSchema(
        'http://oeb-isg-webdev.xxx.xxx/xmlschema/rapic.xsd',
        3
    end;-- This is using the annotated schema on oeb-isg-webdev;
    begin
    DBMS_XMLSCHEMA.registerURI(
       schemaURL      => 'http://oeb-isg-webdev..xxx.xxx/xmlschema/rapic.xsd',
       schemaDocURI   => 'http://oeb-isg-webdev.xxx.xxx/xmlschema/rapic.xsd',
       genTables      => TRUE,  -- generate object tables
       genTypes       => TRUE,  -- generate object types
       genBean        => FALSE, -- no java beans
       local          => true  --  local ?
    end; The schema is:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb"
      elementFormDefault="qualified" xdb:storeVarrayAsTable="true">
      <xs:element name="rapicverify" xdb:defaultTable="ISO_RADAR" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="RAPICVERIFY_T">
          <xs:sequence>
            <xs:element ref="header"/>
            <xs:element ref="calibration_basis"/>
            <xs:choice maxOccurs="unbounded">
              <xs:element ref="forward_power_measurement"/>
              <xs:element ref="receiver_measurement"/>
              <xs:element ref="tx_corrected_receiver_measurement"/>
            </xs:choice>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="header" xdb:defaultTable="ISO_RADAR_HEADER" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="HEADER_T">
          <xs:sequence>
            <xs:element ref="part" maxOccurs="unbounded" xdb:SQLName="PART" xdb:SQLCollType="PART_V"/>
          </xs:sequence>
          <xs:attribute name="doctype" use="required" type="xs:NCName"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="part" xdb:defaultTable="ISO_RADAR_PART" xdb:maintainOrder="false">
        <xs:complexType mixed="true" xdb:SQLType="part_t">
          <xs:attribute name="detail" type="xs:NCName"/>
          <xs:attribute name="name" use="required" type="xs:NCName"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="calibration_basis" xdb:defaultTable="ISO_RADAR_CALIBRATION_BASIS"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="calibration_basis_t">
          <xs:sequence>
            <xs:element ref="system"/>
            <xs:element ref="receiver_measurement_losses"/>
            <xs:element ref="transmitter_measurement_losses"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="system" xdb:defaultTable="ISO_RADAR_SYSTEM" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="system_t">
          <xs:sequence>
            <xs:element ref="frequency"/>
            <xs:element ref="peak_power"/>
            <xs:element ref="h_beamwidth"/>
            <xs:element ref="v_beamwidth"/>
            <xs:element ref="forward_coupler"/>
            <xs:element ref="fwd_coupler_cable_loss"/>
            <xs:element ref="waveguide_loss"/>
            <xs:element ref="az_rotating_joint"/>
            <xs:element ref="el_rotating_joint"/>
            <xs:element ref="antenna_gain"/>
            <xs:element ref="radome_loss"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="frequency" xdb:defaultTable="ISO_RADAR_FREQUENCY" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="frequency_t">
          <xs:attribute name="mhz" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="peak_power" xdb:defaultTable="ISO_RADAR_PEAK_POWER" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="peak_power_t">
          <xs:attribute name="kw" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="h_beamwidth" xdb:defaultTable="ISO_RADAR_H_BEAM_W" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="h_beamwidth_t">
          <xs:attribute name="deg" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="v_beamwidth" xdb:defaultTable="ISO_RADAR_V_BEAM_W" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="v_beamwidth_t">
          <xs:attribute name="deg" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="forward_coupler" xdb:defaultTable="ISO_RADAR_FWD_COUPLER"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="forward_coupler_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="fwd_coupler_cable_loss" xdb:defaultTable="ISO_RADARFWD_CPLR_CBL_LOSS"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="fwd_coupler_cable_loss_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="waveguide_loss" xdb:defaultTable="ISO_RADAR_WAVEGUIDE+LOSS"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="waveguide_loss_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="az_rotating_joint" xdb:defaultTable="ISO_RADAR_AZ_ROT_JNT"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="ax_rotating_joint_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="el_rotating_joint" xdb:defaultTable="ISO_RADAR_EL_ROT_JNT"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="el_rotating_joint_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="antenna_gain" xdb:defaultTable="ISO_RADAR_ANT_GAIN" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="antenna_gain_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="radome_loss" xdb:defaultTable="ISO_RADAR_RADOME_LOSS" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="radome_loss_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="receiver_measurement_losses" xdb:defaultTable="ISO_RADAR_RCVR_MMT_LOSS"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="receiver_measurement_losses_t">
          <xs:sequence>
            <xs:element ref="coupler_loss"/>
            <xs:element ref="attenuator"/>
            <xs:element ref="cable"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="cable" xdb:defaultTable="ISO_RADAR_CABLE" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="cable_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="transmitter_measurement_losses" xdb:defaultTable="ISO_RADAR_TX_MEAS_LOSS"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="tx_measurement_losses_t">
          <xs:sequence>
            <xs:element ref="coupler_loss"/>
            <xs:element ref="attenuator"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="forward_power_measurement" xdb:defaultTable="ISO_RADAR_FWD_PWR_MMT"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="forward_power_measurement_t">
          <xs:sequence>
            <xs:element ref="time"/>
            <xs:element ref="pulse_index"/>
            <xs:element ref="pulse_width"/>
            <xs:element ref="expected_dbm"/>
            <xs:element maxOccurs="unbounded" ref="measured_fwd_power" xdb:SQLName="M_FWD_PWR"
              xdb:SQLCollType="M_FWD_PWR_V"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="expected_dbm" xdb:defaultTable="ISO_RADAR_EXP_DBM" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="expected_dbm_t">
          <xs:attribute name="dbm" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="measured_fwd_power" xdb:defaultTable="ISO_RADAR_MEAS_FWD_PWR"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="measured_fwd_pwr_t">
          <xs:attribute name="dbm" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="receiver_measurement" xdb:defaultTable="ISO_RADAR_RX_MEASUREMENT"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="receiver_measurement_t">
          <xs:sequence>
            <xs:element ref="time"/>
            <xs:element ref="range"/>
            <xs:element ref="pulse_index"/>
            <xs:element ref="pulse_width"/>
            <xs:element ref="injection_power"/>
            <xs:element ref="radar_constant"/>
            <xs:element ref="expected_dbz"/>
            <xs:element maxOccurs="unbounded" ref="measured_rx_power" xdb:SQLName="MEASURED_RX_PWR"
              xdb:SQLCollType="MEASURED_RX_PWR_V"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="tx_corrected_receiver_measurement" xdb:defaultTable="ISO_RADAR_TX_CORR_RX_MMT"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="tx_corrected_rx_measurement_t">
          <xs:sequence>
            <xs:element ref="time"/>
            <xs:element ref="range"/>
            <xs:element ref="pulse_index"/>
            <xs:element ref="pulse_width"/>
            <xs:element ref="injection_power"/>
            <xs:element ref="radar_constant"/>
            <xs:element ref="expected_dbz"/>
            <xs:element maxOccurs="unbounded" ref="measured_rx_power" xdb:SQLName="MEASURED_RX_PWR"
              xdb:SQLCollType="MEASURED_RX_PWR_V"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="coupler_loss" xdb:defaultTable="ISO_RADAR_COUPLER_LOSS"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="coupler_loss_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="attenuator" xdb:defaultTable="ISO_RADAR_ATTENUATOR" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="attenuator_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="time" xdb:defaultTable="ISO_RADAR_TIME" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="time_t">
          <xs:attribute name="utc" use="required" type="xs:NMTOKEN"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="range" xdb:defaultTable="ISO_RADAR_RANGE" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="range_t">
          <xs:attribute name="km" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="pulse_index" xdb:defaultTable="ISO_RADAR_PULSE_INDEX" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="pulse_index_t">
          <xs:attribute name="au" use="required" type="xs:integer"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="pulse_width" xdb:defaultTable="ISO_RADAR_PULSE_WDTH" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="pulse_width_t">
          <xs:attribute name="us" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="injection_power" xdb:defaultTable="ISO_RADAR_INJECTION_PWR"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="injection_power_t">
          <xs:attribute name="dbm" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="radar_constant" xdb:defaultTable="ISO_RADAR_RADAR_CONST"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="radar_constant_t">
          <xs:attribute name="db" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="expected_dbz" xdb:defaultTable="ISO_RADAR_EXPECT_DBZ" xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="expected_dbz_t">
          <xs:attribute name="dbz" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="measured_rx_power" xdb:defaultTable="ISO_RADAR_MEAS_RX_PWR"
        xdb:maintainOrder="false">
        <xs:complexType xdb:SQLType="measured_rx_power_t">
          <xs:attribute name="dbz" use="required" type="xs:decimal"/>
        </xs:complexType>
      </xs:element>
    </xs:schema>This was generated by oXygen XML from the following file:
    <?xml version="1.0" encoding="UTF-8"?>
    <rapicverify>
      <header doctype="PCRapicTx_XMLlogger">
        <part name="stn_num">040966</part>
        <part name="radar_name">MtStapl</part>
        <part name="radar_id">066</part>
        <part name="start_time" detail="utc">23-08-2006 00:58:34</part>
        <part name="end_time" detail="utc">24-08-2006 00:58:34</part>
      </header>
      <calibration_basis>
        <system>
          <frequency mhz="2860.000000"/>
          <peak_power kw="713.00"/>
          <h_beamwidth deg="1.000"/>
          <v_beamwidth deg="1.000"/>
          <forward_coupler db="39.70"/>
          <fwd_coupler_cable_loss db="1.01"/>
          <waveguide_loss db="1.06"/>
          <az_rotating_joint db="0.00"/>
          <el_rotating_joint db="0.00"/>
          <antenna_gain db="44.60"/>
          <radome_loss db="0.25"/>
        </system>
        <receiver_measurement_losses>
          <coupler_loss db="19.83"/>
          <attenuator db="9.90"/>
          <cable db="0.54"/>
        </receiver_measurement_losses>
        <transmitter_measurement_losses>
          <coupler_loss db="0.21"/>
          <attenuator db="29.99"/>
        </transmitter_measurement_losses>
      </calibration_basis>
      <receiver_measurement>
        <time utc="23-08-2006_00:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-13.65"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-16.03"/>
        <measured_rx_power dbz="-18.29"/>
        <measured_rx_power dbz="-19.95"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_00:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-30.60"/>
        <measured_rx_power dbz="-30.60"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_01:58:34"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_01:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_01:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-23.20"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_02:58:36"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="16.07"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_02:58:36"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-14.40"/>
        <measured_rx_power dbz="-16.06"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_02:58:36"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_03:58:35"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_03:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-15.50"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_04:58:35"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_04:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-16.54"/>
        <measured_rx_power dbz="-28.29"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_04:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-29.38"/>
        <measured_rx_power dbz="-14.03"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_05:58:36"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_05:58:36"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-12.12"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-14.59"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_05:58:36"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_06:58:35"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_06:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-15.31"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_06:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-8.58"/>
        <measured_rx_power dbz="-26.33"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_07:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.64"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.64"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.63"/>
        <measured_fwd_power dbm="17.63"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_07:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-14.28"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-19.29"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_07:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-14.70"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_08:58:34"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="16.07"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_08:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-28.63"/>
        <measured_rx_power dbz="-15.18"/>
        <measured_rx_power dbz="-19.15"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_08:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-12.57"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-19.54"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-18.45"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_09:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.53"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_09:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_09:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-16.01"/>
        <measured_rx_power dbz="-18.59"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_10:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_10:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-19.68"/>
        <measured_rx_power dbz="-16.60"/>
        <measured_rx_power dbz="-14.86"/>
        <measured_rx_power dbz="-15.38"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_10:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-12.05"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_11:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_11:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-30.54"/>
        <measured_rx_power dbz="-13.29"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_11:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_12:58:34"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_12:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-8.19"/>
        <measured_rx_power dbz="-26.47"/>
        <measured_rx_power dbz="-15.04"/>
        <measured_rx_power dbz="-14.87"/>
        <measured_rx_power dbz="-30.08"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_12:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-17.20"/>
        <measured_rx_power dbz="-13.57"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-19.72"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_13:58:34"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.56"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_13:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-15.53"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-16.30"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_13:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_14:58:34"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_14:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-15.86"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_14:58:34"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-12.21"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_15:59:37"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="16.08"/>
        <measured_fwd_power dbm="16.09"/>
        <measured_fwd_power dbm="16.07"/>
        <measured_fwd_power dbm="16.07"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_15:59:37"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-18.48"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-18.77"/>
        <measured_rx_power dbz="-15.84"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_15:59:37"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-10.80"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_17:58:35"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_17:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-17.99"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-16.22"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_17:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-18.35"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_18:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.61"/>
        <measured_fwd_power dbm="17.61"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_18:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-11.79"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_18:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-13.92"/>
        <measured_rx_power dbz="-30.59"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_19:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.57"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_19:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-15.88"/>
        <measured_rx_power dbz="-18.02"/>
        <measured_rx_power dbz="-100.00"/>
      </receiver_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_19:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-14.16"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_20:58:33"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
      </forward_power_measurement>
      <tx_corrected_receiver_measurement>
        <time utc="23-08-2006_20:58:33"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-19.11"/>
        <measured_rx_power dbz="-15.98"/>
        <measured_rx_power dbz="-25.17"/>
        <measured_rx_power dbz="-100.00"/>
      </tx_corrected_receiver_measurement>
      <forward_power_measurement>
        <time utc="23-08-2006_21:58:35"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <expected_dbm dbm="17.62"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.58"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="17.59"/>
        <measured_fwd_power dbm="17.60"/>
        <measured_fwd_power dbm="16.08"/>
      </forward_power_measurement>
      <receiver_measurement>
        <time utc="23-08-2006_21:58:35"/>
        <range km="100.00"/>
        <pulse_index au="1"/>
        <pulse_width us="1.00"/>
        <injection_power dbm="-15.00"/>
        <radar_constant db="69.60"/>
        <expected_dbz dbz="23.62"/>
        <measured_rx_power dbz="-100.00"/>
        <measured_rx_power dbz="-19.29"/>
      </receiver_measurement>
     

Maybe you are looking for

  • What's wrong with this benchmark

    i fromatted my hd, installed a new fresh os xp, latest drivers for all devices, benchmarck with 3dmark2001se give me 5200 points, 3dmark03 give me 2008 points. even i tried to disable the oc, so i return the fsb to 201 ram to 400 and spd, then 3dmark

  • Manually update site database help

    So I ran the CU4 updater and it all went fine except for a warning for perform database update.  looking at the logs it says along the lines of this: The EXECUTE permission was denied on the object 'fnIsPrimary',database 'CM_LAB', schema "dbo' so i f

  • Percentage Result  showing incorrect  result

    Dear Experts , my report region wise sales and Sector wise sales, calculating percentage region wise and Sector wise, For example Region Sector Net Qty %AGE %AGE overall Uttar Pradesh Urban 7,797.00 4.58 % 4.58 % Rural 652.30 0.38 % 0.38 % Result 8,4

  • No WebDynpro option in SE80 dropdown list

    I installed the sneak preview successfully (after a few tries). When I go into se80, the option to create/search for a WebDynpro application is not available. I have uninstalled and reinstalled the entire app server and db and  the same thing is happ

  • .ico icon files not displaying in Bookmarks sidebar, etc.?

    Do .ico files for webpages work on Macs? thanks