-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyshpLargeWriter.py
186 lines (172 loc) · 5.75 KB
/
pyshpLargeWriter.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
import cStringIO
import struct
import shapefile
import random
import time
class LargeWriter:
def __init__(self, filename=None, shapeType=1, hasShx=True):
self.filename = filename
self.hasShx = hasShx
# Count records for metadata
self.count = 0
# Maximum number of records before disk flush
self.max = 1000
self.started = False
self.minx = 0
self.miny = 0
self.maxx = 0
self.maxy = 0
self.numRecs = 0
self.tmpShp = cStringIO.StringIO()
if self.hasShx:
self.tmpShx = cStringIO.StringIO()
self.tmpDbf = cStringIO.StringIO()
self.shp = open("%s.shp" % self.filename, "wb")
if self.hasShx:
self.shx = open("%s.shx" % self.filename, "wb")
self.dbf = open("%s.dbf" % self.filename, "wb")
self.dbfHdrLen = 0
self.w = shapefile.Writer(shapeType)
def endcap(self):
"""First and last batches"""
self.started = True
self.tmpShp.seek(36)
self.xmin = struct.unpack("<d", self.tmpShp.read(8))[0]
self.ymin = struct.unpack("<d", self.tmpShp.read(8))[0]
self.xmax = struct.unpack("<d", self.tmpShp.read(8))[0]
self.ymax = struct.unpack("<d", self.tmpShp.read(8))[0]
self.tmpShp.seek(0)
if self.hasShx:
self.tmpShx.seek(0)
self.tmpDbf.seek(8)
# The length of the dbf header will not change
self.dbfHdrLen = struct.unpack("<H", self.tmpDbf.read(2))[0]
self.tmpDbf.seek(0)
self.shp.write(self.tmpShp.read())
if self.hasShx:
self.shx.write(self.tmpShx.read())
self.dbf.write(self.tmpDbf.read())
def batch(self):
self.started = True
# Update shx offsets
if self.hasShx:
self.tmpShx.seek(0,2)
shxsz = self.tmpShx.tell()
shxcur = 100
adder = self.shx.tell() / 2
self.tmpShx.seek(100)
while shxcur < shxsz:
offset = struct.unpack(">i", self.tmpShx.read(4))[0]
newOffset = adder + offset
self.tmpShx.seek(-4, 1)
self.tmpShx.write(struct.pack(">i", newOffset))
self.tmpShx.seek(8, 1)
shxcur = self.tmpShx.tell()
# Get shp bounding box
self.tmpShp.seek(36)
xmin = struct.unpack("<d", self.tmpShp.read(8))[0]
ymin = struct.unpack("<d", self.tmpShp.read(8))[0]
xmax = struct.unpack("<d", self.tmpShp.read(8))[0]
ymax = struct.unpack("<d", self.tmpShp.read(8))[0]
self.xmin = min([self.xmin, xmin])
self.ymin = min([self.ymin, ymin])
self.xmax = max([self.xmax, xmax])
self.ymax = max([self.ymax, ymax])
self.tmpShp.seek(100)
self.tmpShx.seek(100)
self.tmpDbf.seek(self.dbfHdrLen)
self.shp.write(self.tmpShp.read())
if self.hasShx:
self.shx.write(self.tmpShx.read())
self.dbf.write(self.tmpDbf.read())
def record(self, *recordList):
"""Count the records and save them"""
self.count += 1
self.numRecs += 1
apply(self.w.record, recordList)
if self.count >= self.max:
if self.hasShx:
self.w.save(shp=self.tmpShp, shx=self.tmpShx, dbf=self.tmpDbf)
else:
self.w.save(shp=self.tmpShp, dbf=self.tmpDbf)
if not self.started:
self.endcap()
else:
self.batch()
# Reset the buffers for the next batch
self.tmpShp = cStringIO.StringIO()
if self.hasShx:
self.tmpShx = cStringIO.StringIO()
self.tmpDbf = cStringIO.StringIO()
self.count = 0
def save(self):
self.shp.seek(0,2)
shpLength = self.shp.tell() / 2
self.shp.seek(24)
self.shp.write(struct.pack(">i", shpLength))
self.shp.seek(36)
self.shp.write(struct.pack("<4d", self.xmin,self.ymin,self.xmax,self.ymax))
if self.hasShx:
self.shx.seek(0,2)
shxLength = self.shx.tell() / 2
self.shx.seek(24)
self.shx.write(struct.pack(">i", shxLength))
self.shx.seek(36)
self.shx.write(struct.pack("<4d", self.xmin,self.ymin,self.xmax,self.ymax))
# update dbf record count
self.dbf.seek(4)
self.dbf.write(struct.pack("<L", self.numRecs))
self.shp.close()
if self.hasShx:
self.shx.close()
self.dbf.close()
def random_point():
"""returns a randomly generated point"""
x = random.uniform(-180,180)
y = random.uniform(-90,90)
return x,y
def progress(last, count, total):
"""Print percent completed"""
percent = int((count/(total*1.0))*100.0)
if percent % 10.0 == 0 and percent > last:
print "%s %% done - Shape %s/%s at %s" % (percent, count, total, time.asctime())
return percent
# Create a large shapefile writer with
# a filname and a shapefile type.
# 1=Point, 5=Polygon
lw = LargeWriter("giantShp", 1, hasShx=True)
#lw = LargeWriter("giantShp", 1, hasShx=False)
# Add some dbf fields
lw.w.field("ID", "C", "40")
lw.w.field("X", "C", "40")
lw.w.field("Y", "C", "40")
# Progress counter
status = 0
# Number of random points to write
total = 107374177
for i in range(total):
# Progress meter
status = progress(status, i, total)
# Generate a random point
x,y = random_point()
x1,y1 = random_point()
x2,y2 = random_point()
x3,y3 = random_point()
x4,y4 = random_point()
# Call the shapefile point() method
lw.w.point(x,y)
# Call the specialized record method
lw.record(i,x,y)
#lw.w.poly(parts=[[[x,y],[x1,y1],[x2,y2],[x3,y3],[x4,y4]]])
#lw.record(i,x,y)
#x,y = random_point()
#x1,y1 = random_point()
#x2,y2 = random_point()
#x3,y3 = random_point()
#x4,y4 = random_point()
#Call the shapefile poly() method
#lw.w.poly(parts=[[[x,y],[x1,y1],[x2,y2],[x3,y3],[x4,y4]]])
#Call the specialized record method
#lw.record(i,x,y)
# Special LargeWriter save method
lw.save()