| 74 | |
| 75 | |
| 76 | class Extent3D(GeoAggregate): |
| 77 | name = "Extent3D" |
| 78 | is_extent = "3D" |
| 79 | |
| 80 | def __init__(self, expression, **extra): |
| 81 | super().__init__(expression, output_field=ExtentField(), **extra) |
| 82 | |
| 83 | def convert_value(self, value, expression, connection): |
| 84 | return connection.ops.convert_extent3d(value) |
| 85 | |
| 86 | |
| 87 | class MakeLine(GeoAggregate): |
no outgoing calls