Import the Spatial Reference from the given user input string.
(self, user_input)
| 311 | capi.from_proj(self.ptr, proj) |
| 312 | |
| 313 | def import_user_input(self, user_input): |
| 314 | "Import the Spatial Reference from the given user input string." |
| 315 | capi.from_user_input(self.ptr, force_bytes(user_input)) |
| 316 | |
| 317 | def import_wkt(self, wkt): |
| 318 | "Import the Spatial Reference from OGC WKT (string)" |