blob: bd27b48bcbbb44825cdcb54b9dd6ddeb06f940ad (
plain)
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
|
# SatelliteComputation
**Blender Required !!!**
Start software like this:
blender --python main.py
If you don't want to start blender and only want to get the raw data
(console + matplotlib) start like this:
blender --python main.py --background
## code:
Download data from a specific category:
TLE.download(category)
example:
TLE.download("iridium")
Get number of satellites in category:
TLE.numOfSat(category)
example:
TLE.numOfSat("noaa")
Print specific TLE:
TLE.printTLE(category, satNr)
example:
Get value from sat in category:
TLE.get(value, category, satNr)
example:
TLE.get("inclination", "argos", 3)
xyz list:
xyz[satNr][x/y/z][time]
|