@prefix bowe: . @prefix math: . @prefix humanbody: . @prefix xsd: . @prefix dce: . @prefix e: . @prefix rdfs: . <> dce:title """Weight Status rules"""@en; dce:creator """Hans Cools"""@en; dce:contributor """Jos De Roo"""@en; dce:publisher """Agfa Healthcare/Belgium"""@en; dce:description """Rule to calculate a weight status using adult body mass index."""@en; rdfs:comment """Using http://eulersharp.sourceforge.net/2003/03swap/bmi_rules.n3."""@en; dce:language """English"""@en. {?adult humanbody:hasBMI ?BMI. ?BMI math:lessThan "18.5"^^xsd:double.} => {?adult bowe:status bowe:underweight.}. {?adult humanbody:hasBMI ?BMI. ?BMI math:notLessThan "18.5"^^xsd:double; math:notGreaterThan "24.9"^^xsd:double.} => {?adult bowe:status bowe:normalWeight.}. {?adult humanbody:hasBMI ?BMI. ?BMI math:notLessThan "25"^^xsd:double; math:notGreaterThan "29.9"^^xsd:double.} => {?adult bowe:status bowe:overweight.}. {?adult humanbody:hasBMI ?BMI. ?BMI math:notLessThan "30"^^xsd:double.} => {?adult bowe:status bowe:obesity.}.