att.ranging

Groups attributes that describe a numerical range.
Module
MEI.shared
Attributes
atleast, atmost, confidence, max, min
atleast(optional)Gives a minimum estimated value for an approximate measurement. Value of datatype decimal.
atmost(optional)Gives a maximum estimated value for an approximate measurement. Value of datatype decimal.
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 of datatype decimal.
min(optional)Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed. Value of datatype decimal.
atleast(optional)Gives a minimum estimated value for an approximate measurement. Value of datatype decimal.
atmost(optional)Gives a maximum estimated value for an approximate measurement. Value of datatype decimal.
min(optional)Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed. Value of datatype decimal.
max(optional)Where the measurement summarizes more than one observation or a range of values, supplies the maximum value observed. Value of datatype decimal.
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 of datatype decimal.
atmost(optional)Gives a maximum estimated value for an approximate measurement. Value of datatype decimal.
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 of datatype decimal.
min(optional)Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed. Value of datatype decimal.
Available at
num(number) – Numeric information in any form.
add(addition) – Marks an addition to the text.
biblScope(scope of citation) – Defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work.
corr(correction) – Contains the correct form of an apparent erroneous passage.
damageContains an area of damage to the physical medium.
del(deletion) – 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(expansion) – Contains 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.
orig(original) – Contains material which is marked as following the original, rather than being normalized or corrected.
reg(regularization) – Contains 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.
dim(dimension) – Any 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.
add(addition) – Marks an addition to the text.
corr(correction) – Contains the correct form of an apparent erroneous passage.
damageContains an area of damage to the physical medium.
del(deletion) – 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(expansion) – Contains 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.
orig(original) – Contains material which is marked as following the original, rather than being normalized or corrected.
reg(regularization) – Contains 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.
num(number) – Numeric information in any form.
biblScope(scope of citation) – Defines 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.
dim(dimension) – Any 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.
Constraints
The attributes @min and @max are required when @confidence is present.
<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>
Declaration
<classSpec ident="att.ranging" module="MEI.shared" type="atts">
<desc>Groups attributes that describe a numerical range.</desc>
<attList org="group">
<attDef ident="atleast" usage="opt">
<desc>Gives a minimum estimated value for an approximate measurement.</desc>
<datatype maxOccurs="1" minOccurs="1">
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="atmost" usage="opt">
<desc>Gives a maximum estimated value for an approximate measurement.</desc>
<datatype maxOccurs="1" minOccurs="1">
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="min" usage="opt">
<desc>Where the measurement summarizes more than one observation or a range of values, supplies the minimum value observed.</desc>
<datatype maxOccurs="1" minOccurs="1">
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="max" usage="opt">
<desc>Where the measurement summarizes more than one observation or a range of values, supplies the maximum value observed.</desc>
<datatype maxOccurs="1" minOccurs="1">
<rng:data type="decimal"/>
</datatype>
</attDef>
<attDef ident="confidence" usage="opt">
<desc>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 maxOccurs="1" minOccurs="1">
<rng:ref name="data.CONFIDENCE" />
</datatype>
<constraintSpec ident="check_confidence" scheme="isoschematron">
<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>