-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstadium.py
369 lines (288 loc) · 17.7 KB
/
stadium.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
### Some doc at: https://github.com/trichter/rf @cplegendre
import os, sys, glob, yaml
import obspy
import pandas as pd
import numpy as np
from obspy import read_inventory, read_events, UTCDateTime as UTC
import rfsks_support.other_support as oss
import rfsks_support.rf_support as rfs
import rfsks_support.sks_support as skss
import rfsks_support.summary_support as sumsup
from rfsks_support.download_large_data import downloadDataclass
from rfsks_support.plot_events_map_all import plot_events_map_all
from rfsks_support.plot_station_map_all import plot_station_map_all
from rfsks_support.plotting_h_k import plot_h_kappa
from rfsks_support.calculate_h_k import calc_h_kappa
import warnings
warnings.filterwarnings("ignore")
import time
def main():
with open('input_file.yaml') as f:
inp = yaml.load(f, Loader=yaml.FullLoader)
res_dir = str(inp['project_name']) #'results/'
dirs,rfdirs,sksdirs,otherdirs = oss.read_directories(res_dir)
## Step wise mode
with open('Settings/stepwise.yaml') as f:
inp_step = yaml.load(f, Loader=yaml.FullLoader)
## Fine tuning of RF
with open('Settings/advRFparam.yaml') as f:
inpRFdict = yaml.load(f, Loader=yaml.FullLoader)
## Fine tuning of SKS
with open('Settings/advSKSparam.yaml') as f:
inpSKSdict = yaml.load(f, Loader=yaml.FullLoader)
## Input parameters ## General
fresh_start=int(inp['fresh_start']) #0/1
mnlong,mxlong=float(inp['mnlong']),float(inp['mxlong']) #min and max longitude
mnlat,mxlat=float(inp['mnlat']),float(inp['mxlat']) #min and max latitude
client=inp_step['data_settings']['client'].split(",") #client name to retrieve the data
network=str(inp_step['data_settings']['network'])
station=str(inp_step['data_settings']['station'])
channel=str(inp_step['data_settings']['channel'])
fig_frmt="png"
## Input parameters ## User's choice
makeRF=int(inp['makeRF']) ###### 0/1
makeSKS=int(inp['makeSKS']) ###### 0/1
## Input parameters ## Plotting
plot_stations=int(inp_step['plot_settings']['plot_stations'])
plot_events=int(inp_step['plot_settings']['plot_events'])
plot_all_retrieved = int(inp_step['plot_settings']['plot_all_retrieved_events_stations'])
compute_plot_RF = int(inp_step['rf_stepwise']['compute_plot_RF']) #Plotting the receiver functions
plot_ppoints=int(inp_step['rf_stepwise']['plot_ppoints'])
plot_RF_profile = int(inp_step['rf_stepwise']['plot_RF_profile'])
# # plot_SKS = int(inp_step['sks_stepwise']['plot_SKS']) #Plotting the receiver functions
picking_SKS=int(inp_step['sks_stepwise']['picking_SKS'])
## Input parameters ## RF
minmagnitudeRF=float(inpRFdict['rf_event_search_settings']['minmagnitudeRF'])
maxmagnitudeRF=float(inpRFdict['rf_event_search_settings']['maxmagnitudeRF'])
## Input parameters ## SKS
minmagnitudeSKS=float(inpSKSdict['sks_event_search_settings']['minmagnitudeSKS'])
maxmagnitudeSKS=float(inpSKSdict['sks_event_search_settings']['maxmagnitudeSKS'])
## Download data
download_data_RF = int(inp_step['rf_stepwise']['download_data_RF'])
download_data_SKS = int(inp_step['sks_stepwise']['download_data_SKS'])
## Station inventory files
invRFfile = str(dirs.loc['RFinfoloc','DIR_NAME']) + str(inpRFdict['filenames']['invRFfile'])
RFsta = str(dirs.loc['RFinfoloc','DIR_NAME']) + str(inpRFdict['filenames']['RFsta'])
## Defining paths for SKS
invSKSfile = str(dirs.loc['SKSinfoloc','DIR_NAME'])+ str(inpSKSdict['filenames']['invSKSfile'])
SKSsta = str(dirs.loc['SKSinfoloc','DIR_NAME']) + str(inpSKSdict['filenames']['SKSsta'])
#############################################################
#############################################################
##################### #######################
##################### Initialisation #######################
##################### #######################
#############################################################
#############################################################
if fresh_start:
if os.path.exists(res_dir):
response = input("Are you sure you want to start fresh? (Input 'yes' to continue): ")
if response == "yes":
oss.rem_dir(res_dir)
elif response == "no":
pass
else:
print(f"Response: {response}, Exiting!")
sys.exit()
## Creating directories
if makeRF:
for direc in rfdirs:
if not os.path.exists(direc):
oss.create_dir(direc)
if makeSKS:
for direc in sksdirs:
if not os.path.exists(direc):
oss.create_dir(direc)
for direc in otherdirs:
if not os.path.exists(direc):
oss.create_dir(direc)
## List the given station locations
if inp_step['data_settings']['locations'] is np.nan:
locations=[""]
else:
locations = list(inp_step['data_settings']['locations'])
if not len(locations):
locations=[""]
##################
## Initializing Summary file
## Summary File
sum_file = res_dir+str(inp['summary_file'])
sum_sup_class = sumsup.sum_support(sum_file,res_dir)
sum_sup_class.write_initial_summary(mnlong,mxlong,mnlat,mxlat,client,network,station,channel)
sum_sup_class.makeSKSRF(makeRF,makeSKS)
#######################
## Logging
import logging
logfiles = glob.glob(res_dir+"tmp/*.log")
for log in logfiles:
if os.path.exists(log):
os.remove(log)
oss.setup_logging(default_level=logging.INFO,dirname=res_dir)
logger = logging.getLogger(__name__)
print(f"\nCheck file {res_dir+'tmp/info.log'} for details\n")
time.sleep(3)
## Log
logger.info(f"Running the program for makeRF: {makeRF}; makeSKS: {makeSKS}")
############################
#############################################################
#############################################################
##################### #######################
##################### RF #######################
##################### #######################
#############################################################
#############################################################
if makeRF:
logger.info("\n")
logger.info("WORKING ON RF")
logger.info("#Initializing the downloadDataclass")
sum_sup_class.write_strings("####")
sum_sup_class.write_strings("--> RECEIVER FUNCTIONS PART:")
sum_sup_class.write_strings("####")
rf_data=downloadDataclass(inventoryfile=invRFfile,inventorytxtfile=RFsta,client=client,minlongitude=mnlong,maxlongitude=mxlong,minlatitude=mnlat,maxlatitude=mxlat,fig_frmt=fig_frmt,method='RF',channel=channel)
catalogxmlloc = str(dirs.loc['RFinfoloc','DIR_NAME'])
## Obtain inventory and events info
if int(inp_step['rf_stepwise']['obtain_inventory_RF']):
logger.info("Obtaining Inventory")
oss.obtain_inventory_events(rf_data,invRFfile,catalogxmlloc,network,station,dirs,minmagnitudeRF,maxmagnitudeRF)
logger.info(f"Catalog xml/txt files saved at {dirs.loc['RFinfoloc','DIR_NAME']}")
sum_sup_class.write_data_summary(RFsta)
## Download waveforms
datafileloc=str(dirs.loc['RFdatafileloc','DIR_NAME'])
if download_data_RF:
logger.info("Downloading the RF data")
try:
if not os.path.exists(RFsta):
logger.info(f"{RFsta.split('/')[-1]} does not exist...obtaining")
oss.obtain_inventory_events(rf_data,invRFfile,catalogxmlloc,network,station,dirs,minmagnitudeRF,maxmagnitudeRF)
sum_sup_class.write_data_summary(RFsta)
else:
logger.info(f"{RFsta.split('/')[-1]} exists!")
except:
sys.exit()
retrived_stn_file = str(dirs.loc['RFinfoloc','DIR_NAME'])+str(inpRFdict['filenames']['retr_stations'])
if not os.path.exists(retrived_stn_file):
logger.info(f"{retrived_stn_file} does not exist...obtaining events catalog..")
catalogloc = str(dirs.loc['RFinfoloc','DIR_NAME'])
dest_map=str(dirs.loc['RFstaevnloc','DIR_NAME'])
## The stations list can be edited
oss.select_to_download_events(catalogloc,datafileloc,dest_map,RFsta,rf_data,minmagnitudeRF,maxmagnitudeRF,plot_stations,plot_events,locations,method='RF')
sum_sup_class.write_data_download_summary(datafileloc,retrived_stn_file,method='RF')
if plot_all_retrieved and os.path.exists(str(dirs.loc['RFinfoloc','DIR_NAME'])+str(inpRFdict['filenames']['retr_stations'])):
logger.info("\n")
logger.info("## Plotting retrieved stations")
RFsta_path = "/".join(RFsta.split("/")[0:-1])
RFsta_prex = RFsta.split("/")[-1].split(".")[0]
full_RFsta_path = f"{RFsta_path}/{RFsta_prex}_combined.txt"
plot_events_map_all(all_stations_file = str(dirs.loc['RFinfoloc','DIR_NAME'])+str(inpRFdict['filenames']['retr_stations']))
plot_station_map_all(retr_stationsfile = str(dirs.loc['RFinfoloc','DIR_NAME'])+str(inpRFdict['filenames']['retr_stations']),all_stationsfile=full_RFsta_path)
if len(glob.glob(datafileloc+"*.h5"))>0:
if compute_plot_RF:
dataRFfileloc = str(dirs.loc['RFdatafileloc','DIR_NAME'])
all_rfdatafile = glob.glob(dataRFfileloc+f"*-{str(inpRFdict['filenames']['data_rf_suffix'])}.h5")
if len(all_rfdatafile)>=1:
try:
logger.info("\n")
logger.info("## Computing RF")
rfs.compute_rf(dataRFfileloc)
logger.info("\n")
logger.info("## Operating plot_RF method")
rfs.plot_RF(dataRFfileloc,destImg=str(dirs.loc['RFplotloc','DIR_NAME']))
sum_sup_class.write_rf_comp_summary(datafileloc,destImg=str(dirs.loc['RFplotloc','DIR_NAME']))
except Exception as e:
logger.info(e)
else:
logger.error("No RF data files present...download the data")
sys.exit()
if plot_ppoints:
logger.info("\n")
logger.info("## Operating plot_priercingpoints_RF method")
rfs.plot_pp_profile_map(str(dirs.loc['RFdatafileloc','DIR_NAME']),str(dirs.loc['RFdatafileloc','DIR_NAME']),catalogtxtloc=str(dirs.loc['RFinfoloc','DIR_NAME']),destination=str(dirs.loc['RFprofilemaploc','DIR_NAME']), ndivlat = int(inpRFdict['rf_profile_settings']['num_profile_divs_lat']), ndivlon=int(inpRFdict['rf_profile_settings']['num_profile_divs_lon']))
# print(dir())
if plot_RF_profile:
logger.info("\n")
logger.info("## Operating plot_RF_profile method")
rfs.plot_RF_profile(str(dirs.loc['RFdatafileloc','DIR_NAME']),destination=str(dirs.loc['RFprofilemaploc','DIR_NAME']))
sum_sup_class.write_rf_pp_summary(datafileloc,destImg=str(dirs.loc['RFprofilemaploc','DIR_NAME']))
## H-kappa calculation
if int(inpRFdict['filenames']['h_kappa_settings']['plot_h']) or int(inpRFdict['filenames']['h_kappa_settings']['plot_kappa']):
logger.info("\n")
logger.info("## H-kappa implementation")
outloc=str(dirs.loc['RFinfoloc','DIR_NAME'])
outfile = str(inpRFdict['filenames']['h_kappa_settings']['h_kappa_res_file'])
if not os.path.exists(outloc+outfile):
calc_h_kappa(outfile = outfile,data_dir_loc = str(dirs.loc['RFdatafileloc','DIR_NAME']), outloc=outloc)
retr_stationsfile = str(dirs.loc['RFinfoloc','DIR_NAME'])+str(inpRFdict['filenames']['retr_stations'])
if os.path.exists(outloc+outfile):
plot_h_kappa(h_k_file = outloc+outfile,all_stationsfile = retr_stationsfile,plot_h = int(inpRFdict['filenames']['h_kappa_settings']['plot_h']),plot_kappa = int(inpRFdict['filenames']['h_kappa_settings']['plot_kappa']))
sum_sup_class.h_kappa_summary(figloc=outloc,h_k_calc_file=outfile)
#############################################################
#############################################################
##################### #######################
##################### SKS #######################
##################### #######################
#############################################################
#############################################################
if makeSKS:
logger.info("\n")
logger.info("WORKING ON SKS")
logger.info("# Initializing the downloadDataclass")
sum_sup_class.write_strings("####")
sum_sup_class.write_strings("--> SHEAR-WAVE SPLITTING PART:")
sum_sup_class.write_strings("####")
sks_data=downloadDataclass(inventoryfile=invSKSfile,inventorytxtfile=SKSsta,client=client,minlongitude=mnlong,maxlongitude=mxlong,minlatitude=mnlat,maxlatitude=mxlat,fig_frmt=fig_frmt,method='SKS',channel=channel)
catalogxmlloc=str(dirs.loc['SKSinfoloc','DIR_NAME'])
## Obtain inventory and events info
if int(inp_step['sks_stepwise']['obtain_inventory_SKS']):
logger.info("Obtaining Inventory")
oss.obtain_inventory_events(sks_data,invSKSfile,catalogxmlloc,network,station,dirs,minmagnitudeSKS,maxmagnitudeSKS)
logger.info(f"Catalog xml/txt files saved at {catalogxmlloc}")
sum_sup_class.write_data_summary(SKSsta)
## Download waveforms
datafileloc=str(dirs.loc['SKSdatafileloc','DIR_NAME'])
if download_data_SKS:
logger.info("Downloading the SKS data")
if not os.path.exists(SKSsta):
logger.info(f"{SKSsta} does not exist...obtaining")
oss.obtain_inventory_events(sks_data,invSKSfile,catalogxmlloc,network,station,dirs,minmagnitudeSKS,maxmagnitudeSKS)
sum_sup_class.write_data_summary(SKSsta)
retrived_stn_file = str(dirs.loc['SKSinfoloc','DIR_NAME'])+str(inpSKSdict['filenames']['retr_stations'])
if not os.path.exists(retrived_stn_file):
logger.info(f"{retrived_stn_file} does not exist...obtaining inventory!")
catalogloc = str(dirs.loc['SKSinfoloc','DIR_NAME'])
dest_map=str(dirs.loc['SKSstaevnloc','DIR_NAME'])
## The stations list can be edited
oss.select_to_download_events(catalogloc,datafileloc,dest_map,SKSsta,sks_data,minmagnitudeSKS,maxmagnitudeSKS,plot_stations,plot_events,locations,method='SKS')
sum_sup_class.write_data_download_summary(datafileloc,retrived_stn_file)
if plot_all_retrieved and os.path.exists(str(dirs.loc['SKSinfoloc','DIR_NAME'])+str(inpSKSdict['filenames']['retr_stations'])):
logger.info("\n")
logger.info("## Plotting retrieved stations")
SKSsta_path = "/".join(SKSsta.split("/")[0:-1])
SKSsta_prex = SKSsta.split("/")[-1].split(".")[0]
full_SKSsta_path = f"{SKSsta_path}/{SKSsta_prex}_combined.txt"
# all_station_file = str(dirs.loc['SKSinfoloc','DIR_NAME'])+str(inpSKSdict['filenames']['SKSsta'])
plot_events_map_all(all_stations_file = str(dirs.loc['SKSinfoloc','DIR_NAME'])+str(inpSKSdict['filenames']['retr_stations']))
plot_station_map_all(retr_stationsfile = str(dirs.loc['SKSinfoloc','DIR_NAME'])+str(inpSKSdict['filenames']['retr_stations']),all_stationsfile=full_SKSsta_path)
if len(glob.glob(datafileloc+"*.h5"))>0:
if picking_SKS:
logger.info("\n")
plot_traces_ENZ=int(inp_step['sks_stepwise']['plot_traces_ENZ'])
plot_traces_RTZ=int(inp_step['sks_stepwise']['plot_traces_RTZ'])
plot_trigger=int(inp_step['sks_stepwise']['plot_trigger'])
plot_SKS_measure=int(inp_step['sks_stepwise']['plot_SKS_measure'])
trace_loc_ENZ = str(dirs.loc['SKStracesloc_ENZ','DIR_NAME']) if plot_traces_ENZ else None
trace_loc_RTZ = str(dirs.loc['SKStracesloc_RTZ','DIR_NAME']) if plot_traces_RTZ else None
trigger_loc = str(dirs.loc['SKS_trigger_loc','DIR_NAME']) if plot_trigger else None
logger.info("## SKS-measurements")
plot_measure_loc = str(dirs.loc['SKSplot_measure_loc','DIR_NAME']) if plot_SKS_measure else None
sksMeasure = skss.sks_measurements(plot_measure_loc=plot_measure_loc)
sksMeasure.SKScalc(str(dirs.loc['SKSdatafileloc','DIR_NAME']),trace_loc_ENZ,trace_loc_RTZ,trigger_loc,method = str(inpSKSdict['sks_picking']['picking_algo']['sks_picking_algo']))
sum_sup_class.write_sks_meas_sum(measure_loc = plot_measure_loc,trace_loc_ENZ=trace_loc_ENZ,trace_loc_RTZ=trace_loc_RTZ,trigger_loc=trigger_loc)
# sksMeasure.plot_sks_map()
sks_measurement_file = plot_measure_loc+"../"+"sks_measurements_all.txt"
if os.path.exists(SKSsta) and os.path.exists(sks_measurement_file):
logger.info("## Plotting measurements")
sksMeasure.plot_sks_map()
if bool(inp_step['sks_stepwise']['plot_data_nodata_map']):
sksMeasure.plot_data_nodata_map(sks_stations_infofile=SKSsta)
sum_sup_class.close_sumfile()
if __name__ == '__main__':
main()