Пример #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 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(3 if self.hasz else 2).write(self)
Пример #3
0
 def hex(self):
     """
     Returns the WKB of this Geometry in hexadecimal form.  Please note
     that the SRID is 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(dim=3 if self.hasz else 2).write_hex(self)
Пример #4
0
 def hex(self):
     """
     Returns the WKB of this Geometry in hexadecimal form.  Please note
     that the SRID is 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(3 if self.hasz else 2).write_hex(self)
Пример #5
0
    def hex(self):
        """
<<<<<<< HEAD
        Returns the WKB of this Geometry in hexadecimal form.  Please note
=======
        Return the WKB of this Geometry in hexadecimal form. Please note
>>>>>>> 37c99181c9a6b95433d60f8c8ef9af5731096435
        that the SRID is 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(dim=3 if self.hasz else 2).write_hex(self)