-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass_reference_points.js
1495 lines (1392 loc) · 65 KB
/
class_reference_points.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
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
/// Reference Object
// CLASS of RefPoints
function Refpoint(circuit_id)
{
// console.log ("RefPoint - Parameter: " , circuit_id);
this.circuit_id = circuit_id;
this.Lat = undefined;
this.Long = undefined;
this.Rot = undefined;
this.cuircit_name = undefined;
this.aRPs = undefined; // object refpoints
this.gameName = 'PCARS1&2';
var aRefPoints = new Array();
//static information
//Default
aRefPoints[9999999999] = new Array();
aRefPoints[9999999999] =
{
"refLat": 51.500657 // GPS coords of the zero point, where X=0 and Z=0
,"refLong": -0.071587
,"rotation": 0 // rotation correction angle in degree anticlockwise, negative value means clockwise
,"cor_r_Long": 0 // earth radius correction value for east/west calculation in millimeter
,"cor_r_Lat": 0 // earth radius correction value for north/south calculation in millimeter
,"cor_PosX_mul": 1 // correction multiplier for PosX on input data before calculation / the multipliers have a similar result as the cor_r_xxx values, but help better for tracks with a rotation error
,"cor_PosY_mul": 1 // correction multiplier for PosY on input data before calculation
,"Name": "Slightly Mad Studios Ltd" // real name of the circuit in DS API
//,"Name2": "" // real name of the circuit in Game API, if it differs from DS API Name
,"AltNames":"" // a csv list of additonal names in several APIs CREST1/CREST2/shared memory ...
,"Zoom": 19 // wanted zoom level for initial google map
,"MapInitLat": 51.500657 // google map initialization coords
,"MapInitLong": -0.071587
,"fictional": false
,"Comment": "Default"
,"game_name": this.gameName
};
//Default for idle DS server
aRefPoints[0] = CopyObjectWithModifications(aRefPoints[9999999999],{});
//Default for fictional tracks
aRefPoints[8888888888] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 40.997664
,"refLong": -113.566253
,"Name": "Salt Lake USA"
,"Zoom": 15
,"MapInitLat": 40.997664
,"MapInitLong": -113.566253
,"fictional": true
,"Comment": "Default for fictional tracks"
});
//Hockenheim GP
aRefPoints[1695182971] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 49.329747 //49.329738
,"refLong": 8.574295
,"rotation": 0.3 //0.35
,"cor_r_Long": 0 //30000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.9965
,"cor_PosY_mul": 1.001
,"Name": "Hockenheim GP"
,"Name2": ""
,"AltNames": "Hockenheimring Grand Prix" // a csv list of additonal/alternative names from several APIs CREST1/CREST2/shared memory ... //"mTrackLocation":"Hockenheimring","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 49.329718
,"MapInitLong": 8.574300
,"Comment": "finished"
});
//Hockenheim Short
aRefPoints[1768660198] = CopyObjectWithModifications(aRefPoints[1695182971],
{
"Name": "Hockenheim Short"
,"Name2": ""
,"AltNames": "Hockenheimring Short"
,"MapInitLat": 49.328991
,"MapInitLong": 8.568469
});
//Hockenheim National
aRefPoints[-1977142985] = CopyObjectWithModifications(aRefPoints[1695182971],
{
"Name": "Hockenheim National"
,"Name2": ""
,"AltNames": "Hockenheimring National"
,"MapInitLat": 49.329796
,"MapInitLong": 8.571180
});
//Hockenheim Rallycross
aRefPoints[761864750] = CopyObjectWithModifications(aRefPoints[1695182971],
{
"Name": "Hockenheim Rallycross"
,"Name2": ""
,"AltNames": "Hockenheim Short,Hockenheimring Short" //"mTrackLocation":"Hockenheim","mTrackVariation":"Short" - Bug in Shared Memory
,"Zoom": 17
,"MapInitLat": 49.327088
,"MapInitLong": 8.569002
,"Comment": "initially added"
});
//Dubai Autodrome GP
aRefPoints[-661887517] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 25.046650
,"refLong": 55.231300
,"rotation": -0.401
,"cor_r_Long": 45000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Dubai Autodrome GP"
,"Name2": ""
,"AltNames": "Dubai_Autodrome GP,Dubai Autodrome Grand Prix" //"mTrackLocation":"Dubai Autodrome","mTrackVariation":"Grand Prix"
,"Zoom": 17
,"MapInitLat": 25.050102
,"MapInitLong": 55.238634
,"Comment": "live check"
});
///Dubai Autodrome International
aRefPoints[-710712693] = CopyObjectWithModifications(aRefPoints[-661887517], {"Name": "Dubai Autodrome International","Name2": "","AltNames":"Dubai_Autodrome International"});
//Dubai Kartdrome
aRefPoints[-232513374] = CopyObjectWithModifications(aRefPoints[-661887517],
{
"refLat": 25.046665
,"refLong": 55.231300
,"rotation": -0.5
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.003
,"cor_PosY_mul": 1.006
,"Name": "Dubai Kartdrome"
,"Name2": ""
,"AltNames": "Dubai Autodrome Kartdrome,Dubai_Kartdrome International,Dubai Kartdrome International"
,"Zoom": 18
,"MapInitLat": 25.044820
,"MapInitLong": 55.239235
,"Comment": "finished, small discrepancies"
});
//Dubai Autodrome National
aRefPoints[-31727447] = CopyObjectWithModifications(aRefPoints[-661887517], {"Name": "Dubai Autodrome National","Name2": "","AltNames":"Dubai_Autodrome National","MapInitLat": 25.049904,"MapInitLong": 55.236955});
//Dubai Autodrome Club
aRefPoints[1735854797] = CopyObjectWithModifications(aRefPoints[-661887517], {"Name": "Dubai Autodrome Club","Name2": "","AltNames":"Dubai_Autodrome Club","MapInitLat": 25.049058,"MapInitLong": 55.236882});
//Nuerburgring GP
aRefPoints[-945967394] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 50.332743 //50.332733
,"refLong": 6.943395 //6.943355
,"rotation": -0.35 //-0.9
,"cor_r_Long": 0 //30000000
,"cor_r_Lat": 0 //-30000000
,"cor_PosX_mul": 1.005 //1
,"cor_PosY_mul": 0.9985 //1
,"Name": "Nürburgring GP"
,"Name2": ""
,"AltNames": "Nürburgring Grand Prix,Nurburgring GP" //"mTrackLocation":"Nürburgring","mTrackVariation":"Grand Prix"
,"Zoom": 15
,"MapInitLat": 50.332154
,"MapInitLong": 6.940467
,"Comment": "finished, small discrepancies"
});
//Nuerburgring Sprint Short
aRefPoints[-810715843] = CopyObjectWithModifications(aRefPoints[-945967394],
{
"Name": "Nürburgring Sprint Short"
,"Name2": ""
,"AltNames": "Nurburgring Sprint_Short"
,"Zoom": 16
,"MapInitLat": 50.333628
,"MapInitLong": 6.943330
});
//Nuerburgring Sprint
aRefPoints[-709737101] = CopyObjectWithModifications(aRefPoints[-945967394],
{
"Name": "Nürburgring Sprint"
,"Name2": ""
,"AltNames": "Nurburgring Sprint"
,"Zoom": 16
,"MapInitLat": 50.333628
,"MapInitLong": 6.943330
});
//Nuerburgring Muellenbach
aRefPoints[-246966400] = CopyObjectWithModifications(aRefPoints[-945967394],
{
"Name": "Nürburgring Müllenbach"
,"Name2": ""
,"AltNames": "Nürburgring MuellenBach,Nurburgring MuellenBach" //"mTrackLocation":"Nürburgring","mTrackVariation":"MuellenBach"
,"Zoom": 17
,"MapInitLat": 50.326304
,"MapInitLong": 6.937391
});
//Nürburgring Nordschleife
aRefPoints[697498609] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 50.332733
,"refLong": 6.943385
,"rotation": -0.9
,"cor_r_Long": 10000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Nürburgring Nordschleife"
,"Name2": ""
,"AltNames": "Nordschleife Full,Nurburgring Nordschleife" //"mTrackLocation":"Nordschleife","mTrackVariation":"Full"
,"Zoom": 13
,"MapInitLat": 50.359101
,"MapInitLong": 6.962529
,"Comment": "live check, big discrepancies on some parts of track"
});
//Nürburgring Nordschleife Stage 3
aRefPoints[1128950148] = CopyObjectWithModifications(aRefPoints[697498609], {"Name": "Nürburgring Nordschleife Stage 3","Name2": "","AltNames":"Nordschleife Stage 3,Nurburgring Nordschleife_Stage3","Zoom": 14,"MapInitLat": 50.358962,"MapInitLong": 6.980983});
//Nürburgring Nordschleife Stage 1
aRefPoints[1459212514] = CopyObjectWithModifications(aRefPoints[697498609], {"Name": "Nürburgring Nordschleife Stage 1","Name2": "","AltNames":"Nordschleife Stage 1,Nurburgring Nordschleife_Stage1","Zoom": 14,"MapInitLat": 50.354770,"MapInitLong": 6.944798});
//Nürburgring Nordschleife Stage 2
aRefPoints[-300387291] = CopyObjectWithModifications(aRefPoints[697498609], {"Name": "Nürburgring Nordschleife Stage 2","Name2": "","AltNames":"Nordschleife Stage 2,Nurburgring Nordschleife_Stage2","Zoom": 15,"MapInitLat": 50.372702,"MapInitLong": 6.959640});
//Nürburgring Combined
aRefPoints[-891514248] = CopyObjectWithModifications(aRefPoints[697498609], {"Name": "Nürburgring Combined","Name2": "","AltNames":"Nurburgring Combined","MapInitLat": 50.355101});
//Sonoma Raceway
aRefPoints[-1454279631] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 38.162520 //38.162514
,"refLong": -122.457175 //-122.457216
,"rotation": 141.5 //142
,"cor_r_Long": 0 //10000000
,"cor_r_Lat": 0 //-30000000
,"cor_PosX_mul": 1.004 //1
,"cor_PosY_mul": 0.99 //0.97
,"Name": "Sonoma Raceway GP"
,"Name2": ""
,"AltNames": "Sonoma Raceway Grand Prix,Sonoma_Raceway GP" //"mTrackLocation":"Sonoma Raceway","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 38.162600
,"MapInitLong": -122.457415
,"Comment": "finished, not perfect in Turn 1, but not better possible"
});
//Sonoma Raceway National
aRefPoints[-995202729] = CopyObjectWithModifications(aRefPoints[-1454279631],
{
"Name": "Sonoma Raceway National"
,"Name2": ""
,"AltNames": "Sonoma_Raceway National"
,"Zoom": 16
,"MapInitLat": 38.163366
,"MapInitLong": -122.457876
});
//Sonoma Sonoma Raceway Short
aRefPoints[1035110721] = CopyObjectWithModifications(aRefPoints[-1454279631], {"Name": "Sonoma Raceway Short","Name2": "","AltNames":"Sonoma_Raceway Short"});
//24 Hours of Le Mans Circuit
aRefPoints[1740968730] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 47.939065
,"refLong": 0.218178
,"rotation": 1.6
,"cor_r_Long": 25000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "24 Hours of Le Mans Circuit"
,"Name2": ""
,"AltNames": "Le Mans Circuit des 24 Heures du Mans,Le_Mans 24_Hours_of_Le_Mans_Circuit,Le Mans 24 Hours of Le Mans Circuit" //"mTrackLocation":"Le Mans","mTrackVariation":"Circuit des 24 Heures du Mans"
,"Zoom": 13
,"MapInitLat": 47.936818
,"MapInitLong": 0.223960
,"Comment": "live check"
});
//Le Mans Bugatti Circuit
aRefPoints[-1027934689] = CopyObjectWithModifications(aRefPoints[1740968730], {"Name": "Le Mans Bugatti Circuit","Name2": "","AltNames":"Le Mans Le Circuit Bugatti,Le_Mans Le_Mans_Bugatti_Circuit,Le Mans Le Mans Bugatti Circuit","Zoom": 15,"MapInitLat": 47.954335,"MapInitLong": 0.211027}); //"mTrackLocation":"Le Mans","mTrackVariation":"Le Circuit Bugatti"
//Le Mans International Karting Circuit
aRefPoints[1457129528] = CopyObjectWithModifications(aRefPoints[1740968730], {"Name": "Le Mans International Karting Circuit","Name2": "","AltNames":"Le_Mans_Kart_Int Le_Mans_International_Karting_Circuit,Le Mans Karting International Le Mans International Karting Circuit","Zoom": 17,"MapInitLat": 47.942512,"MapInitLong": 0.212322,"Comment": "initially added"}); //"mTrackLocation":"Le Mans Karting International","mTrackVariation":"Le Mans International Karting Circuit"
//Le Mans Vintage Track
aRefPoints[167552033] = CopyObjectWithModifications(aRefPoints[1740968730], {"Name": "Le Mans Vintage Track","Name2": "","AltNames":"","Comment": "initially added"});
//Ruapuna Park GP
aRefPoints[1277693448] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": -43.533275
,"refLong": 172.478130
,"rotation": -0.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Ruapuna Park GP"
,"Name2": ""
,"AltNames": "Ruapuna Park Grand Prix,Ruapuna_Park GP" //"mTrackLocation":"Ruapuna Park","mTrackVariation":"Grand Prix"
,"Zoom": 17
,"MapInitLat": -43.530723
,"MapInitLong": 172.479408
,"Comment": "live check"
});
//Ruapuna Park A Circuit
aRefPoints[619694160] = CopyObjectWithModifications(aRefPoints[1277693448], {"Name": "Ruapuna Park A Circuit","Name2": "","AltNames":"Ruapuna Park A_Circuit,Ruapuna_Park A_Circuit","Zoom": 18,"MapInitLat": -43.531735,"MapInitLong": 172.482294}); //"mTrackLocation":"Ruapuna Park","mTrackVariation":"A_Circuit"
//Ruapuna Park Club
aRefPoints[1446378877] = CopyObjectWithModifications(aRefPoints[1277693448], {"Name": "Ruapuna Park Club","Name2": "","AltNames":"Ruapuna_Park Club"});
//Ruapuna Park Outer Loop
aRefPoints[1940584155] = CopyObjectWithModifications(aRefPoints[1277693448], {"Name": "Ruapuna Park Outer Loop","Name2": "","AltNames":"Ruapuna Park Outer_Loop,Ruapuna_Park Outer_Loop"}); //"mTrackLocation":"Ruapuna Park","mTrackVariation":"Outer_Loop"
//Ruapuna Park B Circuit
aRefPoints[-2046633090] = CopyObjectWithModifications(aRefPoints[1277693448], {"Name": "Ruapuna Park B Circuit","Name2": "","AltNames":"Ruapuna Park B_Circuit,Ruapuna_Park B_Circuit","MapInitLat": -43.530846,"MapInitLong": 172.477963}); //"mTrackLocation":"Ruapuna Park","mTrackVariation":"B_Circuit"
//Cadwell Park GP
aRefPoints[1876749797] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 53.310651
,"refLong": -0.059440
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": -30000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Cadwell Park GP"
,"Name2": ""
,"AltNames": "Cadwell Grand Prix,Cadwell GP,Cadwell Park Grand Prix" //"mTrackLocation":"Cadwell","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 53.308865
,"MapInitLong": -0.063534
,"Comment": "live check"
});
//Cadwell Park Club
aRefPoints[328972919] = CopyObjectWithModifications(aRefPoints[1876749797], {"Name": "Cadwell Park Club","Name2": "","AltNames":"Cadwell Club Circuit,Cadwell Club","MapInitLat": 53.307580,"MapInitLong": -0.064940});
//Cadwell Park Woodland
aRefPoints[-1408189041] = CopyObjectWithModifications(aRefPoints[1876749797], {"Name": "Cadwell Park Woodland","Name2": "","AltNames":"Cadwell Woodland,Cadwell_Park Woodland","MapInitLat": 53.310549,"MapInitLong": -0.059425});
//Oulton Park International
aRefPoints[545979690] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 53.179864
,"refLong": -2.613992
,"rotation": -0.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Oulton Park International"
,"AltNames": "Oulton_Park International"
,"Zoom": 15
,"MapInitLat": 53.176808
,"MapInitLong": -2.616589
,"Comment": "live check"
});
//Oulton Park Fosters
aRefPoints[-2021024495] = CopyObjectWithModifications(aRefPoints[545979690], {"Name": "Oulton Park Fosters","AltNames":"Oulton_Park Fosters","Zoom": 16,"MapInitLat": 53.179448,"MapInitLong": -2.616137});
//Oulton Park Island
aRefPoints[-1877699523] = CopyObjectWithModifications(aRefPoints[545979690], {"Name": "Oulton Park Island","AltNames":"Oulton_Park Island"});
//Snetterton 300
aRefPoints[1508903068] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 52.463952
,"refLong": 0.945230
,"rotation": 0.2
,"cor_r_Long": 0
,"cor_r_Lat": 20000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Snetterton 300"
,"Name2": ""
,"AltNames": "Snetterton 300 Circuit,Snetterton 300_Circuit" //"mTrackLocation":"Snetterton","mTrackVariation":"300 Circuit"
,"Zoom": 16
,"MapInitLat": 52.465021
,"MapInitLong": 0.947079
,"Comment": "live check"
});
//Snetterton 200
aRefPoints[1058872832] = CopyObjectWithModifications(aRefPoints[1508903068], {"Name": "Snetterton 200","Name2": "","AltNames":"Snetterton 200 Circuit,Snetterton 200_Circuit"}); //"mTrackLocation":"Snetterton","mTrackVariation":"200 Circuit"
//Snetterton 100
aRefPoints[-867340010] = CopyObjectWithModifications(aRefPoints[1508903068], {"Name": "Snetterton 100","Name2": "","AltNames":"Snetterton 100 Circuit,Snetterton 100_Circuit","Zoom": 17,"MapInitLat": 52.464866,"MapInitLong": 0.942489}); //"mTrackLocation":"Snetterton","mTrackVariation":"100 Circuit"
//Zhuhai International Circuit
aRefPoints[1836888499] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 22.367585
,"refLong": 113.559640
,"rotation": -29.9
,"cor_r_Long": -15000000
,"cor_r_Lat": -25000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Zhuhai International Circuit"
,"AltNames": "Zhuhai International_Circuit"
,"Zoom": 16
,"MapInitLat": 22.367588
,"MapInitLong": 113.556162
,"Comment": "live check"
});
//Silverstone GP
aRefPoints[1641471184] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 52.078790 //52.078807
,"refLong": -1.015293
,"rotation": -0.2
,"cor_r_Long": 20000000
,"cor_r_Lat": 0
,"cor_PosX_mul":1
,"cor_PosY_mul":1
,"Name": "Silverstone GP"
,"Name2": ""
,"AltNames": "Silverstone Grand Prix" //"mTrackLocation":"Silverstone","mTrackVariation":"Grand Prix"
,"Zoom": 15
,"MapInitLat": 52.071727
,"MapInitLong": -1.015736
,"Comment": "finished, small discrepencies"
});
//Silverstone International
aRefPoints[1101719627] = CopyObjectWithModifications(aRefPoints[1641471184],
{
"Name": "Silverstone International"
,"Name2": ""
,"AltNames": "Silverstone Int"
,"Zoom": 16
,"MapInitLat": 52.068110
,"MapInitLong": -1.016541
});
//Silverstone Stowe
aRefPoints[1600840139] = CopyObjectWithModifications(aRefPoints[1641471184],
{
"Name": "Silverstone Stowe"
,"Name2": ""
,"AltNames": "Silverstone Nat"
,"Zoom": 17
,"MapInitLat": 52.068230
,"MapInitLong": -1.018023
});
//Silverstone National
aRefPoints[1952936927] = CopyObjectWithModifications(aRefPoints[1641471184],
{
"Name": "Silverstone National"
,"Name2": ""
,"AltNames": ""
,"Zoom": 16
,"MapInitLat": 52.075955
,"MapInitLong": -1.014935
});
//Brands Hatch GP
aRefPoints[1988984740] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 51.357200 //51.357240
,"refLong": 0.261632 //0.261592
,"rotation": -0.5 //0
,"cor_r_Long": -10000000
,"cor_r_Lat": 10000000 //20000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Brands Hatch GP"
,"Name2": ""
,"AltNames": "Brands Hatch Grand Prix,Brands_Hatch GP" //"mTrackLocation":"Brands Hatch","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 51.356786
,"MapInitLong": 0.262930
,"Comment": "finished"
});
//Brands Hatch Indy
aRefPoints[1300627020] = CopyObjectWithModifications(aRefPoints[1988984740],
{
"Name": "Brands Hatch Indy"
,"Name2": ""
,"AltNames": "Brands_Hatch Indy"
,"Zoom": 17
,"MapInitLat": 51.359090
,"MapInitLong": 0.260612
});
//Classic Brands Hatch Rallycross
aRefPoints[-2055158240] = CopyObjectWithModifications(aRefPoints[1988984740],
{
"Name": "Classic Brands Hatch Rallycross"
,"Name2": ""
,"AltNames": "Brands_Hatch Rallycross,Brands Hatch Rallycross"
,"Zoom": 17
,"MapInitLat": 51.359384
,"MapInitLong": 0.261653
,"Comment": "live check, new from FUN DLC 12/2017"
});
//Mazda Raceway Laguna Seca
aRefPoints[-1612023328] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 36.584300
,"refLong": -121.753357
,"rotation": 2
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Mazda Raceway Laguna Seca"
,"AltNames": "Laguna_Seca,Laguna Seca"
,"Zoom": 16
,"MapInitLat": 36.584275
,"MapInitLong": -121.753345
,"Comment": "live check"
});
//Brno
aRefPoints[-907901266] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 49.203370
,"refLong": 16.444172
,"rotation": 156.6
,"cor_r_Long": 10000000
,"cor_r_Lat": -30000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Brno GP"
,"AltNames": "Brno,Brno Grand Prix"
,"Zoom": 16
,"MapInitLat": 49.205370
,"MapInitLong": 16.452067
,"Comment": "live check"
});
//Road America
aRefPoints[-660300766] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 43.798330 //43.798290
,"refLong": -87.995239
,"rotation": 0
,"cor_r_Long": 30000000
,"cor_r_Lat": 0 //10000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 0.99 //1
,"Name": "Road America"
,"AltNames": "Road_America"
,"Zoom": 15
,"MapInitLat": 43.798710
,"MapInitLong": -87.995182
,"Comment": "finished, but some discrepencies which are not solvable"
});
//Zolder
aRefPoints[-360711057] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 50.992257
,"refLong": 5.258882
,"rotation": -148.2
,"cor_r_Long": 15000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.955
,"cor_PosY_mul": 0.96
,"Name": "Zolder"
,"Name2": ""
,"AltNames": "Zolder Grand Prix,Zolder GP" //"mTrackLocation":"Zolder","mTrackVariation":"Grand Prix"
,"Zoom": 15
,"MapInitLat": 50.990644
,"MapInitLong": 5.257656
,"Comment": "live check"
});
//Donington Park GP
aRefPoints[354022214] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 52.830615
,"refLong": -1.374732
,"rotation": 174
,"cor_r_Long": 10000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Donington Park GP"
,"Name2": ""
,"AltNames": "Donington Park Grand Prix,Donington_Park GP" //"mTrackLocation":"Donington Park","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 52.830756
,"MapInitLong": -1.375103
,"Comment": "live check"
});
//Donington Park National
aRefPoints[-1194019375] = CopyObjectWithModifications(aRefPoints[354022214], {"Name": "Donington Park National","Name2": "","AltNames":"Donington_Park National"});
//Oschersleben A Course
aRefPoints[-1194185720] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 52.027834
,"refLong": 11.280251
,"rotation": 161.8
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.003
,"cor_PosY_mul": 1
,"Name": "Oschersleben A Course"
,"Name2": ""
,"AltNames": "Oschersleben Grand Prix,Oschersleben A_Course" //"mTrackLocation":"Oschersleben","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 52.028843
,"MapInitLong": 11.276850
,"Comment": "live check"
});
//Oschersleben B Course
aRefPoints[816601966] = CopyObjectWithModifications(aRefPoints[-1194185720], {"Name": "Oschersleben B Course","Name2": "","AltNames":"Oschersleben National,Oschersleben B_Course","Zoom": 17,"MapInitLat": 52.028035,"MapInitLong": 11.278875});
//Oschersleben C Course
aRefPoints[-1359299594] = CopyObjectWithModifications(aRefPoints[-1194185720], {"Name": "Oschersleben C Course","Name2": "","AltNames":"Oschersleben C Circuit,Oschersleben C_Course","Zoom": 17,"MapInitLat": 52.029260,"MapInitLong": 11.271525});
//Azure Circuit
aRefPoints[832629329] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 43.73705
,"refLong": 7.427395
,"rotation": 126
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.983
,"cor_PosY_mul": 0.985
,"Name": "Azure Circuit"
,"Name2": ""
,"AltNames": "Azure Circuit Grand Prix,Azure_Circuit GP" //"mTrackLocation":"Azure Circuit","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 43.737186
,"MapInitLong": 7.425732
,"Comment": "live check"
});
//Bathurst Mount Panorama
aRefPoints[921120824] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": -33.439873
,"refLong": 149.559704
,"rotation": -9
,"cor_r_Long": 15000000
,"cor_r_Lat": 15000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Bathurst Mount Panorama"
,"AltNames": "Bathurst,Bathurst Mount_Panorama"
,"Zoom": 15
,"MapInitLat": -33.448809
,"MapInitLong": 149.555024
,"Comment": "live check"
});
//Circuit de Spa-Francorchamps GP
aRefPoints[904625875] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 50.430342
,"refLong": 5.976448
,"rotation": -2.45
,"cor_r_Long": 30000000
,"cor_r_Lat": 40000000
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Circuit de Spa-Francorchamps GP"
,"AltNames": "Circuit de Spa-Francorchamps,Spa_Francorchamps GP,Spa-Francorchamps Grand Prix"
,"Zoom": 15
,"MapInitLat": 50.436800
,"MapInitLong": 5.970570
,"Comment": "live check"
});
//Greenwood Karting Circuit - Kart track of Spa-Franchorchamps
aRefPoints[-1160443077] = CopyObjectWithModifications(aRefPoints[904625875],
{
"refLat": 50.430342
,"refLong": 5.976448
,"rotation": -2.45
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.99
,"cor_PosY_mul": 1.01
,"Name": "Greenwood Karting Circuit"
,"Name2": ""
,"AltNames": "Greenwood_Karting_Circuit International,Greenwood Karting Circuit International"
,"Zoom": 18
,"MapInitLat": 50.432285
,"MapInitLong": 5.962968
,"Comment": "finished, discrepancies"
});
//Circuit de Barcelona-Catalunya GP
aRefPoints[521933422] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 41.569355
,"refLong": 2.258060
,"rotation": 58.1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Circuit de Barcelona-Catalunya GP"
,"Name2": ""
,"AltNames": "Circuit de Barcelona-Catalunya Grand Prix,Barcelona_Catalunya GP,Barcelona-Catalunya Grand Prix" //"mTrackLocation":"Circuit de Barcelona-Catalunya","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 41.569512
,"MapInitLong": 2.257745
,"Comment": "live check"
});
//Circuit de Barcelona-Catalunya Club
aRefPoints[-1042928898] = CopyObjectWithModifications(aRefPoints[521933422], {"Name": "Circuit de Barcelona-Catalunya Club","Name2": "","AltNames":"Barcelona_Catalunya Club,Barcelona-Catalunya Club","Zoom": 17,"MapInitLat": 41.566327,"MapInitLong": 2.254218});
//Circuit de Barcelona-Catalunya National
aRefPoints[-998191994] = CopyObjectWithModifications(aRefPoints[521933422], {"Name": "Circuit de Barcelona-Catalunya National","Name2": "","AltNames":"Barcelona_Catalunya National,Barcelona-Catalunya National","MapInitLat": 41.570355,"MapInitLong": 2.259433});
//Barcelona Rallycross
aRefPoints[1828877100] = CopyObjectWithModifications(aRefPoints[521933422], {"Name": "Barcelona Rallycross","Name2": "","AltNames":"Barcelona_Catalunya Rallycross,Barcelona-Catalunya Rallycross","Zoom": 18,"MapInitLat": 41.573692,"MapInitLong": 2.261047,"Comment": "live check, new from FUN DLC 12/2017"}); //"mTrackLocation":"Barcelona-Catalunya","mTrackVariation":"Rallycross"
//Autodromo Internazionale Enzo E Dino Ferrari Imola
aRefPoints[920145926] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 44.340705
,"refLong": 11.717190
,"rotation": -1.9
,"cor_r_Long": -20000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Autodromo Internazionale Enzo E Dino Ferrari Imola"
,"Name2": ""
,"AltNames": "Imola Grand Prix,Imola GP" //"mTrackLocation":"Imola","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 44.341112
,"MapInitLong": 11.712506
,"Comment": "live check"
});
//Willow Springs International Raceway
aRefPoints[-103312908] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 34.871624
,"refLong": -118.263848
,"rotation": -32.8
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.97
,"cor_PosY_mul": 0.97
,"Name": "Willow Springs International Raceway"
,"AltNames": "Willow_Springs International_Raceway,Willow Springs International_Raceway"
,"Zoom": 16
,"MapInitLat": 34.872929
,"MapInitLong": -118.264394
,"Comment": "live check, small discrepancies"
});
//Willow Springs Horse Thief Mile
aRefPoints[-1849531562] = CopyObjectWithModifications(aRefPoints[-103312908],
{
"rotation": -33.3
,"cor_PosX_mul": 0.97
,"cor_PosY_mul": 0.985
,"Name": "Willow Springs Horse Thief Mile"
,"AltNames": "Willow_Springs Horse_Thief_Mile"
,"Zoom": 18
,"MapInitLat": 34.878337
,"MapInitLong": -118.264290
,"Comment": "live check"
});
//Watkins Glen International GP
aRefPoints[-1785781495] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 42.329767
,"refLong": -76.920975
,"rotation": -178.4
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.062
,"cor_PosY_mul": 1.065
,"Name": "Watkins Glen International GP"
,"Name2": ""
,"AltNames": "Watkins Glen International Grand Prix,Watkins_Glen_International GP" //"mTrackLocation":"Watkins Glen International","mTrackVariation":"Grand Prix"
,"Zoom": 15
,"MapInitLat": 42.336564
,"MapInitLong": -76.924519
,"Comment": "live check"
});
//Watkins Glen International Short
aRefPoints[1590386668] = CopyObjectWithModifications(aRefPoints[-1785781495], {"Name": "Watkins Glen International Short","Name2": "","AltNames":"Watkins Glen International Short Circuit,Watkins_Glen_International Short"}); //"mTrackLocation":"Watkins Glen International","mTrackVariation":"Short Circuit"
//Autodromo Nazionale Monza GP
aRefPoints[-52972612] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 45.619146
,"refLong": 9.280608
,"rotation": 0
,"cor_r_Long": 25000000
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "Autodromo Nazionale Monza GP"
,"Name2": ""
,"AltNames": "Autodromo Nazionale Monza Grand Prix,Monza GP,Monza Grand Prix" //"mTrackLocation":"Autodromo Nazionale Monza","mTrackVariation":"Grand Prix"
,"Zoom": 15
,"MapInitLat": 45.621690
,"MapInitLong": 9.286990
,"Comment": "live check"
});
//Autodromo Nazionale Monza Short
aRefPoints[368740158] = CopyObjectWithModifications(aRefPoints[-52972612], {"Name": "Autodromo Nazionale Monza Short","Name2": "","AltNames":"Monza Short","Zoom": 16,"MapInitLat": 45.616804,"MapInitLong": 9.282907});
//Autódromo Internacional do Algarve
aRefPoints[-416617300] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 37.231240
,"refLong": -8.629394
,"rotation": -74.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.003
,"cor_PosY_mul": 1
,"Name": "Autódromo Internacional do Algarve"
,"Name2": ""
,"AltNames": "Algarve" //mTrackLocation:"Algarve",mTrackVariation:""
,"Zoom": 16
,"MapInitLat": 37.231121
,"MapInitLong": -8.628299
,"Comment": "last check"
});
//Circuit of the Americas GP
aRefPoints[2050315946] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 30.131935
,"refLong": -97.639792
,"rotation": -0.7
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.9983
,"cor_PosY_mul": 1.0035
,"Name": "Circuit of the Americas GP"
,"Name2": ""
,"AltNames": "Circuit_of_the_Americas GP,Circuit of the Americas Grand Prix" //mTrackLocation:"Circuit_of_the_Americas",mTrackVariation:"Grand Prix"
,"Zoom": 16
,"MapInitLat": 30.134614
,"MapInitLong": -97.634090
,"Comment": "finished"
});
//Circuit of the Americas Club
aRefPoints[802214179] = CopyObjectWithModifications(aRefPoints[2050315946], {"Name": "Circuit of the Americas Club","Name2": "","AltNames":"Circuit_of_the_Americas Club_Circuit,Circuit of the Americas Club Circuit","Zoom": 17,"MapInitLat": 30.137552,"MapInitLong": -97.628475});
//Circuit of the Americas National
aRefPoints[1629467388] = CopyObjectWithModifications(aRefPoints[2050315946], {"Name": "Circuit of the Americas National","Name2": "","AltNames":"Circuit_of_the_Americas National_Circuit,Circuit of the Americas National_Circuit","MapInitLat": 30.133822,"MapInitLong": -97.638199});
//Daytona International Speedway Tri-Oval
aRefPoints[2054003546] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 29.185563
,"refLong": -81.069434
,"rotation": -125.8
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.001
,"cor_PosY_mul": 1
,"Name": "Daytona International Speedway Tri-Oval"
,"Name2": ""
,"AltNames": "Daytona_International_Speedway Tri_Oval,Daytona International Speedway Tri_Oval" //mTrackLocation:"Daytona International Speedway",mTrackVariation:"Tri_Oval"
,"Zoom": 16
,"MapInitLat": 29.185007
,"MapInitLong": -81.069100
,"Comment": "last check"
});
//Daytona Road Course
aRefPoints[467707118] = CopyObjectWithModifications(aRefPoints[2054003546], {"Name": "Daytona Road Course","Name2": "","AltNames":"Daytona_International_Speedway Road_Course,Daytona International Speedway Road_Course"}); //mTrackLocation:"Daytona International Speedway",mTrackVariation:"Road_Course"
//Daytona International Speedway Rallycross
aRefPoints[35770107] = CopyObjectWithModifications(aRefPoints[2054003546], {"Name": "Daytona International Speedway Rallycross","Name2": "","AltNames":"Daytona_International_Speedway Rally_Cross","Zoom": 17,"MapInitLat": 29.184475,"MapInitLong": -81.071058}); //mTrackLocation:"Daytona International Speedway",mTrackVariation:"Rallycross"
//DirtFish Pro Rallycross Course
aRefPoints[-2108341365] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 47.540174
,"refLong": -121.815198
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 1
,"Name": "DirtFish Pro Rallycross Course" //error in API, there is the name "Rallyross"
,"Name2": ""
,"AltNames": "DirtFish Stage3, DirtFish Stage 3" //"mTrackLocation":"DirtFish","mTrackVariation":"Stage 3", error in API, Stage 3 two times included
,"Zoom": 18
,"MapInitLat": 47.538534
,"MapInitLong": -121.814874
,"Comment": "last check"
});
//DirtFish Boneyard Course
aRefPoints[980779751] = CopyObjectWithModifications(aRefPoints[-2108341365], {"Name": "DirtFish Boneyard Course","Name2": "","AltNames":"DirtFish Stage2, DirtFish Stage 2","Zoom": 17,"MapInitLat": 47.5379834}); //"mTrackLocation":"DirtFish","mTrackVariation":"Stage 2"
//DirtFish Mill Run Course
aRefPoints[-1694936640] = CopyObjectWithModifications(aRefPoints[-2108341365], {"Name": "DirtFish Mill Run Course","Name2": "","AltNames":"DirtFish Stage3, DirtFish Stage 3","MapInitLat": 47.540134}); //"mTrackLocation":"DirtFish","mTrackVariation":"Stage 3"
//Fuji
aRefPoints[-1695214357] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 35.373892
,"refLong": 138.929643
,"rotation": 1.3
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.9985
,"cor_PosY_mul": 1.0005
,"Name": "Fuji GP"
,"Name2": ""
,"AltNames": "Fuji Grand Prix" //"mTrackLocation":"Fuji","mTrackVariation":"Grand Prix"
,"Zoom": 16
,"MapInitLat": 35.370554
,"MapInitLong": 138.927871
,"Comment": "finished"
});
//Indianapolis Motor Speedway Road Course
aRefPoints[211444010] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 39.793345
,"refLong": -86.238876
,"rotation": 0
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.9965
,"cor_PosY_mul": 1.001
,"Name": "Indianapolis Motor Speedway Road Course"
,"Name2": ""
,"AltNames": "Indianapolis_Motor_Speedway Road_Course,Indianapolis Motor Speedway Road_Course" //"mTrackLocation":"Indianapolis Motor Speedway","mTrackVariation":"Road_Course"
,"Zoom": 15
,"MapInitLat": 39.794972
,"MapInitLong": -86.234559
,"Comment": "finished"
});
//Indianapolis Motor Speedway Oval
aRefPoints[62242453] = CopyObjectWithModifications(aRefPoints[211444010], {"Name": "Indianapolis Motor Speedway Oval","Name2": "","AltNames":"Indianapolis_Motor_Speedway Oval"}); //"mTrackLocation":"Indianapolis_Motor_Speedway","mTrackVariation":"Oval"
//Knockhill International
aRefPoints[-2126387783] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 56.126987
,"refLong": -3.502699
,"rotation": 0.1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1
,"cor_PosY_mul": 0.9997
,"Name": "Knockhill International" //"mTrackLocation":"Knockhill","mTrackVariation":"International"
,"Name2": ""
,"Zoom": 17
,"MapInitLat": 56.129232
,"MapInitLong": -3.505984
,"Comment": "finished, small discrepancies"
});
//Knockhill International Reverse
aRefPoints[-1088073214] = CopyObjectWithModifications(aRefPoints[-2126387783], {"Name": "Knockhill International Reverse","Name2": "","AltNames":"Knockhill International_Reverse"}); //"mTrackLocation":"Knockhill","mTrackVariation":"International_Reverse"
//Knockhill National
aRefPoints[1887425815] = CopyObjectWithModifications(aRefPoints[-2126387783], {"Name": "Knockhill National","Name2": ""}); //"mTrackLocation":"Knockhill","mTrackVariation":"National"
//Knockhill National Reverse
aRefPoints[458589160] = CopyObjectWithModifications(aRefPoints[-2126387783], {"Name": "Knockhill National Reverse","Name2": "","AltNames":"Knockhill National_Reverse"}); //"mTrackLocation":"Knockhill","mTrackVariation":"National_Reverse"
//Knockhill Rallycross
aRefPoints[977699253] = CopyObjectWithModifications(aRefPoints[-2126387783], {"Name": "Knockhill Rallycross","Name2": "","MapInitLat": 56.130122,"MapInitLong": -3.506652}); //"mTrackLocation":"Knockhill","mTrackVariation":"Rallycross"
//Knockhill Tri-Oval
aRefPoints[-941106232] = CopyObjectWithModifications(aRefPoints[-2126387783], {"Name": "Knockhill Tri-Oval","Name2": "","AltNames":"Knockhill Tri_Oval","Zoom": 18,"MapInitLat": 56.130850,"MapInitLong": -3.511185}); //"mTrackLocation":"Knockhill","mTrackVariation":"Tri_Oval"
//Lånkebanen Rallycross
aRefPoints[2087662703] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 63.405920
,"refLong": 10.919460
,"rotation": 0.1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.03
,"cor_PosY_mul": 1.027
,"Name": "Lånkebanen Rallycross"
,"Name2": ""
,"AltNames": "Hell Rallycross,Hell RX Rallycross" //"mTrackLocation":"Hell","mTrackVariation":"Rallycross"
,"Zoom": 17
,"MapInitLat": 63.405890
,"MapInitLong": 10.919449
,"Comment": "finished, discrepancy in Turn 2"
});
//Rallycross of Loheac
aRefPoints[-598879227] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 47.863952
,"refLong": -1.893773
,"rotation": -0.1
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 1.02
,"cor_PosY_mul": 1.023
,"Name": "Rallycross of Loheac"
,"Name2": ""
,"AltNames": "Loheac Rallycross_of_Loheac,Loheac Rallycross of Loheac" //"mTrackLocation":"Loheac","mTrackVariation":"Rallycross of Loheac"
,"Zoom": 17
,"MapInitLat": 47.864160
,"MapInitLong": -1.894058
,"Comment": "finished"
});
//Long Beach Street Circuit
aRefPoints[1731699995] = CopyObjectWithModifications(aRefPoints[9999999999],
{
"refLat": 33.763798
,"refLong": -118.191507
,"rotation": 0.6
,"cor_r_Long": 0
,"cor_r_Lat": 0
,"cor_PosX_mul": 0.998
,"cor_PosY_mul": 1.002
,"Name": "Long Beach Street Circuit"
,"Name2": ""