edsnlp.pipelines.misc.measures.patterns
CompositeSize
Bases: CompositeMeasure
Composite size measure. Supports the following units: - mm - cm - dm - m
Source code in edsnlp/pipelines/misc/measures/patterns.py
11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
mm = property(make_multi_getter('mm'))
class-attribute
cm = property(make_multi_getter('cm'))
class-attribute
dm = property(make_multi_getter('dm'))
class-attribute
m = property(make_multi_getter('m'))
class-attribute
Size
Bases: SimpleMeasure
Size measure. Supports the following units: - mm - cm - dm - m
Source code in edsnlp/pipelines/misc/measures/patterns.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
|
COMPOSITE = CompositeSize
class-attribute
UNITS = {'mm': {'prefix': 'mill?im', 'abbr': 'mm', 'value': 1}, 'cm': {'prefix': 'centim', 'abbr': 'cm', 'value': 10}, 'dm': {'prefix': 'decim', 'abbr': 'dm', 'value': 100}, 'm': {'prefix': 'metre', 'abbr': 'm', 'value': 1000}}
class-attribute
mm = property(make_simple_getter('mm'))
class-attribute
cm = property(make_simple_getter('cm'))
class-attribute
dm = property(make_simple_getter('dm'))
class-attribute
m = property(make_simple_getter('m'))
class-attribute
parse(int_part, dec_part, unit, infix=False)
Source code in edsnlp/pipelines/misc/measures/patterns.py
44 45 46 47 |
|
Weight
Bases: SimpleMeasure
Weight measure. Supports the following units: - mg - cg - dg - g - kg
Source code in edsnlp/pipelines/misc/measures/patterns.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|
COMPOSITE = None
class-attribute
UNITS = {'mg': {'prefix': 'mill?ig', 'abbr': 'mg', 'value': 1}, 'cg': {'prefix': 'centig', 'abbr': 'cg', 'value': 10}, 'dg': {'prefix': 'decig', 'abbr': 'dg', 'value': 100}, 'g': {'prefix': 'gram', 'abbr': 'g', 'value': 1000}, 'kg': {'prefix': 'kilo', 'abbr': 'kg', 'value': 1000000}}
class-attribute
mg = property(make_simple_getter('mg'))
class-attribute
cg = property(make_simple_getter('cg'))
class-attribute
dg = property(make_simple_getter('dg'))
class-attribute
g = property(make_simple_getter('g'))
class-attribute
kg = property(make_simple_getter('kg'))
class-attribute
parse(int_part, dec_part, unit, infix=False)
Source code in edsnlp/pipelines/misc/measures/patterns.py
75 76 77 78 |
|
Angle
Bases: SimpleMeasure
Angle measure. Supports the following units: - h
Source code in edsnlp/pipelines/misc/measures/patterns.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
COMPOSITE = None
class-attribute
UNITS = {'h': {'prefix': 'heur', 'abbr': 'h', 'value': 1}}
class-attribute
h = property(make_simple_getter('h'))
class-attribute
parse(int_part, dec_part, unit, infix=False)
Source code in edsnlp/pipelines/misc/measures/patterns.py
99 100 101 102 103 104 105 |
|