forked from gipong/shp2geojson.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
preprocess.js
333 lines (300 loc) · 9.48 KB
/
preprocess.js
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
/*
* Inspired by the shp.js , dbf.js by Mano Marks
*
* I found there were something wrong to show chinese characters from DBF file,
* so i added some code that is needed to deal with this problem.
*
* Created by Gipong <[email protected]>
*
*/
var geojsonData = {};
// Shapefile parser, following the specification at
// http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf
SHP = {
NULL: 0,
POINT: 1,
POLYLINE: 3,
POLYGON: 5
};
SHP.getShapeName = function(id) {
for (name in this) {
if (id === this[name]) {
return name;
}
}
};
SHPParser = function() {};
SHPParser.load = function(url, callback, returnData) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'arraybuffer';
xhr.onload = function() {
geojsonData['shp'] = new SHPParser().parse(xhr.response,url);
callback(geojsonData['shp'], returnData);
URL.revokeObjectURL(url);
};
xhr.onerror = onerror;
xhr.send(null);
};
SHPParser.prototype.parse = function(arrayBuffer,url) {
var o = {};
var dv = new DataView(arrayBuffer);
var idx = 0;
o.fileName = url;
o.fileCode = dv.getInt32(idx, false);
if (o.fileCode != 0x0000270a) {
throw (new Error("Unknown file code: " + o.fileCode));
}
idx += 6*4;
o.wordLength = dv.getInt32(idx, false);
o.byteLength = o.wordLength * 2;
idx += 4;
o.version = dv.getInt32(idx, true);
idx += 4;
o.shapeType = dv.getInt32(idx, true);
idx += 4;
o.minX = dv.getFloat64(idx, true);
o.minY = dv.getFloat64(idx+8, true);
o.maxX = dv.getFloat64(idx+16, true);
o.maxY = dv.getFloat64(idx+24, true);
o.minZ = dv.getFloat64(idx+32, true);
o.maxZ = dv.getFloat64(idx+40, true);
o.minM = dv.getFloat64(idx+48, true);
o.maxM = dv.getFloat64(idx+56, true);
idx += 8*8;
o.records = [];
while (idx < o.byteLength) {
var record = {};
record.number = dv.getInt32(idx, false);
idx += 4;
record.length = dv.getInt32(idx, false);
idx += 4;
try {
record.shape = this.parseShape(dv, idx, record.length);
} catch(e) {
console.log(e, record);
}
idx += record.length * 2;
o.records.push(record);
}
return o;
};
SHPParser.prototype.parseShape = function(dv, idx, length) {
var i=0, c=null;
var shape = {};
shape.type = dv.getInt32(idx, true);
idx += 4;
var byteLen = length * 2;
switch (shape.type) {
case SHP.NULL: // Null
break;
case SHP.POINT: // Point (x,y)
shape.content = {
x: dv.getFloat64(idx, true),
y: dv.getFloat64(idx+8, true)
};
break;
case SHP.POLYLINE: // Polyline (MBR, partCount, pointCount, parts, points)
case SHP.POLYGON: // Polygon (MBR, partCount, pointCount, parts, points)
c = shape.content = {
minX: dv.getFloat64(idx, true),
minY: dv.getFloat64(idx+8, true),
maxX: dv.getFloat64(idx+16, true),
maxY: dv.getFloat64(idx+24, true),
parts: new Int32Array(dv.getInt32(idx+32, true)),
points: new Float64Array(dv.getInt32(idx+36, true)*2)
};
idx += 40;
for (i=0; i<c.parts.length; i++) {
c.parts[i] = dv.getInt32(idx, true);
idx += 4;
}
for (i=0; i<c.points.length; i++) {
c.points[i] = dv.getFloat64(idx, true);
idx += 8;
}
break;
case 8: // MultiPoint (MBR, pointCount, points)
case 11: // PointZ (X, Y, Z, M)
case 13: // PolylineZ
case 15: // PolygonZ
case 18: // MultiPointZ
case 21: // PointM (X, Y, M)
case 23: // PolylineM
case 25: // PolygonM
case 28: // MultiPointM
case 31: // MultiPatch
throw new Error("Shape type not supported: "
+ shape.type + ':' +
+ SHP.getShapeName(shape.type));
default:
throw new Error("Unknown shape type at " + (idx-4) + ': ' + shape.type);
}
return shape;
};
/**
* @fileoverview Parses a .dbf file based on the xbase standards as documented
* here: http://www.clicketyclick.dk/databases/xbase/format/dbf.html
* @author Mano Marks
*/
// Creates global namespace.
DBF = {};
DBFParser = function() {};
DBFParser.load = function(url, encoding, callback, returnData) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'arraybuffer';
xhr.onload = function() {
var xhrText = new XMLHttpRequest();
var xhrTextResponse = '';
xhrText.open('GET', url);
xhrText.overrideMimeType('text/plain; charset='+encoding);
xhrText.onload = function() {
geojsonData['dbf'] = new DBFParser().parse(xhr.response,url,xhrText.responseText);
callback(geojsonData['dbf'], returnData);
URL.revokeObjectURL(url);
};
xhrText.send();
};
xhr.onerror = onerror;
xhr.send(null);
};
DBFParser.prototype.parse = function(arrayBuffer,src,response) {
var o = {};
var dv = new DataView(arrayBuffer);
var idx = 0;
o.fileName = src;
o.version = dv.getInt8(idx, false);
idx += 1;
o.year = dv.getUint8(idx) + 1900;
idx += 1;
o.month = dv.getUint8(idx);
idx += 1;
o.day = dv.getUint8(idx);
idx += 1;
o.numberOfRecords = dv.getInt32(idx, true);
idx += 4;
o.bytesInHeader = dv.getInt16(idx, true);
idx += 2;
o.bytesInRecord = dv.getInt16(idx, true);
idx += 2;
//reserved bytes
idx += 2;
o.incompleteTransation = dv.getUint8(idx);
idx += 1;
o.encryptionFlag = dv.getUint8(idx);
idx += 1;
// skip free record thread for LAN only
idx += 4;
// reserved for multi-user dBASE in dBASE III+
idx += 8;
o.mdxFlag = dv.getUint8(idx);
idx += 1;
o.languageDriverId = dv.getUint8(idx);
idx += 1;
// reserved bytes
idx += 2;
o.fields = [];
responseHeader = response.split('\r')[0];
responseHeader = responseHeader.slice(32, responseHeader.length);
var charString = [],
count = 0,
index = 0,
sum = (responseHeader.length+1)/32;
while(responseHeader.length > 0) {
while(count < 10) {
try {
if( encodeURIComponent(responseHeader[z]).match(/%[A-F\d]{2}/g) ) {
if( encodeURIComponent(responseHeader[z]).match(/%[A-F\d]{2}/g).length > 1 ) {
count += 2;
z++;
} else {
count += 1;
z++;
}
} else {
count += 1;
z++;
}
} catch(error) { // avoid malformed URI
count += 1;
z++;
}
}
charString.push(responseHeader.slice(0, 10).replace(/\0/g, ''))
responseHeader = responseHeader.slice(32, responseHeader.length);
}
while (true) {
var field = {};
var nameArray = [];
for (var i = 0, z=0; i < 10; i++) {
var letter = dv.getUint8(idx);
if (letter != 0) nameArray.push(String.fromCharCode(letter));
idx += 1;
}
field.name = charString[index++];
idx += 1;
field.type = String.fromCharCode(dv.getUint8(idx));
idx += 1;
// Skip field data address
idx += 4;
field.fieldLength = dv.getUint8(idx);
idx += 1;
//field.decimalCount = dv.getUint8(idx);
idx += 1;
// Skip reserved bytes multi-user dBASE.
idx += 2;
field.workAreaId = dv.getUint8(idx);
idx += 1;
// Skip reserved bytes multi-user dBASE.
idx += 2;
field.setFieldFlag = dv.getUint8(idx);
idx += 1;
// Skip reserved bytes.
idx += 7;
field.indexFieldFlag = dv.getUint8(idx);
idx += 1;
o.fields.push(field);
var test = dv.getUint8(idx);
// Checks for end of field descriptor array. Valid .dbf files will have this
// flag.
if (dv.getUint8(idx) == 0x0D) break;
}
idx += 1;
o.fieldpos = idx;
o.records = [];
responseText = response.split('\r')[1];
for (var i = 0; i < o.numberOfRecords; i++) {
responseText = responseText.slice(1, responseText.length);
var record = {};
for (var j = 0; j < o.fields.length; j++) {
var charString = [],
count = 0,
z = 0;
while(count < o.fields[j].fieldLength) {
try {
if( encodeURIComponent(responseText[z]).match(/%[A-F\d]{2}/g) ) {
if( encodeURIComponent(responseText[z]).match(/%[A-F\d]{2}/g).length > 1 ) {
count += 2;
z++;
} else {
count += 1;
z++;
}
} else {
count += 1;
z++;
}
} catch(error) { // avoid malformed URI
count += 1;
z++;
}
}
charString.push(responseText.slice(0, z).replace(/\0/g, ''))
responseText = responseText.slice(z, responseText.length);
record[o.fields[j].name] = charString.join('').trim();
}
o.records.push(record);
}
return o;
};