about summary refs log tree commit diff
path: root/main/README.md
diff options
context:
space:
mode:
authorHanEmile <emile.hansmaennel@gmail.com>2017-02-14 17:20:57 +0100
committerHanEmile <emile.hansmaennel@gmail.com>2017-02-14 17:20:57 +0100
commit17db6da90b6ddeb3630f2322eddc4910463f999f (patch)
treee288aa572b6938e0a6db2382a5fbd0887efc6ea4 /main/README.md
parent552a3922321bfdc6e71d55dea334d5ef864cc440 (diff)
removed some files
Diffstat (limited to 'main/README.md')
-rw-r--r--main/README.md50
1 files changed, 0 insertions, 50 deletions
diff --git a/main/README.md b/main/README.md
deleted file mode 100644
index f6c833f..0000000
--- a/main/README.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# SatelliteComputation
-
-**Blender Required !!!**
-## Required Packages
-- bpy
-- pylab(matplotlib)
-- urllib
-- math
-- numpy
-
-## Running
-
-    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]