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
<num>Numeric information in any form.
<add>Marks an addition to the text.
<biblScope>Defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work.
<corr>Contains the correct form of an apparent erroneous passage.
<damage>Contains an area of damage to the physical medium.
<del>Contains information deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, annotator, or corrector.
<expan>Contains the expansion of an abbreviation.
<gap>Indicates 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.
<orig>Contains material which is marked as following the original, rather than being normalized or corrected.
<reg>Contains material which has been regularized or normalized in some sense.
<restore>Indicates restoration of material to an earlier state by cancellation of an editorial or authorial marking or instruction.
<sic>Contains apparently incorrect or inaccurate material.
<supplied>Contains material supplied by the transcriber or editor for any reason.
<unclear>Contains material that cannot be transcribed with certainty because it is illegible or inaudible in the source.
<depth>Description of a measurement taken through a three-dimensional object.
<dim>Any single dimensional specification.
<extent>Used to express size in terms other than physical dimensions, such as number of pages, records, bytes, physical components, etc.
<height>Description of the vertical size of an object.
<width>Description of the horizontal size of an object.
Editorial and transcriptional component declarations.
<add>Marks an addition to the text.
<corr>Contains the correct form of an apparent erroneous passage.
<damage>Contains an area of damage to the physical medium.
<del>Contains information deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, annotator, or corrector.
<expan>Contains the expansion of an abbreviation.
<gap>Indicates 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.
<orig>Contains material which is marked as following the original, rather than being normalized or corrected.
<reg>Contains material which has been regularized or normalized in some sense.
<restore>Indicates restoration of material to an earlier state by cancellation of an editorial or authorial marking or instruction.
<sic>Contains apparently incorrect or inaccurate material.
<supplied>Contains material supplied by the transcriber or editor for any reason.
<unclear>Contains 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.
<biblScope>Defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work.
<depth>Description of a measurement taken through a three-dimensional object.
<dim>Any single dimensional specification.
<extent>Used to express size in terms other than physical dimensions, such as number of pages, records, bytes, physical components, etc.
<height>Description of the vertical size of an object.
<num>Numeric information in any form.
<width>Description 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>