我正在创建一个预测卫星可见通行证的应用。 在应用程序中,我使用“if”语句来决定是否可以看到卫星。
如下;
if satellite.neverup is False and satellite.circumpolar is False:
observer.next_pass(satellite)
这种计算适用于大多数LEO卫星。
但是,我发现了一些奇怪的结果。 next_pass函数在satellite.compute(observer)
之前和返回不同的值之后使用。
以下代码重现结果。
import ephem
line_0 = '0 SL-3 R/B'
line_1 = '1 12904U 81103B 14252.72400340 .00001812 00000-0 13444-3 0 5754'
line_2 = '2 12904 081.1813 349.2718 0030677 147.5032 212.8569 15.02708918340741'
target = ephem.readtle(line_0,line_1,line_2)
site = ephem.Observer()
site.lon = '151:43:00'
site.lat = '-27:26:00'
site.elevation = 400
site.name = 'test facility'
site.horizon = '40:00:00'
site.date = '2014/9/20 00:29:10'
print ephem.__version__
print site.next_pass(target)
target.compute(site)
print [target.neverup,target.circumpolar]
print site.next_pass(target)
结果如下;
3.7.5.3
(2014/9/20 01:55:43, 303:49:09.6, 2014/9/20 00:25:02, 30:44:01.7, 2014/9/20 00:30:10, 164:08:09.1)
[False, False]
(None, None, None, None, None, None)
如何避免此结果发生变化? 我哪里错了?
提前谢谢。
答案 0 :(得分:2)
经过一段时间的游戏,并使用其他TLE之后,我的想法是永远不会正确地解释你的视野。也许是使用00:00:00来定义布尔值;如果您将地平线更改为30:00:00,则输出变为:
3.7.5.3
(2014/9/20 01:55:43, 303:49:09.6, 2014/9/20 00:25:02, 30:44:01.7, 2014/9/20 00:30:10,164:08:09.1)
[False, False]
(2014/9/20 12:06:25, 191:15:15.1, 2014/9/20 12:08:23, 82:43:37.8, 2014/9/20 12:10:20, 1:10:09.6)
为了进一步调试,我们可以在此处显示的下一个通道上打印卫星的高度。即。
info = site.next_pass(target)
site.date = info[0]
target.compute(site)
print target.alt
这给出了:
31:07:31.3
现在,如果我们将海拔高度更改为34:00:00,我们会将您的无人回复列表。
我的猜测是,从不考虑你定义的地平线,但next_pass是。