-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathexport-config.component.ts
75 lines (57 loc) · 2.21 KB
/
export-config.component.ts
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
import {Component, OnInit} from '@angular/core';
import {Router} from '@angular/router';
import {StorageService} from '../storage.service';
import {GCP, GcpsUtilsService, ImageGcp, Projection} from '../gcps-utils.service';
import * as FileSaver from 'file-saver';
@Component({
selector: 'app-export-config',
templateUrl: './export-config.component.html',
styleUrls: ['./export-config.component.scss']
})
export class ExportConfigComponent implements OnInit {
public imageGcps: ImageGcp[];
public gcps: GCP[];
public projection: Projection;
public extras: string[];
public replaceNanZ: boolean;
constructor(private router: Router, public storage: StorageService, private utils: GcpsUtilsService) {
if (typeof storage.imageGcps === 'undefined' ||
storage.imageGcps === null ||
storage.imageGcps.length === 0 ||
typeof storage.projection === 'undefined' ||
storage.projection === null) {
router.navigateByUrl('/');
return;
}
this.imageGcps = storage.imageGcps;
this.gcps = storage.gcps;
this.projection = storage.projection;
this.extras = utils.generateExtrasNames(this.imageGcps);
this.replaceNanZ = false;
}
ngOnInit(): void {
}
activate(): void{
window.dispatchEvent(new CustomEvent('enterLicense'));
}
private getTxtContent(): string {
let content = this.projection.str + '\n';
for (const img of this.imageGcps) {
const geoZ = (img.geoZ !== img.geoZ) && this.replaceNanZ ? 0 : img.geoZ;
content += `${img.geoX}\t${img.geoY}\t${geoZ}\t${img.imX}\t${img.imY}\t${img.imgName}\t${img.gcpName}\t${img.extras.join('\t')}`.trim() + '\n';
}
return content;
}
public exportTxt() {
if (this.storage.getLicense().demo){
window.dispatchEvent(new CustomEvent('enterLicense'));
return;
}
const content = this.getTxtContent();
const file = new File([content], 'gcp_list.txt', {type: 'text/plain;charset=utf-8'});
FileSaver.saveAs(file, 'gcp_list.txt');
}
public back() {
this.router.navigateByUrl('/gcps-map');
}
}