-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
395 lines (315 loc) · 12.7 KB
/
index.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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
const archiver = require('archiver');
const axios = require('axios');
const crypto = require('crypto');
const delay = require('delay');
const axiosCookieJarSupport = require('axios-cookiejar-support').wrapper;
const tough = require('tough-cookie');
const fs = require('fs').promises;
const fsOrig = require('fs');
const jar = new tough.CookieJar();
const http = axios.create({baseURL: '', withCredentials: true, jar});
axiosCookieJarSupport(http);
axios.defaults.withCredentials = true;
let regions = [
{ name: 'Belarus', id: ['51eddee57d77b23b40592429e96168b64a40f00101f901b9e6000000000000c0020b92030742656c61727573'] },
{ name: 'Ukraine', id: ['51fd07d977c38a3f40597dfff45d20684840f00101f90127eb000000000000c0020b92030ed0a3d0bad180d0b0d197d0bdd0b0'] },
{ name: 'Russia-MSK', id: ['51203f14b831cd42405962a79da2fcde4b40f00101f901fdfc26000000000092030cd09cd0bed181d0bad0b2d0b0', '518e09597566d4424059cf29774ec9d54b40f00101f90122c9000000000000920323d09cd0bed181d0bad0bed0b2d181d0bad0b0d18f20d0bed0b1d0bbd0b0d181d182d18c'] },
{ name: 'Russia-Rostov', id: ['5179999c9c62a244405966009c3d4fdd4740f00101f901664e010000000000920323d0a0d0bed181d182d0bed0b2d181d0bad0b0d18f20d0bed0b1d0bbd0b0d181d182d18c'] },
{ name: 'Russia-Chelyabinsk', id: ['51af132109a7324e4059a4ae367d44394b40f00101f901772f010000000000920325d0a7d0b5d0bbd18fd0b1d0b8d0bdd181d0bad0b0d18f20d0bed0b1d0bbd0b0d181d182d18c'] },
{ name: 'Russia-Chechnya', id: ['51b2c4a4a507de464059ce35d1d793a64540f00101f90135ad01000000000092030ad0a7d0b5d187d0bdd18f'] },
{ name: 'Russia-Dagestan', id: ['51bb0a6c8d478447405973f290d59a924540f00101f90134ad010000000000920310d094d0b0d0b3d0b5d181d182d0b0d0bd'] },
{ name: 'Russia-Ingushetia', id: ['51fa4a0d9c9d6f4640591f18650e82974540f00101f90144dd030000000000920312d098d0bdd0b3d183d188d0b5d182d0b8d18f'] }
];
const geoapifyKey = '';
const usgsLogin = '';
const usgsPassword = '';
(async () => {
await loginUSGS();
let dataFormatId = await getDataFormat();
try {
await fs.mkdir('repo');
} catch {}
try {
await fs.mkdir('release');
} catch {}
for(let region of regions) {
console.log('Downloading '+region.name);
let packName = 'DTED2-'+region.name+'.zip';
let dataDirHash = crypto.randomBytes(16).toString('hex');
let packUUID = crypto.randomUUID();
let regionDir = 'release/'+region.name;
let dataDir = regionDir+'/'+dataDirHash;
let manifestDir = regionDir+'/MANIFEST';
try {
await fs.mkdir(regionDir)
} catch {}
try {
await fs.mkdir(dataDir)
} catch {}
try {
await fs.mkdir(manifestDir)
} catch {}
let manifestFiles = [];
for(let id of region.id) {
let files = await getFilesList(id);
for(let file of files) {
if(!(await downloadFile(file, dataFormatId)))
continue;
let parts = file.split('/');
let dir = dataDir+'/'+parts[1];
try {
await fs.stat(dir);
} catch {
await fs.mkdir(dir);
}
await fs.copyFile('repo/'+parts[1]+'/'+parts[0]+'.dt2', dir+'/'+parts[0]+'.dt2');
manifestFiles.push(dataDirHash+'/'+parts[1]+'/'+parts[0]+'.dt2');
}
}
console.log('Creating datapackage '+region.name);
let manifestText = '<MissionPackageManifest version="2">\n' +
' <Configuration>\n' +
' <Parameter name="uid" value="'+packUUID+'"/>\n' +
' <Parameter name="name" value="'+packName+'"/>\n' +
' </Configuration>\n' +
' <Contents>\n';
let manifestFilesSet = new Set(manifestFiles); //Remove duplicates
for(let f of manifestFilesSet) {
manifestText += ' <Content ignore="false" zipEntry="'+f+'"/>\n';
}
manifestText += ' </Contents>\n' +
'</MissionPackageManifest>';
await fs.writeFile(manifestDir+'/manifest.xml', manifestText);
console.log('Packing datapackage '+region.name);
const output = fsOrig.createWriteStream('release/'+packName);
const archive = archiver('zip', {
zlib: { level: 9 }
});
archive.pipe(output);
archive.glob('**', {cwd:regionDir});
await archive.finalize();
await fs.rm(regionDir, { recursive: true, force: true })
}
console.log("Done");
process.exit(0);
// let box = [
// polygon[0][1], // Max Lat
// polygon[0][1], // Min Lat
// polygon[0][0], // Max Long
// polygon[0][0] // Min Long
// ];
//
// for(let i = 0; i < polygon.length; i++) {
// let item = polygon[i];
//
// if(box[0]<item[1])
// box[0] = item[1];
// else if(box[1]>item[1])
// box[1] = item[1];
//
// if(box[2]<item[0])
// box[2] = item[0];
// else if(box[3]>item[0])
// box[3] = item[0];
// }
//
// let boxPolygon = [
// [box[0], box[2]],
// [box[1], box[2]],
// [box[1], box[3]],
// [box[0], box[3]],
// ];
// let i = 0;
// let coordinates = boxPolygon.map(e => {
// return {
// c: i++,
// a: e[0],
// o: e[1]
// };
// });
// let searchBox = {"tab":1,"destination":2,"coordinates":coordinates,"format":"dd","dStart":"","dEnd":"","searchType":"Std","includeUnknownCC":"1","maxCC":100,"minCC":0,"months":["","0","1","2","3","4","5","6","7","8","9","10","11"],"pType":"polygon"}
//
// let resSave = await http.post('https://earthexplorer.usgs.gov/tabs/save', new URLSearchParams({ data: JSON.stringify(searchBox) }).toString());
//
// if(resSave.data!==1) {
//
// console.error('Cannot save search data '+resSave.data);
// process.exit(1);
// }
//
// let page = 1;
// for(;;) {
// let searchData = {
// datasetId: dataId[1],
// resultsPerPage: 100,
// pageNum: page
// }
//
// let resSearch = await http.post('https://earthexplorer.usgs.gov/scene/search', new URLSearchParams(searchData).toString());
//
// // Proccess resSearch.data
//
// let lastPage = resSearch.data.match(/<a id="(\d+)_([^"]+)" class="pageLink" tabindex="0" role="button">Last/i);
//
// if(lastPage!==null) {
// console.error('Cannot get search page');
// process.exit(1);
// }
//
// if(parseInt(lastPage[1], 10)<=page)
// break;
//
// page++;
// }
})();
async function getFilesList(region_id) {
try {
let resGeo = await http.get('https://api.geoapify.com/v2/place-details?id='+region_id+'&apiKey='+geoapifyKey);
let polygons = resGeo.data.features[0].geometry.coordinates;
if(resGeo.data.features[0].geometry.type==='MultiPolygon')
polygons = Array.prototype.concat.apply([], polygons);
let files = [];
for(let polygon of polygons) {
files = files.concat(getFilesFromPolygon(polygon));
for(let point of polygon) { //Add polygon borders (for the small areas)
files.push(getDTEDFile(point[1], point[0]))
}
}
return new Set(files);
}catch (e) {
console.error('Cannot get region data: '+e.toString());
process.exit(1);
}
}
function getFilesFromPolygon(polygon) {
let box = [
polygon[0][1], // Max Lat
polygon[0][1], // Min Lat
polygon[0][0], // Max Long
polygon[0][0] // Min Long
];
let files = [];
for(let i = 0; i < polygon.length; i++) {
let item = polygon[i];
if(box[0]<item[1])
box[0] = item[1];
else if(box[1]>item[1])
box[1] = item[1];
if(box[2]<item[0])
box[2] = item[0];
else if(box[3]>item[0])
box[3] = item[0];
}
for(let lat = Math.floor(box[1]); lat <= Math.ceil(box[0]); lat++) {
for(let lon = Math.floor(box[3]); lon <= Math.ceil(box[2]); lon++) {
if(!isPointInPolygon([lon, lat], polygon, box))
continue;
files.push(getDTEDFile(lat, lon));
}
}
return files;
}
// https://stackoverflow.com/questions/217578/how-can-i-determine-whether-a-2d-point-is-within-a-polygon
function isPointInPolygon(p, polygon, box) {
if (p[1] < box[1] || p[1] > box[0] || p[0] < box[3] || p[0] > box[2]) {
return false;
}
let isInside = false;
for (let i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
if ( (polygon[i][0] > p[0]) !== (polygon[j][0] > p[0]) &&
p[1] < (polygon[j][1] - polygon[i][1]) * (p[0] - polygon[i][0]) / (polygon[j][0] - polygon[i][0]) + polygon[i][1] ) {
isInside = !isInside;
}
}
return isInside;
}
async function downloadFile(file, dataFormatId) {
let item = file.split('/');
let outDir = 'repo/'+item[1];
let outFile = outDir+'/'+item[0]+'.dt2';
let fileId = 'SRTM1'+item[0].toUpperCase()+item[1].toUpperCase()+'V3';
try {
await fs.stat(outDir);
} catch {
await fs.mkdir(outDir);
}
try {
await fs.stat(outFile);
//Success
console.log('Skipped '+outFile);
return true;
} catch {}
console.log('Downloading file '+outFile);
try {
let resLink = await http.get('https://earthexplorer.usgs.gov/download/' + dataFormatId + '/' + fileId + '/', { responseType: 'arraybuffer'})
// console.log(resLink);
await fs.writeFile(outFile, resLink.data);
await delay(100);
} catch(e) {
console.error('File '+outFile+' download error: '+e.toString());
return false;
}
return true;
}
async function getDataFormat() {
console.log('Receiving data format...');
try {
let resDataId = await http.get('https://earthexplorer.usgs.gov/dataset/categories');
let dataId = resDataId.data.match(/for="coll_(.+?)">SRTM 1 Arc-Second Global<\/label>/i);
if (dataId === null) {
console.error('Cannot get data id');
process.exit(1);
}
console.log('Data id: '+dataId[1]);
let resDataFormatId = await http.get('https://earthexplorer.usgs.gov/scene/downloadoptions/'+dataId[1]+'/SRTM1N52E013V3');
let resultFormatted = resDataFormatId.data.replace(/\r?\n|\r/g, '').replace(/( +)/ig, ' ');
let dataFormatId = resultFormatted.match(/data-productId="([^"]+)" title="Download Product" >Download<\/button> <\/div> <div class="name"> DTED 1 Arc-second/i);
if(dataFormatId===null) {
console.error('Cannot get data format id');
process.exit(1);
}
console.log('Data format id: '+dataFormatId[1]);
return dataFormatId[1];
} catch (e) {
console.log('Data format error: '+e.toString());
process.exit(1);
}
}
async function loginUSGS() {
console.log('Logging in...');
try {
let resCSRF = await http.get('https://ers.cr.usgs.gov/login');
let csrf = resCSRF.data.match(/name="csrf" value="(.+?)"/i);
if (csrf === null) {
console.error('Cannot get CSRF token');
process.exit(1);
}
let loginData = {
username: usgsLogin,
password: usgsPassword,
csrf: csrf[1]
}
await http.post('https://ers.cr.usgs.gov/login', new URLSearchParams(loginData).toString()); // Will fail if httpCode != 200
} catch (e) {
console.log('Login error: '+e.toString());
process.exit(1);
}
}
// https://github.com/deptofdefense/AndroidTacticalAssaultKit-CIV/blob/1fb49280b8166fbb944dd1d7b6ddb748bfd2a257/atak/ATAK/app/src/main/java/com/atakmap/android/elev/dt2/Dt2FileWatcher.java#L228
function getDTEDFile(lat, lng) {
let rLat = '';
let rLng = '';
let lngIndex = Math.abs(Math.floor(lng));
rLng += lng < 0 ? "w" : "e";
if (lngIndex < 10)
rLng += "00";
else if (lngIndex < 100)
rLng += "0";
rLng += lngIndex;
let latIndex = Math.abs(Math.floor(lat));
rLat += lat < 0 ? "s" : "n";
if (latIndex < 10)
rLat += "0";
rLat += latIndex;
return rLat+'/'+rLng;
}