Corelyzer Data XML Schema
From CwWiki
Revision as of 16:55, 13 June 2006; 131.193.77.207 (Talk)
(diff) ←Older revision | view current revision | Newer revision→ (diff)
(diff) ←Older revision | view current revision | Newer revision→ (diff)
The Corelyzer Data XML Schema is a fairly simple XML schema. It is based off of a version of the Geotek data XML format. Examples are available at Sample Data.
The root of the Corelyzer XML Schema is <corewall_data>. Inside this node are blocks of <section> tags. The XML schema is simply a set of tables, one for each core section. Inside section tags are tags to identify which section the table belongs to, units of depth, listing of fields and the data retrieved from sensors at particular depths.
Here is a complete example of the XML schema, with sample data processed from JANUS:
<corewall_data>
<section>
<id>1219a_010h_03</id>
<depth_unit>cm</depth_unit>
<field localid="1" name="HALC" units=""/>
<field localid="2" name="HSIG" units=""/>
<depth>3.679</depth>
<sensor id="0">88.15</sensor>
<sensor id="1">36.67</sensor>
<depth>8.760</depth>
<sensor id="0">83.73</sensor>
<depth>13.839</depth>
<sensor id="0">83.522</sensor>
<sensor id="1">37.21</sensor>
</section>
</corewall_data>

