Return true if this field's SRID corresponds with a coordinate system that uses non-projected units (e.g., latitude/longitude).
(self, connection)
| 129 | return get_srid_info(self.srid, connection).units_name |
| 130 | |
| 131 | def geodetic(self, connection): |
| 132 | """ |
| 133 | Return true if this field's SRID corresponds with a coordinate |
| 134 | system that uses non-projected units (e.g., latitude/longitude). |
| 135 | """ |
| 136 | return get_srid_info(self.srid, connection).geodetic |
| 137 | |
| 138 | def get_placeholder_sql(self, value, compiler, connection): |
| 139 | """ |
no test coverage detected