<xs:complexType name="PassIndexedDepth">
<xs:annotation>
<xs:documentation>Qualifies depth based on pass, direction and depth</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="witsml:AbstractIndexValue">
<xs:sequence>
<xs:element name="Pass" type="xs:int" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>The pass number. Increase the pass number each time the tool direction changes twice.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Direction" type="xs:int" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>0 = down (increasing depth) 1= up (decreasing depth) Changes each time the logging tool direction changes. When a log starts from the bottom, start with pass = 0, direction = 1. When you get to the top of the interval and start down again, change the pass.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Depth" type="xs:float" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>The measured depth of the point.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|