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

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

# http://pyrocko.org - GPLv3 

# 

# The Pyrocko Developers, 21st Century 

# ---|P------/S----------~Lg---------- 

from __future__ import absolute_import 

 

import os 

import sys 

from optparse import OptionParser, OptionGroup 

from collections import OrderedDict 

 

from .report_main import GreensFunctionTest as gftest 

from .report_main import FilterFrequencyError as gft_ffe 

from .report_main import FomostoReportError 

 

spstr = '\n' + ' '*20 

subcmds_desc = OrderedDict([ 

('single', 'create pdf of a single store'), 

('double', 'create pdf of two stores'), 

('sstandard', 'create a single store pdf with standard setup'), 

('dstandard', 'create a double store pdf with standard setup'), 

('slow', 'create a single store pdf, filtering the' + 

spstr + 'traces with a low frequency'), 

('dlow', 'create a double store pdf, filtering the' + 

spstr + 'traces with a low frequency'), 

('shigh', 'create a single store pdf, filtering the' + 

spstr + 'traces with a low frequency'), 

('dhigh', 'create a single store pdf, filtering the' + 

spstr + 'traces with a low frequency'), 

('slowband', 'create a single store pdf with a low' + 

spstr + 'frequency band filter'), 

('dlowband', 'create a double store pdf with a low' + 

spstr + 'frequency band filter'), 

('shighband', 'create a single store pdf with a high' + 

spstr + 'frequency band filter'), 

('dhighband', 'create a double store pdf with a high' + 

spstr + 'frequency band filter'), 

('snone', 'create a single store pdf with unfiltered' 

' traces'), 

('dnone', 'create a double store pdf with unfiltered' 

' traces')]) 

 

subcmds_uses = { 

'single': 'single <input config file> [options]', 

'double': 'double <input config file> [options]', 

'sstandard': 'sstandard <store dir> [options]', 

'dstandard': 'dstandard <store dir1> <store dir2>' 

' <sensor distance minimum>' 

' <sensor distance maximum> [options]', 

'slow': 'slow <store dir> [options]', 

'dlow': 'dlow <store dir1> <store dir2>' 

' <sensor distance minimum>' 

' <sensor distance maximum> [options]', 

'slowband': 'slowband <store dir> [options]', 

'dlowband': 'dlowband <store dir1> <store dir2>' 

' <sensor distance minimum>' 

' <sensor distance maximum> [options]', 

'shighband': 'shighband <store dir> [options]', 

'dhighband': 'dhighband <store dir1> <store dir2>' 

' <sensor distance minimum>' 

' <sensor distance maximum> [options]', 

'shigh': 'shigh <store dir> [options]', 

'dhigh': 'dhigh <store dir1> <store dir2>' 

' <sensor distance minimum>' 

' <sensor distance maximum> [options]', 

'snone': 'snone <store dir> [options]', 

'dnone': 'dnone <store dir1> <store dir2>' 

' <sensor distance minimum>' 

' <sensor distance maximum> [options]'} 

 

 

def dict_to_string(dic): 

st = 4 

st2 = 20 

s = '' 

for k, v in dic.items(): 

s += '\n{0}{1}{2}{3}'.format(' '*st, k, ' '*(st2 - st - len(k)), v) 

return s 

 

 

def add_common_options(parser): 

parser.add_option('--show_defaults', '-d', action='store_false', 

help='Show the default values of command options.' 

' Must be typed before help option.') 

parser.add_option('--plot_velocity', '-v', action='store_true', 

help='Plot the velocity traces also.', default=False) 

parser.add_option('--output-format', 

help='The format of the report: pdf or html', 

choices=['pdf', 'html'], default='pdf') 

parser.add_option('--pdf_dir', '-p', 

help='The directory where the pdf/html will be saved to.' 

' Default is the HOME directory.', 

default=None) 

parser.add_option('--output', '-o', 

help='The full path and name to save the' 

' resulting configuration file.', 

default=None) 

parser.add_option('--report_only', '-r', dest='plot_everything', 

action='store_false', default=True, 

help='Do not plot the trace graphs') 

 

 

def add_sensor_options(parser): 

grp = OptionGroup(parser, 'Seismic sensor distance options') 

grp.add_option('--distance_min', '-n', type=float, default=None, 

help="The minimum distance to place sensors. Value of" 

" 'None' will use store minimum.") 

grp.add_option('--distance_max', '-x', type=float, default=None, 

help="The maximum distance to place sensors. Value of" 

" 'None' will use store maximum.") 

grp.add_option('--sensor_count', '-c', type=int, default=50, 

help="The number of sensors to use.") 

parser.add_option_group(grp) 

 

 

def add_source_options(parser): 

grp = OptionGroup(parser, 'Seismic source options') 

grp.add_option('--depth', 

dest='source_depth', 

type=float, 

help="The depth of the source. Value of 'None' will place" 

" source at middle depth of allowed values.", 

default=None) 

parser.add_option_group(grp) 

 

 

def add_filter_options(parser): 

grp = OptionGroup(parser, 'Trace frequency filter options') 

grp.add_option('--lowpass', 

dest='lowpass_frequency', 

type=float, 

help='The value of the lowpass filter applied to traces.', 

default=None) 

grp.add_option('--lowpass_rel', 

dest='rel_lowpass_frequency', 

type=float, 

help='''The percentage of the store's sampling rate''' 

' to be used as the lowpass filter.', 

default=None) 

grp.add_option('--highpass', 

dest='highpass_frequency', 

type=float, 

help='The value of the highpass filter applied to traces.', 

default=None) 

grp.add_option('--highpass_rel', 

dest='rel_highpass_frequency', 

type=float, 

help='''The percentage of the store's samping rate''' 

' to be used as the lowpass filter.', 

default=None) 

parser.add_option_group(grp) 

 

 

def add_double_options(parser): 

grp = OptionGroup(parser, 'Double store plotting options') 

grp.add_option('--together', '-t', dest='together', 

action='store_true', default=True, 

help='Plot both stores on same axes.') 

grp.add_option('--separate', '-s', dest='together', 

action='store_false', 

help='Plot stores next to each other.') 

parser.add_option_group(grp) 

 

 

def cl_parse(command, args, setup=None): 

usage = '{0} {1}'.format(program_name, subcmds_uses[command]) 

desc = ' '.join(subcmds_desc[command].split()) 

parser = OptionParser(usage=usage, description=desc) 

add_common_options(parser) 

if setup: 

setup(parser) 

 

if args and args[0] in ('-d', '--show_defaults'): 

for opt in parser.option_list: 

if opt.default == ('NO', 'DEFAULT'): 

continue 

opt.help += (' ' if opt.help else '') + '[default: %default]' 

for grp in parser.option_groups: 

for opt in grp.option_list: 

if opt.default == ('NO', 'DEFAULT'): 

continue 

opt.help += (' ' if opt.help else '') + '[default: %default]' 

opts, args = parser.parse_args(args) 

opts = vars(opts) 

if 'show_defaults' in opts: 

del opts['show_defaults'] 

return parser, opts, args 

 

 

def verify_arguements(command, allowed, args): 

if len(args) != allowed: 

raise TypeError('{0}() takes {1} arguements ({2} given)'.format( 

command, allowed, len(args))) 

 

dir1 = args.pop(0) 

if not os.path.exists(dir1): 

raise OSError('Path does not exist: {0}'.format(dir1)) 

 

if allowed == 1: 

return dir1 

 

dir2 = args.pop(0) 

if not os.path.exists(dir2): 

raise OSError('Path does not exist: {0}'.format(dir1)) 

 

if args: 

sen_min = float(args.pop(0)) 

sen_max = float(args.pop(0)) 

return dir1, dir2, sen_min, sen_max 

else: 

return dir1, dir2 

 

 

def verify_options(command, **opts): 

lpf = None 

hpf = None 

rlpf = None 

rhpf = None 

 

tstr = 'lowpass_frequency' 

if tstr in opts: 

lpf = opts[tstr] 

tstr = 'highpass_frequency' 

if tstr in opts: 

hpf = opts[tstr] 

tstr = 'rel_lowpass_frequency' 

if tstr in opts: 

rlpf = opts[tstr] 

tstr = 'rel_highpass_frequency' 

if tstr in opts: 

rhpf = opts[tstr] 

 

if lpf and rlpf: 

raise gft_ffe('lowpass') 

if hpf and rhpf: 

raise gft_ffe('highpass') 

 

 

def command_single(command, args): 

def setup(parser): 

parser.set_defaults(plot_velocity=None) 

parser.set_defaults(plot_everything=None) 

 

parser, opts, args = cl_parse(command, args, setup) 

filename = verify_arguements('single', 1, args) 

out_filename = opts.pop('output') 

gft = gftest.createDocumentFromFile(filename, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_sstandard(command, args): 

def setup(parser): 

add_source_options(parser) 

add_sensor_options(parser) 

 

parser, opts, args = cl_parse(command, args, setup) 

st_dir = verify_arguements('sstandard', 1, args) 

out_filename = opts.pop('output') 

gft = gftest.runStandardCheck(st_dir, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_slow(command, args): 

def setup(parser): 

add_source_options(parser) 

add_sensor_options(parser) 

add_filter_options(parser) 

parser.remove_option('--highpass') 

parser.remove_option('--highpass_rel') 

parser.set_defaults(rel_lowpass_frequency=0.25) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

if opts['lowpass_frequency'] is not None: 

opts['rel_lowpass_frequency'] = None 

st_dir = verify_arguements('slow', 1, args) 

out_filename = opts.pop('output') 

gft = gftest.runStandardCheck(st_dir, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_shigh(command, args): 

def setup(parser): 

add_source_options(parser) 

add_sensor_options(parser) 

add_filter_options(parser) 

parser.remove_option('--lowpass') 

parser.remove_option('--lowpass_rel') 

parser.set_defaults(rel_highpass_frequency=0.25) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

if opts['highpass_frequency'] is not None: 

opts['rel_highpass_frequency'] = None 

st_dir = verify_arguements('shigh', 1, args) 

out_filename = opts.pop('output') 

gft = gftest.runStandardCheck(st_dir, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_slowband(command, args): 

def setup(parser): 

add_source_options(parser) 

add_sensor_options(parser) 

add_filter_options(parser) 

parser.set_defaults(lowpass_frequency=0.0018) 

parser.set_defaults(highpass_frequency=0.004) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

st_dir = verify_arguements('slowband', 1, args) 

verify_options('slowband', **opts) 

out_filename = opts.pop('output') 

gft = gftest.runStandardCheck(st_dir, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_shighband(command, args): 

def setup(parser): 

add_source_options(parser) 

add_sensor_options(parser) 

add_filter_options(parser) 

parser.set_defaults(rel_lowpass_frequency=0.125) 

parser.set_defaults(rel_highpass_frequency=0.25) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

st_dir = verify_arguements('shighband', 1, args) 

verify_options('shighband', **opts) 

out_filename = opts.pop('output') 

gft = gftest.runStandardCheck(st_dir, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_snone(command, args): 

def setup(parser): 

add_source_options(parser) 

add_sensor_options(parser) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

st_dir = verify_arguements('snone', 1, args) 

opts['rel_lowpass_frequency'] = None 

opts['rel_highpass_frequency'] = None 

out_filename = opts.pop('output') 

gft = gftest.runStandardCheck(st_dir, **opts) 

if out_filename is not None: 

return gft, out_filename 

 

 

def command_double(command, args): 

def setup(parser): 

add_double_options(parser) 

parser.set_defaults(plot_velocity=None) 

parser.set_defaults(plot_everything=None) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

filename = verify_arguements('double', 1, args) 

verify_options('double', **opts) 

out_filename = opts.pop('output') 

gfts = gftest.createDocumentFromFile(filename, 2, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

def command_dstandard(command, args): 

def setup(parser): 

add_source_options(parser) 

add_double_options(parser) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

dir1, dir2, smin, smax = verify_arguements('dstandard', 4, args) 

out_filename = opts.pop('output') 

gfts = gftest.runComparissonStandardCheck(dir1, dir2, smin, smax, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

def command_dlow(command, args): 

def setup(parser): 

add_source_options(parser) 

add_double_options(parser) 

add_filter_options(parser) 

parser.remove_option('--highpass') 

parser.remove_option('--highpass_rel') 

parser.set_defaults(rel_lowpass_frequency=0.25) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

if opts['lowpass_frequency'] is not None: 

opts['rel_lowpass_frequency'] = None 

dir1, dir2, smin, smax = verify_arguements('dlow', 4, args) 

opts['rel_highpass_frequency'] = None 

out_filename = opts.pop('output') 

gfts = gftest.runComparissonStandardCheck(dir1, dir2, smin, smax, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

def command_dhigh(command, args): 

def setup(parser): 

add_source_options(parser) 

add_double_options(parser) 

add_filter_options(parser) 

parser.remove_option('--lowpass') 

parser.remove_option('--lowpass_rel') 

parser.set_defaults(rel_highpass_frequency=0.25) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

if opts['highpass_frequency'] is not None: 

opts['rel_highpass_frequency'] = None 

dir1, dir2, smin, smax = verify_arguements('dhigh', 4, args) 

opts['rel_lowpass_frequency'] = None 

out_filename = opts.pop('output') 

gfts = gftest.runComparissonStandardCheck(dir1, dir2, smin, smax, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

def command_dlowband(command, args): 

def setup(parser): 

add_source_options(parser) 

add_double_options(parser) 

add_filter_options(parser) 

parser.set_defaults(lowpass_frequency=0.0018) 

parser.set_defaults(highpass_frequency=0.004) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

dir1, dir2, smin, smax = verify_arguements('dlowband', 4, args) 

verify_options('dlowband', **opts) 

out_filename = opts.pop('output') 

gfts = gftest.runComparissonStandardCheck(dir1, dir2, smin, smax, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

def command_dhighband(command, args): 

def setup(parser): 

add_source_options(parser) 

add_double_options(parser) 

add_filter_options(parser) 

parser.set_defaults(rel_lowpass_frequency=0.125) 

parser.set_defaults(rel_highpass_frequency=0.25) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

dir1, dir2, smin, smax = verify_arguements('dhighband', 4, args) 

verify_options('dhighband', **opts) 

out_filename = opts.pop('output') 

gfts = gftest.runComparissonStandardCheck(dir1, dir2, smin, smax, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

def command_dnone(command, args): 

def setup(parser): 

add_source_options(parser) 

add_double_options(parser) 

 

parser, opts, args = cl_parse(command, args, setup=setup) 

dir1, dir2, smin, smax = verify_arguements('dnone', 4, args) 

opts['rel_lowpass_frequency'] = None 

opts['rel_highpass_frequency'] = None 

out_filename = opts.pop('output') 

gfts = gftest.runComparissonStandardCheck(dir1, dir2, smin, smax, **opts) 

if out_filename is not None: 

return gfts, out_filename 

 

 

program_name = 'fomosto report' 

usage = 'Create a pdf of displacment and velocity traces, max. amplitude of' \ 

' traces and' \ 

' displacment spectra for Green\'s Function stores.\n\n' \ 

'Usage: {0} <subcommand> <arguments> ... [options]\n\nSubcommands:\n' \ 

'{1}\n\nTo get further help and a list of available options for any' \ 

' subcommand run:\n\n{2}{0} <subcommand> --help\n\n'. \ 

format(program_name, dict_to_string(subcmds_desc), ' '*4) 

 

 

def run_program(args): 

if len(args) < 1: 

sys.exit(usage) 

 

command = args.pop(0) 

if command in ('--help', '-h', 'help'): 

sys.exit(usage) 

 

if command in ('--multiple', '-m'): 

glbs = globals() 

cmds = [] 

while args and args[0] in subcmds_desc: 

cmds.append(args.pop(0)) 

for command in cmds: 

glbs['command_' + command](args) 

sys.exit() 

 

if command not in subcmds_desc: 

sys.exit('{0}: error: no such subcommand: {1}'. 

format(program_name, command)) 

 

if len(args) == 0 or (len(args) == 1 and 

args[0] in ('-d', '--show_defaults')): 

args.append('--help') 

 

try: 

lst = globals()['command_' + command](command, args) 

if lst is not None: 

gfts = lst[0] 

with open(lst[-1], 'w') as f: 

if isinstance(gfts, gftest): 

f.write(gfts.dump()) 

else: 

for i in lst[0]: 

f.write(i.dump()) 

 

except FomostoReportError as e: 

sys.exit(str(e)) 

 

 

if __name__ == '__main__': 

run_program(sys.argv)