2019-09-22-梅西耶马拉松数据

时区很重要!

观测一定要选择core.setTimezone(“LMST”);

LMST是最标准的,因为天体运行不管你人间粗略的时区划分的。

西边的容易被遮挡,地景更改

74
77
31
32
110
33
76
52
103
34

纬度太南<30的西边要早看

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
if(Mylatitude < 30){
if(objName == "M74"){
core.setDate("- 30 minutes", "local");
}

if(objName == "M31" || objName == "M32" || objName == "M110"){
core.setDate("- 30 minutes", "local");
}

if(objName == "M103"){
core.setDate("- 1 hours", "local");
}

if(objName == "M52"){
core.setDate("- 2 hours", "local");
}

if(objName == "M33"){
core.setDate("- 30 minutes", "local");
}

if(objName == "M34"){
core.setDate("- 30 minutes", "local");
}

if(objName == "M67"){
core.setDate("- 30 minutes", "local");
}
}

纬度太北>40的南边要早看

1
2
3
4
5
if(Mylatitude > 40){
if(objName == "M79"){
core.setDate("- 50 minutes", "local");
}
}

夏季的,最后冲刺阶段要早看。太靠北边的(30纬度以上),M30就到4月再看好一点。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if(Mylatitude >= 15){

if(i >= 86 && i <= 97){
core.setDate("- 20 minutes", "local");
}
if(i == 96 && Mylatitude >= 48){
core.setDate("+ 5 minutes", "local");
}
if(i >= 98 && i <= 108){
core.setDate("- 30 minutes", "local");
}

if(objName == "M30"){
if(Mylatitude >= 30){
core.setDate("2020-04-25T03:53:00", "local");
}
if(Mylatitude < 30){
core.setDate("2020-03-21T05:08:00", "local");
}
}
}