This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import time | |
import datetime | |
from math import * | |
import ephem | |
# taken from: http://celestrak.com/NORAD/elements/cubesat.txt | |
ec1_tle = { "name": "ESTCUBE 1", \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/local/bin/python3.6 | |
""" | |
直近 TLE データ取得 (from NASA) | |
: 過去の直近の TLE データ1件を取得する | |
(過去データが存在しなければ、未来の直近データ) | |
date name version | |
2018.06.12 mk-mode.com 1.00 新規作成 | |
Copyright(C) 2018 mk-mode.com All Rights Reserved. |