-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun_all_extractions.sh
executable file
·100 lines (78 loc) · 1.22 KB
/
run_all_extractions.sh
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/bin/bash
workdir=$(dirname $(realpath $0))
cd $workdir
#### update wikidata list & filter item which are not an observation facilitity
(
cd WIKIDATA/scripts
python3 query_wikidata.py input.json output.json
)
#### AAS
(
cd AAS/scripts
python3 extract_data_aas.py
)
#### ADS
#(
# cd ADS/scripts
# python3 extract_data_ads.py
#)
#### Astroweb
(
cd Astroweb/scripts
python3 extract_data_astroweb.py
)
#### IAU-MPC
(
cd IAU-MPC/scripts
python3 extract_data_iau-mpc.py
)
#### IRAF
(
cd IRAF/scripts
python3 extract_data_iraf.py
)
#### NAIF
#(
# cd NAIF/scripts
# python3 extract_data_naif.py
#)
#### NSSDC
#(
# cd NSSDC/scripts
# python3 extract_data_nssdc.py
#)
#### PDS
#(
# cd PDS/scripts
# python3 extract_data_pds.py
#)
#### SANA
#(
# cd SANA/scripts
# python3 extract_data_sana.py
#)
#### SPASE
#(
# cd SPASE/scripts
# python3 Extract_data_spase.py
#)
#### VESPA
#(
# cd VESPA/scripts
# python3 .py
#)
#### WISEREP
#(
# cd WISEREP/scripts
# python3 extract_data_wiserep.py
#)
#### WMO
#(
# cd WMO/scripts
# python3 extarct_data_wmo.py
#)
#### XEPHEM-SITES
#(
# cd XEPHEM-SITES/scripts
# #python3 extract_data_xephem.py
#)