Import the Spatial Reference from OGC WKT (string)
(self, wkt)
| 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)" |
| 319 | capi.from_wkt(self.ptr, byref(c_char_p(force_bytes(wkt)))) |
| 320 | |
| 321 | def import_xml(self, xml): |
| 322 | "Import the Spatial Reference from an XML string." |