-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwkb.py
352 lines (275 loc) · 10.1 KB
/
wkb.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
# -*- coding: utf-8 -*-
"""
Conversion Utils
"""
from struct import pack
BYTE_UINT = '<BI'
WKB_POINT_PRE = pack(BYTE_UINT, 1, 1)
WKB_POINTZ_PRE = pack(BYTE_UINT, 1, 1001)
WKB_POINTM_PRE = pack(BYTE_UINT, 1, 2001)
WKB_POINTZM_PRE = pack(BYTE_UINT, 1, 3001)
WKB_MULTI_POINT_PRE = pack(BYTE_UINT, 1, 4)
WKB_MULTI_POINT_Z_PRE = pack(BYTE_UINT, 1, 1004)
WKB_MULTI_POINT_M_PRE = pack(BYTE_UINT, 1, 2004)
WKB_MULTI_POINT_ZM_PRE = pack(BYTE_UINT, 1, 3004)
WKB_LINESTRING_PRE = pack(BYTE_UINT, 1, 2)
WKB_LINESTRINGZ_PRE = pack(BYTE_UINT, 1, 1002)
WKB_LINESTRINGM_PRE = pack(BYTE_UINT, 1, 2002)
WKB_LINESTRINGZM_PRE = pack(BYTE_UINT, 1, 3002)
WKB_MULTI_LINESTRING_PRE = pack(BYTE_UINT, 1, 5)
WKB_MULTI_LINESTRING_Z_PRE = pack(BYTE_UINT, 1, 1005)
WKB_MULTI_LINESTRING_M_PRE = pack(BYTE_UINT, 1, 2005)
WKB_MULTI_LINESTRING_ZM_PRE = pack(BYTE_UINT, 1, 3005)
WKB_POLY_PRE = pack(BYTE_UINT, 1, 3)
WKB_POLY_Z_PRE = pack(BYTE_UINT, 1, 1003)
WKB_POLY_M_PRE = pack(BYTE_UINT, 1, 2003)
WKB_POLY_ZM_PRE = pack(BYTE_UINT, 1, 3003)
WKB_MULTI_POLY_PRE = pack(BYTE_UINT, 1, 6)
WKB_MULTI_POLY_Z_PRE = pack(BYTE_UINT, 1, 1006)
WKB_MULTI_POLY_M_PRE = pack(BYTE_UINT, 1, 2006)
WKB_MULTI_POLY_ZM_PRE = pack(BYTE_UINT, 1, 3006)
EMPTY_B = b''
def _point_to_wkb(x, y):
"""
Building Block Point X, Y
"""
return pack('<2d', x, y)
# End point_to_wkb function
def _point_z_to_wkb(x, y, z):
"""
Building Block Point X, Y, Z
"""
return pack('<3d', x, y, z)
# End pointz_to_wkb function
def _point_m_to_wkb(x, y, m):
"""
Building Block Point X, Y, M
"""
return pack('<3d', x, y, m)
# End point_m_to_wkb function
def _point_zm_to_wkb(x, y, z, m):
"""
Building Block Point X, Y, Z, M
"""
return pack('<4d', x, y, z, m)
# End point_zm_to_wkb function
def _linear_ring_to_wkb(points):
"""
Building Block Linear Ring
"""
return pack('<I', len(points)) + EMPTY_B.join(
(_point_to_wkb(x, y) for x, y in points))
# End linear_ring_to_wkb function
def _linear_ring_z_to_wkb(points):
"""
Building Block Linear Ring Z
"""
return pack('<I', len(points)) + EMPTY_B.join(
(_point_z_to_wkb(x, y, z) for x, y, z in points))
# End linear_ring_z_to_wkb
def _linear_ring_m_to_wkb(points):
"""
Building Block Linear Ring M
"""
return pack('<I', len(points)) + EMPTY_B.join(
(_point_m_to_wkb(x, y, m) for x, y, m in points))
# End linear_ring_m_to_wkb
def _linear_ring_zm_to_wkb(points):
"""
Building Block Linear Ring ZM
"""
return pack('<I', len(points)) + EMPTY_B.join(
(_point_zm_to_wkb(x, y, z, m) for x, y, z, m in points))
# End linear_ring_zm_to_wkb
def point_to_wkb_point(x, y):
"""
Point to WKBPoint
"""
return WKB_POINT_PRE + _point_to_wkb(x, y)
# End point_to_wkb_point
def point_z_to_wkb_point_z(x, y, z):
"""
Point to WKBPointZ
"""
return WKB_POINTZ_PRE + _point_z_to_wkb(x, y, z)
# End point_z_to_wkb_point_z function
def point_m_to_wkb_point_m(x, y, m):
"""
Point to WKBPointM
"""
return WKB_POINTM_PRE + _point_m_to_wkb(x, y, m)
# End point_m_to_wkb_point_m function
def point_zm_to_wkb_point_zm(x, y, z, m):
"""
Point to WKBPointZM
:rtype: str
"""
return WKB_POINTZM_PRE + _point_zm_to_wkb(x, y, z, m)
# End point_zm_to_wkb_point_zm function
def multipoint_to_wkb_multipoint(points):
"""
Multipoint to WKBMultiPoint
"""
return (WKB_MULTI_POINT_PRE + pack('<I', len(points)) +
EMPTY_B.join((point_to_wkb_point(x, y) for x, y in points)))
# End multipoint_to_wkb_multipoint function
def multipoint_z_to_wkb_multipoint_z(points):
"""
Multipoint to WKBMultiPoint
"""
return (WKB_MULTI_POINT_Z_PRE + pack('<I', len(points)) +
EMPTY_B.join((point_z_to_wkb_point_z(x, y, z) for x, y, z in points)))
# End multipoint_z_to_wkb_multipoint_z function
def multipoint_m_to_wkb_multipoint_m(points):
"""
Multipoint to WKBMultiPoint
"""
return (WKB_MULTI_POINT_M_PRE + pack('<I', len(points)) +
EMPTY_B.join((point_m_to_wkb_point_m(x, y, m) for x, y, m in points)))
# End multipoint_m_to_wkb_multipoint_m function
def multipoint_zm_to_wkb_multipoint_zm(points):
"""
Multipoint to WKBMultiPoint
"""
return (WKB_MULTI_POINT_ZM_PRE + pack('<I', len(points)) +
EMPTY_B.join((point_zm_to_wkb_point_zm(x, y, z, m) for x, y, z, m in points)))
# End multipoint_z_to_wkb_multipoint_z function
def points_to_wkb_line_string(points):
"""
Points to WKB LineString
"""
return (WKB_LINESTRING_PRE + pack('<I', len(points)) +
EMPTY_B.join((_point_to_wkb(x, y) for x, y in points)))
# End points_to_wkb_line_string
def points_z_to_wkb_line_string_z(points):
"""
Points to WKB LineString Z
"""
return (WKB_LINESTRINGZ_PRE + pack('<I', len(points)) +
EMPTY_B.join((_point_z_to_wkb(x, y, z) for x, y, z in points)))
# End points_to_wkb_line_string
def points_m_to_wkb_line_string_m(points):
"""
Points to WKB LineString M
"""
return (WKB_LINESTRINGM_PRE + pack('<I', len(points)) +
EMPTY_B.join((_point_m_to_wkb(x, y, m) for x, y, m in points)))
# End points_to_wkb_line_string
def points_zm_to_wkb_line_string_zm(points):
"""
Points to WKB LineString ZM
"""
return (WKB_LINESTRINGZM_PRE + pack('<I', len(points)) +
EMPTY_B.join((
_point_zm_to_wkb(x, y, z, m) for x, y, z, m in points)))
# End point_zm_to_wkb_line_string_zm function
def point_lists_to_multi_line_string(point_lists):
"""
Point lists to WKB MultiLineString
"""
return (WKB_MULTI_LINESTRING_PRE + pack('<I', len(point_lists)) +
EMPTY_B.join((
points_to_wkb_line_string(ring) for ring in point_lists)))
# End point_lists_to_multi_line_String function
def point_lists_z_to_multi_line_string_z(point_lists):
"""
Point lists to WKB MultiLineString
"""
return (WKB_MULTI_LINESTRING_Z_PRE + pack('<I', len(point_lists)) +
EMPTY_B.join((
points_z_to_wkb_line_string_z(ring) for ring in point_lists)))
# End point_lists_z_to_multi_line_string_z function
def point_lists_m_to_multi_line_string_m(point_lists):
"""
Point lists to WKB MultiLineString
"""
return (WKB_MULTI_LINESTRING_M_PRE + pack('<I', len(point_lists)) +
EMPTY_B.join((
points_m_to_wkb_line_string_m(ring) for ring in point_lists)))
# End point_lists_m_to_multi_line_string_m function
def point_lists_zm_to_multi_line_string_zm(point_lists):
"""
Point lists to WKB MultiLineString
"""
return (WKB_MULTI_LINESTRING_ZM_PRE + pack('<I', len(point_lists)) +
EMPTY_B.join((
points_zm_to_wkb_line_string_zm(ring) for ring in point_lists)))
# End point_lists_m_to_multi_line_string_m function
def point_lists_to_wkb_polygon(ring_point_lists):
"""
Ring point lists should be lists of points representing poly rings.
"""
return (WKB_POLY_PRE + pack('<I', len(ring_point_lists)) +
EMPTY_B.join((
_linear_ring_to_wkb(ring) for ring in ring_point_lists)))
# End point_lists_to_wkb_polygon function
def point_lists_z_to_wkb_polygon_z(ring_point_lists):
"""
Ring point lists should be lists of points representing poly rings.
"""
return (WKB_POLY_Z_PRE + pack('<I', len(ring_point_lists)) +
EMPTY_B.join((
_linear_ring_z_to_wkb(ring) for ring in ring_point_lists)))
# End point_lists_z_to_wkb_polygon_z function
def point_lists_m_to_wkb_polygon_m(ring_point_lists):
"""
Ring point lists should be lists of points representing poly rings.
"""
return (WKB_POLY_M_PRE + pack('<I', len(ring_point_lists)) +
EMPTY_B.join((
_linear_ring_m_to_wkb(ring) for ring in ring_point_lists)))
# End point_lists_m_to_wkb_polygon_m function
def point_lists_zm_to_wkb_polygon_zm(ring_point_lists):
"""
Ring point lists should be lists of points representing poly rings.
"""
return (WKB_POLY_ZM_PRE + pack('<I', len(ring_point_lists)) +
EMPTY_B.join((
_linear_ring_zm_to_wkb(ring) for ring in ring_point_lists)))
# End point_lists_zm_to_wkb_polygon_zm function
def point_lists_to_wkb_multipolygon(polygon_ring_lists):
"""
This is a list (polygons) which are lists of rings which are lists of points
Point lists should be lists of points representing poly rings.
"""
num = pack('<I', len(polygon_ring_lists))
out = EMPTY_B
for point_list in polygon_ring_lists:
out += point_lists_to_wkb_polygon(point_list)
return WKB_MULTI_POLY_PRE + num + out
# End point_lists_to_wkb_polygon function
def point_lists_z_to_wkb_multipolygon_z(polygon_ring_lists):
"""
This is a list (polygons) which are lists of rings which are lists of points
Point lists should be lists of points representing poly rings.
"""
num = pack('<I', len(polygon_ring_lists))
out = EMPTY_B
for point_list in polygon_ring_lists:
out += point_lists_z_to_wkb_polygon_z(point_list)
return WKB_MULTI_POLY_Z_PRE + num + out
# End point_lists_z_to_wkb_multipolygon_z function
def point_lists_m_to_wkb_multipolygon_m(polygon_ring_lists):
"""
This is a list (polygons) which are lists of rings which are lists of points
Point lists should be lists of points representing poly rings.
"""
num = pack('<I', len(polygon_ring_lists))
out = EMPTY_B
for point_list in polygon_ring_lists:
out += point_lists_m_to_wkb_polygon_m(point_list)
return WKB_MULTI_POLY_M_PRE + num + out
# End point_lists_m_to_wkb_multipolygon_m function
def point_lists_zm_to_wkb_multipolygon_zm(polygon_ring_lists):
"""
This is a list (polygons) which are lists of rings which are lists of points
Point lists should be lists of points representing poly rings.
"""
num = pack('<I', len(polygon_ring_lists))
out = EMPTY_B
for point_list in polygon_ring_lists:
out += point_lists_zm_to_wkb_polygon_zm(point_list)
return WKB_MULTI_POLY_ZM_PRE + num + out
# End point_lists_zm_to_wkb_multipolygon_zm function
if __name__ == '__main__':
pass