-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRefPointDataAMS2.js
More file actions
1892 lines (1804 loc) · 77.6 KB
/
RefPointDataAMS2.js
File metadata and controls
1892 lines (1804 loc) · 77.6 KB
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
class RefPointDataAMS2 extends RefPointData {
/* constructor()
*
*/
constructor(mode) {
super(mode); // get functions from basic class
//this.refPoints = {};
this.gameName = 'AMS2';
this.initData();
}
initData(){
//Default
this.refPoints[9999999999] = new Array();
this.refPoints[9999999999] = this.getDefaultRefpoint(); // defined in class RefPointData
// fictional tracks
this.refPoints[8888888888] = new Array();
this.refPoints[8888888888] = this.getDefaultRefpointFictional();
// Default for idle DS server
this.refPoints[0] = new Array();
this.refPoints[0] = this.getDefaultRefpoint();
////AMS2 Tracks
//Adelaide
this.refPoints[827815091] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -34.928456
,"refLong": 138.618758
,"rotation": -1.55
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1
,"Name": "Adelaide"
,"AltNames": "Adelaide Adelaide_Modern"
,"Zoom": 16
,"MapInitLat": -34.928456
,"MapInitLong": 138.618758
,"Comment": ""
});
//Adelaide Historic 1988
this.refPoints[-559709709] = this.CopyObjectWithModifications(this.refPoints[827815091], {"Name": "Adelaide Historic 1988","AltNames":"Adelaide Adelaide_Historic","MapInitLat": -34.927166,"MapInitLong": 138.617828});
//V1.6.3.9
//Adelaide STT
this.refPoints[1565677554] = this.CopyObjectWithModifications(this.refPoints[827815091], {"Name": "Adelaide STT","AltNames":"Adelaide Adelaide_Modern_STT"});
//Azure Circuit
this.refPoints[832629329] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 43.73705
,"refLong": 7.427437
,"rotation": 126
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.978
,"cor_PosY_mul":0.985
,"Name": "Azure Circuit"
,"AltNames": "Azure_Circuit Azure_Circuit"
,"Zoom": 16
,"MapInitLat": 43.737186
,"MapInitLong": 7.425732
,"Comment": "discrepancies"
});
//Brands Hatch GP
this.refPoints[1534602052] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 51.36051
,"refLong": 0.261179
,"rotation": 2.1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":0.998
,"Name": "Brands Hatch GP"
,"AltNames": "BrandsHatch BrandsHatch_GP"
,"Zoom": 16
,"MapInitLat": 51.356786
,"MapInitLong": 0.262930
,"Comment": ""
});
//Brands Hatch Indy
this.refPoints[-572148012] = this.CopyObjectWithModifications(this.refPoints[1534602052], {"Name": "Brands Hatch Indy","AltNames":"BrandsHatch BrandsHatch_Indy","Zoom": 17,"MapInitLat": 51.359136,"MapInitLong": 0.26105});
//Cadwell Park
this.refPoints[1910889511] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 53.310311
,"refLong": -0.05949
,"rotation": -2.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":1
,"Name": "Cadwell Park"
,"AltNames": "CadwellPark CadwellPark"
,"Zoom": 16
,"MapInitLat": 53.308865
,"MapInitLong": -0.063534
,"Comment": "small discrepancies"
});
//Campo Grande
this.refPoints[2135405654] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -20.475932
,"refLong": -54.466071
,"rotation": 0.2
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.992
,"cor_PosY_mul":1.003
,"Name": "Campo Grande"
,"AltNames": "CampoGrande CampoGrande"
,"Zoom": 16
,"MapInitLat": -20.476112
,"MapInitLong": -54.465827
,"Comment": ""
});
//Cascavel
this.refPoints[-916478809] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -24.981055
,"refLong": -53.386346
,"rotation": -1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.999
,"cor_PosY_mul":1.003
,"Name": "Cascavel"
,"AltNames": "Cascavel4 Cascavel"
,"Zoom": 17
,"MapInitLat": -24.982412
,"MapInitLong": -53.384565
,"Comment": ""
});
//Curitiba
this.refPoints[844082431] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -25.447680
,"refLong": -49.195833
,"rotation": -1.5
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1.005
,"cor_PosY_mul":1.01
,"Name": "Curitiba"
,"AltNames": "Curitiba CuritibaInternacional"
,"Zoom": 16
,"MapInitLat": -25.449937
,"MapInitLong": -49.195733
,"Comment": ""
});
//Curitiba Outer
this.refPoints[-549646259] = this.CopyObjectWithModifications(this.refPoints[844082431], {"Name": "Curitiba Outer","AltNames":"Curitiba Curitiba_outer"});
//Curvelo Long
this.refPoints[-923996694] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -18.807352
,"refLong": -44.409001
,"rotation": 0.1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1.005
,"Name": "Curvelo Long"
,"AltNames": "Curvelo CurveloLong"
,"Zoom": 16
,"MapInitLat": -18.805342
,"MapInitLong": -44.408201
,"Comment": ""
});
//Curvelo Short
this.refPoints[-203742941] = this.CopyObjectWithModifications(this.refPoints[-923996694], {"Name": "Curvelo Short","AltNames":"Curvelo CurveloShort"});
//Donington GP
this.refPoints[1497365379] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 52.829917
,"refLong": -1.381361
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.999
,"cor_PosY_mul":0.9975
,"Name": "Donington GP"
,"AltNames": "Donington Donington_GP"
,"Zoom": 16
,"MapInitLat": 52.830756
,"MapInitLong": -1.375103
,"Comment": ""
});
//Donington National
this.refPoints[-865646115] = this.CopyObjectWithModifications(this.refPoints[1497365379], {"Name": "Donington National","AltNames":"Donington Donington_Nat"});
//Goiânia
this.refPoints[-438882031] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -16.718458
,"refLong": -49.193975
,"rotation": 0.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":0.992
,"Name": "Goiânia"
,"AltNames": "Goiania GoianiaMixed"
,"Zoom": 16
,"MapInitLat": -16.717864
,"MapInitLong": -49.192500
,"Comment": ""
});
//Goiânia External
this.refPoints[693994049] = this.CopyObjectWithModifications(this.refPoints[-438882031], {"Name": "Goiânia External","AltNames":"Goiania GoianiaOuter"});
//Goiânia Short
this.refPoints[-916412256] = this.CopyObjectWithModifications(this.refPoints[-438882031], {"Name": "Goiânia Short","AltNames":"Goiania GoianiaShort","Zoom": 17,"MapInitLat": -16.719984,"MapInitLong": -49.19113});
//Guapore
this.refPoints[2058166835] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -28.844471
,"refLong": -51.852602
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1.014
,"cor_PosY_mul":0.995
,"Name": "Guapore"
,"AltNames": "Guapore Guapore"
,"Zoom": 16
,"MapInitLat": -28.846355
,"MapInitLong": -51.852850
,"Comment": ""
});
//V1.6.3.9
//Guapore STT
this.refPoints[-1949748308] = this.CopyObjectWithModifications(this.refPoints[2058166835], {"Name": "Guapore STT","AltNames":"Guapore Guapore_STT"});
//Ibarra Autódromo Yahuarcocha
this.refPoints[2111076703] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 0.380338
,"refLong": -78.098315
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":1.007
,"Name": "Ibarra Autódromo Yahuarcocha"
,"AltNames": "Ibarra4 Ibarra2"
,"Zoom": 17
,"MapInitLat": 0.380725
,"MapInitLong": -78.094564
,"Comment": "small discrepancies"
});
//Ibarra Autódromo Yahuarcocha Reverse
this.refPoints[-676667056] = this.CopyObjectWithModifications(this.refPoints[2111076703], {"Name": "Ibarra Autódromo Yahuarcocha Reverse","AltNames":"Ibarra4 Ibarra_Reverse"});
//V1.6.4.2
//Ibarra Autódromo Yahuarcocha STT
this.refPoints[-254340281] = this.CopyObjectWithModifications(this.refPoints[2111076703], {"Name": "Ibarra Autódromo Yahuarcocha STT","AltNames":"Ibarra4 Ibarra_STT"});
//Imola
this.refPoints[731129913] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 44.344389
,"refLong": 11.714520
,"rotation": -0.05
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":0.999
,"Name": "Imola"
,"AltNames": "ImolaAMS2 Imola_GP_2018"
,"Zoom": 16
,"MapInitLat": 44.341112
,"MapInitLong": 11.712506
,"Comment": ""
});
//Imola Historic 1972
this.refPoints[1003427592] = this.CopyObjectWithModifications(this.refPoints[731129913], {"Name": "Imola Historic 1972","AltNames":"ImolaAMS2 Imola_GP_1972"});
//Imola Historic 1988
this.refPoints[1544603199] = this.CopyObjectWithModifications(this.refPoints[731129913], {"Name": "Imola Historic 1988","AltNames":"ImolaAMS2 Imola_GP_1988"});
//Imola Historic 2001
this.refPoints[-29732804] = this.CopyObjectWithModifications(this.refPoints[731129913], {"Name": "Imola Historic 2001","AltNames":"ImolaAMS2 Imola_GP_2001"});
//Interlagos
this.refPoints[-1478712571] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -23.702013
,"refLong": -46.695844
,"rotation": 0.2
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":1.004
,"Name": "Interlagos"
,"AltNames": "Interlagos Interlagos_GP"
,"Zoom": 16
,"MapInitLat": -23.701256
,"MapInitLong": -46.696486
,"Comment": ""
});
//Interlagos SCB - from V1.2.1.9
this.refPoints[420324528] = this.CopyObjectWithModifications(this.refPoints[-1478712571], {"Name": "Interlagos SCB","AltNames":"Interlagos Interlagos_SCB"});
//Interlagos Historic 1976
this.refPoints[1312214486] = this.CopyObjectWithModifications(this.refPoints[-1478712571], {"Name": "Interlagos Historic 1976","AltNames":"Interlagos Interlagos_Historic","refLat": -23.701977,"refLong": -46.69619,"cor_PosX_mul": 0.985});
//Interlagos Historic Outer
this.refPoints[-1704124105] = this.CopyObjectWithModifications(this.refPoints[1312214486], {"Name": "Interlagos Historic Outer","AltNames":"Interlagos Interlagos_Historic_Outer"});
//Interlagos 1991 - v1.5.2.6
this.refPoints[930258290] = this.CopyObjectWithModifications(this.refPoints[-1478712571], {
"Name": "Interlagos Historic 1991"
,"AltNames":"Interlagos Interlagos_1991"
,"refLat": -23.70202
,"refLong": -46.69621
,"rotation": -0.5
,"cor_PosX_mul": 0.975
,"cor_PosY_mul":1.0075
});
//Interlagos 1993 - v1.5.2.8
this.refPoints[1641699173] = this.CopyObjectWithModifications(this.refPoints[930258290], {"Name": "Interlagos Historic 1993","AltNames":"Interlagos Interlagos_1993"});
//Interlagos Kart One
this.refPoints[228315736] = this.CopyObjectWithModifications(this.refPoints[-1478712571], {
"refLat": -23.702023
,"refLong": -46.695884
,"rotation": -0.2
,"cor_PosX_mul":1.01
,"cor_PosY_mul":1.005
,"Name": "Interlagos Kart One"
,"AltNames":"Interlagos GP"
,"Zoom": 18
,"MapInitLat": -23.703726
,"MapInitLong":-46.693496
,"Comment": "discrepancies"
});
//Interlagos Kart Two
this.refPoints[870961348] = this.CopyObjectWithModifications(this.refPoints[228315736], {"Name": "Interlagos Kart Two","AltNames":""});
//Interlagos Kart Three
this.refPoints[1869056157] = this.CopyObjectWithModifications(this.refPoints[228315736], {"Name": "Interlagos Kart Three","AltNames":""});
//Jacarepaguá Historic 1988 - not existing anymore - added coordinates where it was in the past
this.refPoints[-89774641] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -22.976979
,"refLong": -43.394669
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1
,"Name": "Jacarepaguá Historic 1988"
,"AltNames": "Jacarepagua Jacarepagua_Historic"
,"Zoom": 17
,"MapInitLat": -22.976879
,"MapInitLong": -43.393929
,"fictional": true
,"Comment": "NA anymore"
});
//Jacarepaguá Historic 2005
this.refPoints[393495474] = this.CopyObjectWithModifications(this.refPoints[-89774641], {"Name": "Jacarepaguá Historic 2005","AltNames":"Jacarepagua Jacarepagua_2005"});
//Jacarepaguá Historic 2005 Oval
this.refPoints[-1081969582] = this.CopyObjectWithModifications(this.refPoints[-89774641], {"Name": "Jacarepaguá Historic 2005 Oval","AltNames":"Jacarepagua Jacarepagua_OVAL","MapInitLat":-22.975779});
//Jacarepaguá Historic 2005 SCB
this.refPoints[-467386624] = this.CopyObjectWithModifications(this.refPoints[-89774641], {"Name": "Jacarepaguá Historic 2005 SCB","AltNames":"Jacarepagua Jacarepagua_SCB","MapInitLong":-43.396529});
//Jacarepaguá Historic 2005 Short
this.refPoints[1891554116] = this.CopyObjectWithModifications(this.refPoints[-89774641], {"Name": "Jacarepaguá Historic 2005 Short","AltNames":"Jacarepagua Jacarepagua_SHORT","MapInitLong":-43.395809});
//Jerez Chicane
this.refPoints[1406264747] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 36.708457
,"refLong": -6.032549
,"rotation": -1.75
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.9975
,"cor_PosY_mul":1.002
,"Name": "Jerez Chicane"
,"AltNames": ""
,"Zoom": 16
,"MapInitLat": 36.708665
,"MapInitLong": -6.033030
,"Comment": ""
});
//Jerez Moto
this.refPoints[-1602971785] = this.CopyObjectWithModifications(this.refPoints[1406264747], {"Name": "Jerez Moto","AltNames":"Jerez Standard"});
//Jerez Historic 1988 - from V1.4.4.8
this.refPoints[-1548942089] = this.CopyObjectWithModifications(this.refPoints[1406264747], {"Name": "Jerez Historic 1988","AltNames":"Jerez GP"});
//Kansai GP
this.refPoints[1261622488] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 34.844384
,"refLong": 136.532731
,"rotation": -1.0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.999
,"cor_PosY_mul":0.998
,"Name": "Kansai GP"
,"AltNames": "Kansai Kansai_GP"
,"Zoom": 16
,"MapInitLat": 34.844069
,"MapInitLong": 136.533418
,"Comment": "small discrepancies"
});
//Kansai East
this.refPoints[530399487] = this.CopyObjectWithModifications(this.refPoints[1261622488], {"Name": "Kansai East","AltNames":"Kansai Kansai_East","MapInitLat": 34.842529,"MapInitLong": 136.540108});
//Kansai West
this.refPoints[85029775] = this.CopyObjectWithModifications(this.refPoints[1261622488], {"Name": "Kansai West","AltNames":"Kansai Kansai_West","Zoom": 17,"MapInitLat": 34.845769,"MapInitLong": 136.528438});
//Kansai Classic
this.refPoints[1035236174] = this.CopyObjectWithModifications(this.refPoints[1261622488], {"Name": "Kansai Classic","AltNames":"Kansai Kansai_Classic"});
//Kyalami 2019
this.refPoints[2018595322] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -25.997815
,"refLong": 28.068152
,"rotation": 0.03
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.992
,"cor_PosY_mul":0.987
,"Name": "Kyalami 2019"
,"AltNames": "Kyalami Kyalami_2019"
,"Zoom": 16
,"MapInitLat": -25.996806
,"MapInitLong": 28.067484
,"Comment": ""
});
//Kyalami Historic 1976 - the track layout difference between the historic and the present track is too big and areas of the old track are built up with houses - set it to fictional, but added coordinates where it was in the past
this.refPoints[-1384297883] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -25.992763
,"refLong": 28.06786
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1
,"Name": "Kyalami Historic 1976"
,"AltNames": "Kyalami Kyalami_Historic"
,"Zoom": 16
,"MapInitLat": -25.994356
,"MapInitLong": 28.068974
,"fictional": true
,"Comment": "NA anymore"
});
//Londrina Long
this.refPoints[-1959616750] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -23.281094
,"refLong": -51.167276
,"rotation": 0.2
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.987
,"cor_PosY_mul":0.985
,"Name": "Londrina Long"
,"AltNames": "Londrina Londrina_long"
,"Zoom": 17
,"MapInitLat": -23.281892
,"MapInitLong": -51.167368
,"Comment": "discrepancies"
});
//Londrina Short
this.refPoints[-1540556268] = this.CopyObjectWithModifications(this.refPoints[-1959616750], {"Name": "Londrina Short","AltNames":"Londrina Londrina_short"});
//Londrina Kart One
this.refPoints[1373891276] = this.CopyObjectWithModifications(this.refPoints[-1959616750], {"Name": "Londrina Kart One","AltNames":"Londrina LondrinaKart1","refLat": -23.281084,"refLong": -51.167289,"cor_PosY_mul": 1.01,"Zoom": 19,"MapInitLat": -23.281612,"MapInitLong": -51.161878});
//Londrina Kart Two
this.refPoints[16295271] = this.CopyObjectWithModifications(this.refPoints[1373891276], {"Name": "Londrina Kart Two","AltNames":"Londrina LondrinaKart2"});
//Montreal
this.refPoints[-1239363445] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 45.503808
,"refLong": -73.523765
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1.007
,"Name": "Montreal"
,"AltNames": "Montreal Montreal_Modern"
,"Zoom": 15
,"MapInitLat": 45.505605
,"MapInitLong": -73.524751
,"Comment": "small discrepancies"
});
//Montreal Historic 1988
this.refPoints[-696853932] = this.CopyObjectWithModifications(this.refPoints[-1239363445], {"Name": "Montreal Historic 1988","AltNames":"Montreal Montreal_Historic"});
//Montreal Historic 1991 - V1.5.2.0
this.refPoints[880948150] = this.CopyObjectWithModifications(this.refPoints[-1239363445], {"Name": "Montreal Historic 1991","AltNames":"Montreal Montreal_Historic_1991"});
//Ortona Kart One
this.refPoints[809214670] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 42.305351
,"refLong": 14.379913
,"rotation": 0.4
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":0.998
,"Name": "Ortona Kart One"
,"AltNames": "Ortona Ortona1"
,"Zoom": 18
,"MapInitLat": 42.304976
,"MapInitLong": 14.378702
,"Comment": ""
});
//Ortona Kart Two
this.refPoints[1549441566] = this.CopyObjectWithModifications(this.refPoints[809214670], {"Name": "Ortona Kart Two","AltNames":"Ortona Ortona_2"});
//Ortona Kart Three
this.refPoints[-1213903939] = this.CopyObjectWithModifications(this.refPoints[809214670], {"Name": "Ortona Kart Three","AltNames":"Ortona Ortona_3"});
//Ortona Kart Four
this.refPoints[59749392] = this.CopyObjectWithModifications(this.refPoints[809214670], {"Name": "Ortona Kart Four","AltNames":"Ortona Ortona4","MapInitLat": 42.305336});
//Oulton Park International
this.refPoints[-498735748] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 53.180045
,"refLong": -2.612829
,"rotation": -0.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.997
,"cor_PosY_mul":0.9992
,"Name": "Oulton Park International"
,"AltNames": "OultonPark OultonPark_International"
,"Zoom": 15
,"MapInitLat": 53.176808
,"MapInitLong": -2.616589
,"Comment": ""
});
//Oulton Park Fosters
this.refPoints[-92069206] = this.CopyObjectWithModifications(this.refPoints[-498735748], {"Name": "Oulton Park Fosters","AltNames":"OultonPark OultonPark_Fosters","Zoom": 16,"MapInitLat": 53.178898});
//Oulton Park Island
this.refPoints[1820168870] = this.CopyObjectWithModifications(this.refPoints[-498735748], {"Name": "Oulton Park Island","AltNames":"OultonPark OultonPark_Island"});
//Oulton Park Classic
this.refPoints[-914088887] = this.CopyObjectWithModifications(this.refPoints[-498735748], {"Name": "Oulton Park Classic","AltNames":"OultonPark OultonPark_Classic"});
//Santa Cruz do Sul
this.refPoints[1932830334] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -29.799978
,"refLong": -52.436404
,"rotation": -0.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1.035
,"cor_PosY_mul":1.04
,"Name": "Santa Cruz do Sul"
,"AltNames": "SantaCruz SantaCruzDoSul"
,"Zoom": 16
,"MapInitLat": -29.799883
,"MapInitLong": -52.436274
,"Comment": "discrepancies"
});
//Snetterton 300
this.refPoints[987592900] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 52.464919
,"refLong": 0.947226
,"rotation": 1.6
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.997
,"cor_PosY_mul":0.999
,"Name": "Snetterton 300"
,"AltNames": "Snetterton Snetterton_300"
,"Zoom": 16
,"MapInitLat": 52.464971
,"MapInitLong": 0.947056
,"Comment": ""
});
//Snetterton 200
this.refPoints[-1338478783] = this.CopyObjectWithModifications(this.refPoints[987592900], {"Name": "Snetterton 200","AltNames":"Snetterton Snetterton_200"});
//Snetterton 100
this.refPoints[-1470317805] = this.CopyObjectWithModifications(this.refPoints[987592900], {"Name": "Snetterton 100","AltNames":"Snetterton Snetterton_100","Zoom": 17,"MapInitLong": 0.942476});
//Spielberg GP
this.refPoints[735562025] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 47.219792
,"refLong": 14.763686
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.994
,"cor_PosY_mul":1
,"Name": "Spielberg GP"
,"AltNames": "Spielberg Spielberg_Modern"
,"Zoom": 16
,"MapInitLat": 47.223546
,"MapInitLong": 14.761707
,"Comment": "discrepancies"
});
//Spielberg Short
this.refPoints[1819432538] = this.CopyObjectWithModifications(this.refPoints[735562025], {"Name": "Spielberg Short","AltNames":"Spielberg Spielberg_Short","refLong": 14.763715,"cor_PosX_mul": 0.997,"cor_PosY_mul": 0.997,"Zoom": 17,"MapInitLat": 47.221266,"MapInitLong": 14.764347});
//Spielberg Historic 1974
this.refPoints[-213305159] = this.CopyObjectWithModifications(this.refPoints[735562025], {"Name": "Spielberg Historic 1974","AltNames":"Spielberg Spielberg_Vintage","refLat": 47.219763,"refLong": 14.763679,"cor_PosX_mul": 0.997,"cor_PosY_mul": 0.99,"MapInitLat": 47.223176,"MapInitLong": 14.760487});
//Spielberg Historic 1977
this.refPoints[-100668052] = this.CopyObjectWithModifications(this.refPoints[-213305159], {"Name": "Spielberg Historic 1977","AltNames":"Spielberg Spielberg_Historic"});
//V1.6.3.9
//Spielberg STT copy of Short layout
this.refPoints[1524591075] = this.CopyObjectWithModifications(this.refPoints[1819432538], {"Name": "Spielberg STT","AltNames":"Spielberg Spielberg_STT"});
//Tarumã Internacional
this.refPoints[2074495683] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -30.048717
,"refLong": -51.018292
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.992
,"cor_PosY_mul":0.99
,"Name": "Tarumã Internacional"
,"AltNames": "Taruma Taruma_Internacional"
,"Zoom": 17
,"MapInitLat": -30.048547
,"MapInitLong": -51.019394
,"Comment": "discrepancies"
});
//Tarumã Chicane
this.refPoints[-108853074] = this.CopyObjectWithModifications(this.refPoints[2074495683], {"Name": "Tarumã Chicane","AltNames":"Taruma Taruma_Chicane"});
//Velo Città
this.refPoints[1882187011] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -22.287702
,"refLong": -46.848099
,"rotation": -0.65
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":1.003
,"Name": "Velo Città"
,"AltNames": "VeloCitta VeloCitta1"
,"Zoom": 16
,"MapInitLat": -22.289251
,"MapInitLong": -46.848153
,"Comment": "small discrepancies"
});
//Velo Città Track Day
this.refPoints[1557615576] = this.CopyObjectWithModifications(this.refPoints[1882187011], {"Name": "Velo Città Track Day","AltNames":"VeloCitta VeloCittaTD"});
//Velo Città Club Day
this.refPoints[1956507207] = this.CopyObjectWithModifications(this.refPoints[1882187011], {"Name": "Velo Città Club Day","AltNames":"VeloCitta VeloCittaClubDay","Zoom": 17,"MapInitLat": -22.287711,"MapInitLong": -46.849323});
//Velopark 2017
this.refPoints[-1642426225] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -29.823389
,"refLong": -51.320824
,"rotation": -0.5
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1.04
,"cor_PosY_mul":1.044
,"Name": "Velopark 2017"
,"AltNames": "Velopark Velopark_2017"
,"Zoom": 16
,"MapInitLat": -29.823810
,"MapInitLong": -51.320110
,"Comment": ""
});
//Velopark 2010
this.refPoints[193535285] = this.CopyObjectWithModifications(this.refPoints[-1642426225], {"Name": "Velopark 2010","AltNames":"Velopark Velopark_2010"});
//Velopark 2017 STT
this.refPoints[-1732031247] = this.CopyObjectWithModifications(this.refPoints[-1642426225], {"Name": "Velopark 2017 STT","AltNames":"Velopark Velopark_2017_STT"});
//Virginia Full
this.refPoints[1063112912] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 36.56708
,"refLong": -79.209072
,"rotation": -1.075
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.999
,"cor_PosY_mul":1.002
,"Name": "VIRginia International Raceway Full"
,"AltNames": "Virginia Virginia_Full"
,"Zoom": 15
,"MapInitLat": 36.561228
,"MapInitLong": -79.206432
,"Comment": ""
});
//Virgina Grand
this.refPoints[-1592912773] = this.CopyObjectWithModifications(this.refPoints[1063112912], {"Name": "VIRginia International Raceway Grand","AltNames":"Virginia Virginia_Grand"});
//Virgina North
this.refPoints[2134032188] = this.CopyObjectWithModifications(this.refPoints[1063112912], {"Name": "VIRginia International Raceway North","AltNames":"Virginia Virginia_North","Zoom":16,"MapInitLat":36.564636});
//Virgina South
this.refPoints[-1235504884] = this.CopyObjectWithModifications(this.refPoints[1063112912], {"Name": "VIRginia International Raceway South","AltNames":"Virginia Virginia_South","Zoom":16,"MapInitLat":36.556187,"MapInitLong":-79.206856});
//Virgina Patriot
this.refPoints[1284894334] = this.CopyObjectWithModifications(this.refPoints[1063112912], {"Name": "VIRginia International Raceway Patriot","AltNames":"Virginia Virginia_Patriot","Zoom":17,"MapInitLat":36.558623,"MapInitLong":-79.207231});
// temporarily used dummy IDs till DS is updated
//Brasília Full / Autódromo de Brasília / Autódromo Internacional Nelson Piquet
this.refPoints[202837760] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -15.772805
,"refLong": -47.899622
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.98
,"cor_PosY_mul":1.025
,"Name": "Brasília Full"
,"AltNames": "Brasilia Brasilia_Full"
,"Zoom": 16
,"MapInitLat": -15.775946
,"MapInitLong": -47.899455
,"Comment": "Discrepancies"
});
//Brasília Outer
this.refPoints[1828328431] = this.CopyObjectWithModifications(this.refPoints[202837760], {"Name": "Brasília Outer","AltNames":"Brasilia Brasilia_Outer"});
//Granja Viana CopaSaoPauloStage2
this.refPoints[-939269561] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -23.604927
,"refLong": -46.836331
,"rotation": -0.5
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.99
,"cor_PosY_mul":1.01
,"Name": "Granja Viana CopaSaoPauloStage2"
,"AltNames": "Granja_Viana CopaSaoPauloStage2"
,"Zoom": 18
,"MapInitLat": -23.605089
,"MapInitLong": -46.836638
,"Comment": ""
});
//Granja Viana GranjaVianaKart101
this.refPoints[-844021865] = this.CopyObjectWithModifications(this.refPoints[-939269561], {"Name": "Granja Viana GranjaVianaKart101","AltNames":"Granja_Viana GranjaVianaKart101"});
//Granja Viana GranjaVianaKart102
this.refPoints[553029608] = this.CopyObjectWithModifications(this.refPoints[-939269561], {"Name": "Granja Viana GranjaVianaKart102","AltNames":"Granja_Viana GranjaVianaKart102"});
//Granja Viana GranjaVianaKart121
this.refPoints[1153901510] = this.CopyObjectWithModifications(this.refPoints[-939269561], {"Name": "Granja Viana GranjaVianaKart121","AltNames":"Granja_Viana GranjaVianaKart121"});
//Cascais (Estoril)
this.refPoints[1650761166] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 38.750455
,"refLong": -9.393799
,"rotation": 0.25
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":1.002
,"Name": "Cascais"
,"AltNames": "Cascais GP"
,"Zoom": 16
,"MapInitLat": 38.750706
,"MapInitLong": -9.393352
,"Comment": ""
});
//Cascais Alternate - from V1.2.1.6
this.refPoints[-1015082583] = this.CopyObjectWithModifications(this.refPoints[1650761166], {"Name": "Cascais Alternate","AltNames":"Cascais Cascais_Alternate"});
//Cascais Historic 1988 - from V1.4.4.8
this.refPoints[-869897529] = this.CopyObjectWithModifications(this.refPoints[1650761166], {"Name": "Cascais Historic 1988","AltNames":"Cascais Cascais_1988"});
//Bathurst 2020
this.refPoints[1080325116] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -33.448739
,"refLong": 149.54617
,"rotation": 1.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.998
,"cor_PosY_mul":1.003
,"Name": "Bathurst 2020"
,"AltNames": "Bathurst Bathurst_2020"
,"Zoom": 15
,"MapInitLat": -33.448809
,"MapInitLong": 149.555024
,"Comment": "Discrepancies"
});
//Bathurst 1983
this.refPoints[-620880244] = this.CopyObjectWithModifications(this.refPoints[1080325116], {"Name": "Bathurst 1983","AltNames":"Bathurst Bathurst_1983"});
//Hockenheim
this.refPoints[-435924753] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 49.328901
,"refLong": 8.565022
,"rotation": 0.35
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1
,"Name": "Hockenheim"
,"AltNames": "Hockenheim GP"
,"Zoom": 16
,"MapInitLat": 49.329718
,"MapInitLong": 8.574300
,"Comment": ""
});
//Hockenheim National
this.refPoints[-327427534] = this.CopyObjectWithModifications(this.refPoints[-435924753], {"Name": "Hockenheim National","AltNames":"","MapInitLong":8.5725});
//Hockenheim Short A
this.refPoints[239659483] = this.CopyObjectWithModifications(this.refPoints[-435924753], {"Name": "Hockenheim Short A","AltNames":"Hockenheim Short_A","MapInitLat":49.329058,"MapInitLong":8.56877});
//Hockenheim Short B
this.refPoints[230784137] = this.CopyObjectWithModifications(this.refPoints[-435924753], {"Name": "Hockenheim Short B","AltNames":"Hockenheim Short_B","MapInitLat":49.329058,"MapInitLong":8.56877});
//Hockenheim Historic 2001
this.refPoints[-108270200] = this.CopyObjectWithModifications(this.refPoints[-435924753], {"Name": "Hockenheim Historic 2001","AltNames":"Hockenheim GP_2001","Zoom":15,"MapInitLat":49.332988,"MapInitLong":8.58105});
//Hockenheim Historic 1988
this.refPoints[534374248] = this.CopyObjectWithModifications(this.refPoints[-108270200], {"Name": "Hockenheim Historic 1988","AltNames":"Hockenheim GP_1988"});
//Hockenheim Historic 1988 Short
this.refPoints[-543681041] = this.CopyObjectWithModifications(this.refPoints[-108270200], {"Name": "Hockenheim Historic 1988 Short","AltNames":"Hockenheim Hockenheim_1988_short","Zoom":16,"MapInitLat":49.328698,"MapInitLong":8.56829});
//Hockenheim Historic 1977
this.refPoints[473366003] = this.CopyObjectWithModifications(this.refPoints[-108270200], {"Name": "Hockenheim Historic 1977","AltNames":"Hockenheim GP_1977"});
//Hockenheim Rallycross - 1.4.9.7 - same Track ID as in pcars2
this.refPoints[761864750] = this.CopyObjectWithModifications(this.refPoints[-435924753], {"Name": "Hockenheim Rallycross","AltNames":"Hockenheim GP","Zoom":17,"MapInitLat":49.327448,"MapInitLong":8.56839});
//V1.6.3.9
//Hockenheim STT - copy of Short A layout
this.refPoints[-1567974516] = this.CopyObjectWithModifications(this.refPoints[239659483], {"Name": "Hockenheim STT","AltNames":"Hockenheim Hockenheim_STT"});
//Silverstone GP
this.refPoints[-931849903] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 52.071259
,"refLong": -1.016689
,"rotation": -1.55
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.997
,"cor_PosY_mul":0.9995
,"Name": "Silverstone GP"
,"AltNames": "Silverstone Silverstone_GP"
,"Zoom": 15
,"MapInitLat": 52.071727
,"MapInitLong": -1.015736
,"Comment": ""
});
//Silverstone Historic 2001
this.refPoints[509991425] = this.CopyObjectWithModifications(this.refPoints[-931849903], {"Name": "Silverstone Historic 2001","AltNames":"Silverstone Silverstone_2001"});
//Silverstone Historic 1991
this.refPoints[-797317755] = this.CopyObjectWithModifications(this.refPoints[-931849903], {"Name": "Silverstone Historic 1991","AltNames":"Silverstone Silverstone_1991","MapInitLat":52.071277});
//Silverstone Historic 1975
this.refPoints[-526206945] = this.CopyObjectWithModifications(this.refPoints[-797317755], {"Name": "Silverstone Historic 1975","AltNames":"Silverstone Silverstone_1975","MapInitLat":52.071277});
//Silverstone Historic 1975 No Chicane
this.refPoints[-533867030] = this.CopyObjectWithModifications(this.refPoints[-797317755], {"Name": "Silverstone Historic 1975 No Chicane","AltNames":"Silverstone Silverstone_1975_No_Chicane"});
//Silverstone National Historic 2001
this.refPoints[-507834810] = this.CopyObjectWithModifications(this.refPoints[-931849903], {"Name": "Silverstone National Historic 2001","AltNames":"Silverstone Silverstone_2001_National","Zoom":16,"MapInitLat":52.075957});
//Silverstone International Historic 2001
this.refPoints[1648317775] = this.CopyObjectWithModifications(this.refPoints[-931849903], {"Name": "Silverstone International Historic 2001","AltNames":"Silverstone Silverstone_2001_International","MapInitLat":52.074607});
//Silverstone National
this.refPoints[-1061474453] = this.CopyObjectWithModifications(this.refPoints[-931849903], {"Name": "Silverstone National","AltNames":"Silverstone Silverstone_Natl_2019","Zoom":16,"MapInitLat":52.076347});
//Silverstone International
this.refPoints[964004535] = this.CopyObjectWithModifications(this.refPoints[-931849903], {"Name": "Silverstone International","AltNames":"Silverstone Silverstone_Intl_2019","MapInitLat":52.068097});
//Buskerud Long
this.refPoints[-1786068114] = this.CopyObjectWithModifications(this.refPoints[8888888888],
{
//"refLat": -22.976979
//,"refLong": -43.394669
//,
"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1
,"Name": "Buskerud Long"
,"AltNames": "Buskerud Buskerud_Long"
,"Zoom": 17
,"MapInitLat": 40.998954
,"MapInitLong": -113.566703
,"fictional": true
,"Comment": ""
});
//Buskerud Short
this.refPoints[2097280990] = this.CopyObjectWithModifications(this.refPoints[-1786068114], {"Name": "Buskerud Short","AltNames":"Buskerud Buskerud_Short","MapInitLat":40.998344});
//Speedland Kart Center 1
this.refPoints[756011139] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": -23.532388
,"refLong": -46.584453
,"rotation": -0.5
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":1.015
,"cor_PosY_mul":1.002
,"Name": "Speedland 1"
,"AltNames": "Speedland Speedland1"
,"Zoom": 19
,"MapInitLat": -23.532057
,"MapInitLong": -46.584825
,"Comment": "WIP"
});
//Speedland Kart Center 2
this.refPoints[-588458518] = this.CopyObjectWithModifications(this.refPoints[756011139], {"Name": "Speedland 2","AltNames":"Speedland Speedland2"});
//Speedland Kart Center 3
this.refPoints[-327486946] = this.CopyObjectWithModifications(this.refPoints[756011139], {"Name": "Speedland 3","AltNames":"Speedland Speedland3"});
//Speedland Kart Center 4
this.refPoints[-1941017299] = this.CopyObjectWithModifications(this.refPoints[756011139], {"Name": "Speedland 4","AltNames":"Speedland Speedland4"});
//Nürburgring GP 2020
this.refPoints[899109770] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 50.332773
,"refLong": 6.943377
,"rotation": -0.75
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.999
,"cor_PosY_mul":0.9995
,"Name": "Nürburgring GP 2020"
,"AltNames": "Nurburgring_2020 Nurb_GP_2020"
,"Zoom": 15
,"MapInitLat": 50.331144
,"MapInitLong": 6.940467
,"Comment": ""
});
//Nürburgring GP 2025 - V1.6.5.8
this.refPoints[-741729925] = this.CopyObjectWithModifications(this.refPoints[899109770], {"Name": "Nürburgring GP 2025","AltNames":"Nurburgring_2025 Nurb_GP_2025"});
//Nürburgring Sprint 2020
this.refPoints[1133983668] = this.CopyObjectWithModifications(this.refPoints[899109770], {"Name": "Nürburgring Sprint 2020","AltNames":"Nurburgring_2020 Nurb_GP_2020_Sprint","Zoom":16,"MapInitLat":50.333534,"MapInitLong":6.943427});
//Nürburgring Sprint S 2020
this.refPoints[1819021861] = this.CopyObjectWithModifications(this.refPoints[1133983668], {"Name": "Nürburgring Sprint S 2020","AltNames":"Nurburgring_2020 Nurb_GP_2020_Sprint_S"});
//Nürburgring Veedol 2020
this.refPoints[-581740816] = this.CopyObjectWithModifications(this.refPoints[899109770], {"Name": "Nürburgring Veedol 2020","AltNames":"Nurburgring_2020 Nurb_GP_2020_Veedol"});
//Nürburgring RX - 1.4.9.8
this.refPoints[-1012344423] = this.CopyObjectWithModifications(this.refPoints[899109770], {"Name": "Nürburgring RX","AltNames":"Nurburgring_2020 RX","Zoom":17,"MapInitLat":50.325774,"MapInitLong":6.936487});
//Nordschleife 2020
this.refPoints[884472481] = this.CopyObjectWithModifications(this.refPoints[899109770],
{
"rotation": -0.815
,"cor_PosX_mul":0.9979
,"cor_PosY_mul":0.9996
,"Name": "Nordschleife 2020"
,"AltNames": "Nurburgring_2020 Nordschleife_2020"
,"Zoom": 13
,"MapInitLat": 50.359101
,"MapInitLong": 6.962529
});
//Nordschleife 2020 24h
this.refPoints[-472366150] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Nordschleife 2020 24h","AltNames":"Nurburgring_2020 Nordschleife_2020_24hr","MapInitLat":50.353881});
//Nordschleife 2025 - V1.6.5.8
this.refPoints[-1789057785] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Nordschleife 2025","AltNames":"Nurburgring_2025 Nordschleife_2025"});
//Nordschleife 2025 Tourist - V1.6.5.85
this.refPoints[-1841018106] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Nordschleife 2025 Tourist","AltNames":"Nurburgring_2020 Nordschleife_2025_tourist"});
//Nordschleife 2025 24h - V1.6.5.8
this.refPoints[-864856074] = this.CopyObjectWithModifications(this.refPoints[-472366150], {"Name": "Nordschleife 2025 24h","AltNames":"Nurburgring_2025 Nordschleife_2025_24hr"});
//Gesamtstrecke Historic 1971
this.refPoints[-1099915987] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Gesamtstrecke Historic 1971","AltNames":"Nurburgring_2020 Nurb_1971_Gesamt","MapInitLat":50.34988});
//Nordschleife Historic 1971
this.refPoints[399001429] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Nordschleife Historic 1971","AltNames":"Nurburgring_2020 Nurb_1971_Nords"});
//Südschleife Historic 1971
this.refPoints[199279675] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Südschleife Historic 1971","AltNames":"Nurburgring_2020 Nurb_1971_Suds","Zoom":14,"MapInitLat":50.32758,"MapInitLong":6.93579});
//V1.5.5.8
//Betonschleife Historic 1971
this.refPoints[-1999809693] = this.CopyObjectWithModifications(this.refPoints[884472481], {"Name": "Betonschleife Historic 1971","AltNames":"Nurburgring_2020 Nurb_1971_Beton","Zoom":16,"MapInitLat":50.33496,"MapInitLong":6.94696});
//Spa-Francorchamps 2020
this.refPoints[-1262750090] = this.CopyObjectWithModifications(this.refPoints[9999999999],
{
"refLat": 50.437348
,"refLong": 5.967998
,"rotation": -2.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul":0.9965
,"cor_PosY_mul":0.9995
,"Name": "Spa-Francorchamps 2020"
,"AltNames": "SpaFrancorchamps Spa_Francorchamps_2020"
,"Zoom": 15
,"MapInitLat": 50.436800
,"MapInitLong": 5.970570
,"Comment": ""
});
//Spa-Francorchamps Historic 1993
this.refPoints[1283905272] = this.CopyObjectWithModifications(this.refPoints[-1262750090], {"Name": "Spa-Francorchamps Historic 1993","AltNames":"SpaFrancorchamps Spa_Francorchamps_1993"});
//V1.4
//Spa-Francorchamps 2022
this.refPoints[775712153] = this.CopyObjectWithModifications(this.refPoints[-1262750090], {"Name": "Spa-Francorchamps 2022","AltNames":"SpaFrancorchamps Spa_Francorchamps_2022"});
//Spa-Francorchamps RX - V1.5.0.0
this.refPoints[-1531498465] = this.CopyObjectWithModifications(this.refPoints[-1262750090], {"Name": "Spa-Francorchamps RX","AltNames":"SpaFrancorchamps Spa_Francorchamps_2022_RX","Zoom":17,"MapInitLat":50.44302,"MapInitLong":5.97125});
//Spa-Francorchamps 2005 - V1.6.8.2
this.refPoints[-1017131847] = this.CopyObjectWithModifications(this.refPoints[-1262750090], {"Name": "Spa-Francorchamps 2005","AltNames":"SpaFrancorchamps Spa_Francorchamps_2005"});
//V1.4.2.9
//Spa-Francorchamps 1970