Return the hexadecimal representation of the WKB (a string).
(self)
| 385 | |
| 386 | @property |
| 387 | def hex(self): |
| 388 | "Return the hexadecimal representation of the WKB (a string)." |
| 389 | return b2a_hex(self.wkb).upper() |
| 390 | |
| 391 | @property |
| 392 | def json(self): |
no outgoing calls