🎛️ Raw State (Attributes)
study_area = BoundingBox(2.0, 2.0, 8.0, 6.0) study_area.width() # Resolves to 6.0 study_area.height() # Resolves to 4.0 study_area.area() # Resolves to 24.00
📐 Derived Output (Methods)
.width()
6.0
.height()
4.0
.area()
24.0