示例#1
0
 def wkb(self):
     """
     Returns the WKB (Well-Known Binary) representation of this Geometry
     as a Python buffer.  SRID and Z values are not included, use the
     `ewkb` property instead.
     """
     return wkb_w().write(self)
示例#2
0
 def hex(self):
     """
     Returns the WKB of this Geometry in hexadecimal form.  Please note
     that the SRID and Z values are not included in this representation
     because it is not a part of the OGC specification (use the `hexewkb`
     property instead).
     """
     # A possible faster, all-python, implementation:
     #  str(self.wkb).encode('hex')
     return wkb_w().write_hex(self)