-
Notifications
You must be signed in to change notification settings - Fork 0
/
read_ins_2018_tle.py
36 lines (32 loc) · 953 Bytes
/
read_ins_2018_tle.py
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
tle_file = open('ins_2018.txt', 'r')
# Reading The .txt file
tle = tle_file.readlines()
tle_2018 = []
# Storing the TLEs in a list, after suitable formatting.
for i in tle:
tle_2018.append( i.rstrip() )
tle_file.close()
tle_file = open('pratham_tle.txt', 'r')
# Reading The .txt file
tle = tle_file.readlines()
pratham_tle_2018 = []
# Storing the TLEs in a list, after suitable formatting.
for i in tle:
pratham_tle_2018.append( i.rstrip() )
tle_file.close()
tle_file = open('pisat_tle.txt', 'r')
# Reading The .txt file
tle = tle_file.readlines()
pisat_tle_2018 = []
# Storing the TLEs in a list, after suitable formatting.
for i in tle:
pisat_tle_2018.append( i.rstrip() )
tle_file.close()
tle_file = open('niusat_tle.txt', 'r')
# Reading The .txt file
tle = tle_file.readlines()
niusat_tle_2018 = []
# Storing the TLEs in a list, after suitable formatting.
for i in tle:
niusat_tle_2018.append( i.rstrip() )
tle_file.close()