(self, expression, srid, **extra)
| 617 | |
| 618 | class Transform(GeomOutputGeoFunc): |
| 619 | def __init__(self, expression, srid, **extra): |
| 620 | expressions = [ |
| 621 | expression, |
| 622 | self._handle_param(srid, "srid", int), |
| 623 | ] |
| 624 | if "output_field" not in extra: |
| 625 | extra["output_field"] = GeometryField(srid=srid) |
| 626 | super().__init__(*expressions, **extra) |
| 627 | |
| 628 | |
| 629 | class Translate(Scale): |
nothing calls this directly
no test coverage detected