本文介绍 django.contrib.gis.geos.WKBWriter.byteorder
的用法。
声明
byteorder
可以设置此属性以更改几何表示的字节顺序。
字节序值 | 说明 |
---|---|
0 | Big Endian(例如,与 RISC 系统兼容) |
1 | Little Endian(例如,与 x86 系统兼容) |
例子:
>>> from django.contrib.gis.geos import Point, WKBWriter
>>> wkb_w = WKBWriter()
>>> pnt = Point(1, 1)
>>> wkb_w.write_hex(pnt)
'0101000000000000000000F03F000000000000F03F'
>>> wkb_w.byteorder = 0
'00000000013FF00000000000003FF0000000000000'
相关用法
- Python Django WKBWriter.write_hex用法及代码示例
- Python Django WKBWriter.srid用法及代码示例
- Python Django WKBWriter.outdim用法及代码示例
- Python Django WKBWriter.write用法及代码示例
- Python Django WKBReader用法及代码示例
- Python Django WKTWriter.trim用法及代码示例
- Python Django WKTReader用法及代码示例
- Python Django WKTWriter.write用法及代码示例
- Python Django WKTWriter.precision用法及代码示例
- Python Wand negate()用法及代码示例
- Python Wand wavelet_denoise()用法及代码示例
- Python Wand local_contrast()用法及代码示例
- Python Wand sample()用法及代码示例
- Python Wand deskew()用法及代码示例
- Python Wand color()用法及代码示例
- Python Wand implode()用法及代码示例
- Python Wand adaptive_blur()用法及代码示例
- Python Wand unsharp_mask()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand polaroid()用法及代码示例
- Python Wand adaptive_sharpen()用法及代码示例
- Python Wand posterize()用法及代码示例
- Python Wand path_move()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand shave()用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.gis.geos.WKBWriter.byteorder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。