att.ranging

Groups attributes that describe a numerical range.
Module
Attributes
atleast, atmost, confidence, max, min
atleast(optional)Gives a minimum estimated value for an approximate measurement. Value is a decimal number.
atmost(optional)Gives a maximum estimated value for an approximate measurement. Value is a decimal number.
confidence(optional)Specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. Value conforms to data.CONFIDENCE.
max(optional)Where the measurement summarizes more than one observation or a range of values, supplies the maximum value observed. Value is a decimal number.
min(optional)Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed. Value is a decimal number.
atleast(optional)Gives a minimum estimated value for an approximate measurement. Value is a decimal number.
atmost(optional)Gives a maximum estimated value for an approximate measurement. Value is a decimal number.
min(optional)Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed. Value is a decimal number.
max(optional)Where the measurement summarizes more than one observation or a range of values, supplies the maximum value observed. Value is a decimal number.
confidence(optional)Specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. Value conforms to data.CONFIDENCE.
Component declarations that are shared between two or more modules.
atleast(optional)Gives a minimum estimated value for an approximate measurement. Value is a decimal number.
atmost(optional)Gives a maximum estimated value for an approximate measurement. Value is a decimal number.
confidence(optional)Specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. Value conforms to data.CONFIDENCE.
max(optional)Where the measurement summarizes more than one observation or a range of values, supplies the maximum value observed. Value is a decimal number.
min(optional)Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed. Value is a decimal number.
Available at
numNumeric information in any form.
addMarks an addition to the text.
biblScopeDefines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work.
corrContains the correct form of an apparent erroneous passage.
damageContains an area of damage to the physical medium.
delContains information deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, annotator, or corrector.
expanContains the expansion of an abbreviation.
gapIndicates a point where material has been omitted in a transcription, whether as part of sampling practice or for editorial reasons described in the MEI header.
origContains material which is marked as following the original, rather than being normalized or corrected.
regContains material which has been regularized or normalized in some sense.
restoreIndicates restoration of material to an earlier state by cancellation of an editorial or authorial marking or instruction.
sicContains apparently incorrect or inaccurate material.
suppliedContains material supplied by the transcriber or editor for any reason.
unclearContains material that cannot be transcribed with certainty because it is illegible or inaudible in the source.
depthDescription of a measurement taken through a three-dimensional object.
dimAny single dimensional specification.
extentUsed to express size in terms other than physical dimensions, such as number of pages, records, bytes, physical components, etc.
heightDescription of the vertical size of an object.
widthDescription of the horizontal size of an object.
Editorial and transcriptional component declarations.
addMarks an addition to the text.
corrContains the correct form of an apparent erroneous passage.
damageContains an area of damage to the physical medium.
delContains information deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, annotator, or corrector.
expanContains the expansion of an abbreviation.
gapIndicates a point where material has been omitted in a transcription, whether as part of sampling practice or for editorial reasons described in the MEI header.
origContains material which is marked as following the original, rather than being normalized or corrected.
regContains material which has been regularized or normalized in some sense.
restoreIndicates restoration of material to an earlier state by cancellation of an editorial or authorial marking or instruction.
sicContains apparently incorrect or inaccurate material.
suppliedContains material supplied by the transcriber or editor for any reason.
unclearContains material that cannot be transcribed with certainty because it is illegible or inaudible in the source.
Component declarations that are shared between two or more modules.
biblScopeDefines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work.
depthDescription of a measurement taken through a three-dimensional object.
dimAny single dimensional specification.
extentUsed to express size in terms other than physical dimensions, such as number of pages, records, bytes, physical components, etc.
heightDescription of the vertical size of an object.
numNumeric information in any form.
widthDescription of the horizontal size of an object.
Constraints

The attributes @min and @max are required when @confidence is present.

Declaration
<classSpec ident="att.ranging" module="MEI.shared" type="atts">
<desc xml:lang="en">Groups attributes that describe a numerical range.</desc>
<attList>
<attDef ident="atleast" usage="opt">
<desc xml:lang="en">Gives a minimum estimated value for an approximate measurement.</desc>
<datatype>
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="atmost" usage="opt">
<desc xml:lang="en">Gives a maximum estimated value for an approximate measurement.</desc>
<datatype>
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="min" usage="opt">
<desc xml:lang="en">Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed.</desc>
<datatype>
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="max" usage="opt">
<desc xml:lang="en">Where the measurement summarizes more than one observation or a range of values, supplies the maximum value observed.</desc>
<datatype>
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="confidence" usage="opt">
<desc xml:lang="en">Specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range.</desc>
<datatype>
<rng:ref name="data.CONFIDENCE"/>
</datatype>
<constraintSpec ident="check_confidence" scheme="schematron">
<constraint>
<sch:rule context="mei:*[@confidence]">
<sch:assert test="@min and @max">The attributes @min and @max are required when @confidence is present.</sch:assert>
</sch:rule>
</constraint>
</constraintSpec>
</attDef>
</attList>
</classSpec>