Return the authority code for the given string target node.
(self, target)
| 164 | ) |
| 165 | |
| 166 | def auth_code(self, target): |
| 167 | "Return the authority code for the given string target node." |
| 168 | return capi.get_auth_code( |
| 169 | self.ptr, target if target is None else force_bytes(target) |
| 170 | ) |
| 171 | |
| 172 | def clone(self): |
| 173 | "Return a clone of this SpatialReference object." |