about summary refs log tree commit diff
path: root/README.md
blob: dbbd2b7012b39c59a5f5ac20ce5771eb485c48a3 (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
45
46
47
48
49
50
51
52
53
54
55
56
# SatelliteComputation

**Blender Required !!!**
## Required Packages
- bpy
- pylab(matplotlib)
- urllib
- math
- numpy

## Running

    blender startup.blend --python main2.py

If you don't want to start blender and only want to get the raw data
(console + matplotlib) start like this:

    blender startup.blend --python main2.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]

so:

    xyt[1][1][1]

gets the y-position of satellite 1 at the moment "1"