Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

# -*- coding: utf-8 -*- 

 

from StringIO import StringIO 

from lxml import etree 

from obspy import UTCDateTime 

from obspy.core.util import NamedTemporaryFile 

from obspy.xseed.blockette.blockette010 import Blockette010 

from obspy.xseed.blockette.blockette051 import Blockette051 

from obspy.xseed.blockette.blockette053 import Blockette053 

from obspy.xseed.blockette.blockette054 import Blockette054 

from obspy.xseed.parser import Parser 

from obspy.xseed.utils import compareSEED, SEEDParserException 

import gzip 

import os 

import unittest 

import warnings 

 

 

class ParserTestCase(unittest.TestCase): 

    """ 

    Parser test suite. 

    """ 

    def setUp(self): 

        # directory where the test files are located 

        self.path = os.path.join(os.path.dirname(__file__), 'data') 

        self.BW_SEED_files = [os.path.join(self.path, file) for file in 

                ['dataless.seed.BW_FURT', 'dataless.seed.BW_MANZ', 

                 'dataless.seed.BW_ROTZ', 'dataless.seed.BW_ZUGS']] 

 

    def test_issue165(self): 

        """ 

        Test cases related to #165: 

         - number of poles or zeros can be 0 

         - an unsupported response information somewhere in the metadata should 

           not automatically raise an Error, if the desired information can 

           still be retrieved 

 

        This test also tests if a warning is raised if no startime is given. 

        """ 

        parser = Parser() 

        file = os.path.join(self.path, "bug165.dataless") 

        t = UTCDateTime("2010-01-01T00:00:00") 

        # raises UserWarning 

        with warnings.catch_warnings(record=True) as w: 

            warnings.simplefilter("always") 

            # Trigger a warning. 

            parser.read(file) 

            self.assertEqual(len(w), 1) 

            self.assertTrue(issubclass(w[-1].category, UserWarning)) 

            self.assertTrue('date' and 'required' in \ 

                                    w[-1].message.message.lower()) 

            # Triggers a warning. 

            paz = parser.getPAZ("NZ.DCZ.20.HNZ", t) 

            result = {'digitizer_gain': 419430.0, 'gain': 24595700000000.0, 

                      'poles': [(-981 + 1009j), (-981 - 1009j), 

                                (-3290 + 1263j), (-3290 - 1263j)], 

                      'seismometer_gain': 1.01885, 'sensitivity': 427336.0, 

                      'zeros': []} 

            self.assertEqual(paz, result) 

            # triggers a UserWarning but still returns some results 

            paz = parser.getPAZ("NZ.DCZ.10.HHZ", t) 

            result = {'sensitivity': 838861000.0, 'seismometer_gain': 2000.0, 

                      'digitizer_gain': 419430.0} 

            self.assertEqual(paz, result) 

 

    def test_invalidStartHeader(self): 

        """ 

        A SEED Volume must start with a Volume Index Control Header. 

        """ 

        data = "000001S 0510019~~0001000000" 

        sp = Parser(strict=True) 

        self.assertRaises(SEEDParserException, sp.read, data) 

 

    def test_invalidStartBlockette(self): 

        """ 

        A SEED Volume must start with Blockette 010. 

        """ 

        data = "000001V 0510019~~0001000000" 

        sp = Parser(strict=True) 

        self.assertRaises(SEEDParserException, sp.read, data) 

 

    def test_string(self): 

        """ 

        Tests string representation of L{obspy.xseed.Parser} object. 

        """ 

        filename = os.path.join(self.path, 'dataless.seed.BW_MANZ') 

        p = Parser(filename) 

        sp = str(p).splitlines() 

        sp = [_i.strip() for _i in sp] 

        self.assertEquals(sp, [ 

            "Networks:", 

            "BW (BayernNetz)", 

            "Stations:", 

            "BW.MANZ (Manzenberg,Bavaria, BW-Net)", 

            "Channels:", 

            ("BW.MANZ..EHE | 200.00 Hz | Streckeisen STS-2/N seismometer | " 

                "2005-12-06 -"), 

            ("BW.MANZ..EHN | 200.00 Hz | Streckeisen STS-2/N seismometer | " 

                "2005-12-06 -"), 

            ("BW.MANZ..EHZ | 200.00 Hz | Streckeisen STS-2/N seismometer | " 

                "2005-12-06 -")]) 

 

    def test_get_inventory(self): 

        """ 

        Tests the parser's getInventory() method. 

        """ 

        filename = os.path.join(self.path, 'dataless.seed.BW_FURT') 

        p = Parser(filename) 

        self.assertEqual(p.getInventory(), 

            {'networks': [{'network_code': 'BW', 

                'network_name': 'BayernNetz'}], 

            'stations': [{'station_name': 'Furstenfeldbruck, Bavaria, BW-Net', 

                'station_id': 'BW.FURT'}], 

            'channels': [ 

                {'channel_id': 'BW.FURT..EHZ', 

                    'start_date': UTCDateTime(2001, 1, 1, 0, 0), 

                    'instrument': 'Lennartz LE-3D/1 seismometer', 

                    'end_date': '', 'sampling_rate': 200.0}, 

                {'channel_id': 'BW.FURT..EHN', 

                    'start_date': UTCDateTime(2001, 1, 1, 0, 0), 

                    'instrument': 'Lennartz LE-3D/1 seismometer', 

                    'end_date': '', 

                    'sampling_rate': 200.0}, 

                {'channel_id': 'BW.FURT..EHE', 

                    'start_date': UTCDateTime(2001, 1, 1, 0, 0), 

                    'instrument': 'Lennartz LE-3D/1 seismometer', 

                    'end_date': '', 

                    'sampling_rate': 200.0}]}) 

 

    def test_nonExistingFilename(self): 

        """ 

        Test reading non existing file. 

        """ 

        self.assertRaises(IOError, Parser, "XYZ") 

 

    def test_blocketteStartsAfterRecord(self): 

        """ 

        '... 058003504 1.00000E+00 0.00000E+0000 000006S*0543864 ... ' 

        ' 0543864' -> results in Blockette 005 

        """ 

        # create a valid blockette 010 with record length 256 

        b010 = "0100042 2.4082008,001~2038,001~2009,001~~~" 

        blockette = Blockette010(strict=True, compact=True) 

        blockette.parseSEED(b010) 

        self.assertEquals(b010, blockette.getSEED()) 

        # create a valid blockette 054 

        b054 = "0540240A0400300300000009" + ("+1.58748E-03" * 18) 

        blockette = Blockette054(strict=True, compact=True) 

        blockette.parseSEED(b054) 

        self.assertEquals(b054, blockette.getSEED()) 

        # combine data 

        data = "000001V " + b010 + (' ' * 206) 

        data += "000002S " + b054 + (' ' * 8) 

        data += "000003S*" + b054 + (' ' * 8) 

        # read records 

        parser = Parser(strict=True) 

        parser.read(data) 

 

    def test_multipleContinuedStationControlHeader(self): 

        """ 

        """ 

        # create a valid blockette 010 with record length 256 

        b010 = "0100042 2.4082008,001~2038,001~2009,001~~~" 

        blockette = Blockette010(strict=True, compact=True) 

        blockette.parseSEED(b010) 

        self.assertEquals(b010, blockette.getSEED()) 

        # create a valid blockette 054 

        b054 = "0540960A0400300300000039" 

        nr = "" 

        for i in range(0, 78): 

            nr = nr + "+1.000%02dE-03" % i  # 960 chars 

        blockette = Blockette054(strict=True, compact=True) 

        blockette.parseSEED(b054 + nr) 

        self.assertEquals(b054 + nr, blockette.getSEED()) 

        # create a blockette 051 

        b051 = '05100271999,123~~0001000000' 

        blockette = Blockette051(strict=False) 

        # ignore user warning 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("ignore") 

            blockette.parseSEED(b051) 

        # combine data (each line equals 256 chars) 

        data = "000001V " + b010 + (' ' * 206) 

        data += "000002S " + b054 + nr[0:224]  # 256-8-24 = 224 

        data += "000003S*" + nr[224:472]  # 256-8 = 248 

        data += "000004S*" + nr[472:720] 

        data += "000005S*" + nr[720:] + b051 + ' ' * 5  # 5 spaces left 

        self.assertEqual(len(data), 256 * 5) 

        data += "000006S " + b054 + nr[0:224]  # 256-8-24 = 224 

        data += "000007S*" + nr[224:472]  # 256-8 = 248 

        data += "000008S*" + nr[472:720] 

        data += "000009S*" + nr[720:] + ' ' * 32  # 32 spaces left 

        self.assertEqual(len(data), 256 * 9) 

        # read records 

        parser = Parser(strict=False) 

        with warnings.catch_warnings(): 

            warnings.simplefilter("ignore") 

            parser.read(data) 

        # check results 

        self.assertEquals(sorted(parser.blockettes.keys()), [10, 51, 54]) 

        self.assertEquals(len(parser.blockettes[10]), 1) 

        self.assertEquals(len(parser.blockettes[51]), 1) 

        self.assertEquals(len(parser.blockettes[54]), 2) 

 

    def test_blocketteLongerThanRecordLength(self): 

        """ 

        If a blockette is longer than the record length it should result in 

        more than one record. 

        """ 

        parser = Parser(strict=True) 

        # Set record length to 100. 

        parser.record_length = 100 

        # Use a blockette 53 string. 

        SEED_string = '0530382A01002003+6.00770E+07+2.00000E-02002+0.00000E' \ 

            '+00+0.00000E+00+0.00000E+00+0.00000E+00+0.00000E+00+0.00000E+0' \ 

            '0+0.00000E+00+0.00000E+00005-3.70040E-02-3.70160E-02+0.00000E+' \ 

            '00+0.00000E+00-3.70040E-02+3.70160E-02+0.00000E+00+0.00000E+00' \ 

            '-2.51330E+02+0.00000E+00+0.00000E+00+0.00000E+00-1.31040E+02-4' \ 

            '.67290E+02+0.00000E+00+0.00000E+00-1.31040E+02+4.67290E+02+0.0' \ 

            '0000E+00+0.00000E+00' 

        blkt_53 = Blockette053() 

        blkt_53.parseSEED(SEED_string) 

        # This just tests an internal SEED method. 

        records = parser._createCutAndFlushRecord([blkt_53], 'S') 

        # This should result in five records. 

        self.assertEqual(len(records), 5) 

        # Each records should be 100 - 6 = 94 long. 

        for record in records: 

            self.assertEqual(len(record), 94) 

        # Reassemble the String. 

        new_string = '' 

        for record in records: 

            new_string += record[2:] 

        # Compare the new and the old string. 

        self.assertEqual(new_string.strip(), SEED_string) 

 

    def test_readAndWriteSEED(self): 

        """ 

        Reads all SEED records from the Bavarian network and writes them 

        again. 

 

        This should not change them. 

 

        There are some differences which will be edited before comparison: 

        - The written SEED file will always have the version 2.4. BW uses 

          version 2.3. 

 

        The different formating of numbers in the stations blockettes will not 

        be changed but 'evened'. Both are valid ways to do it - see SEED-Manual 

        chapter 3 for more informations. 

        """ 

        # Loop over all files. 

        for file in self.BW_SEED_files: 

            f = open(file, 'r') 

            # Original SEED file. 

            original_seed = f.read() 

            f.seek(0) 

            # Parse and write the data. 

            parser = Parser(f) 

            f.close() 

            new_seed = parser.getSEED() 

            # compare both SEED strings 

            compareSEED(original_seed, new_seed) 

            del parser 

            parser1 = Parser(original_seed) 

            parser2 = Parser(new_seed) 

            self.assertEqual(parser1.getSEED(), parser2.getSEED()) 

            del parser1, parser2 

 

    def test_createReadAssertAndWriteXSEED(self): 

        """ 

        This test takes some SEED files, reads them to a Parser object 

        and converts them back to SEED once. This is done to avoid any 

        formating issues as seen in test_readAndWriteSEED. 

 

        Therefore the reading and writing of SEED files is considered to be 

        correct. 

 

        Finally the resulting SEED gets converted to XSEED and back to SEED 

        and the two SEED strings are then evaluated to be identical. 

 

        This tests also checks for XML validity using a XML schema. 

        """ 

        # Loop over all files and versions. 

        for version in ['1.0', '1.1']: 

            # Path to XML schema file. 

            xsd_path = os.path.join(self.path, 'xml-seed-%s.xsd' % version) 

            # Prepare validator. 

            f = open(xsd_path, 'r') 

            xmlschema_doc = etree.parse(f) 

            f.close() 

            xmlschema = etree.XMLSchema(xmlschema_doc) 

            for file in self.BW_SEED_files: 

                # Parse the file. 

                parser1 = Parser(file) 

                # Convert to SEED once to avoid any issues seen in 

                # test_readAndWriteSEED. 

                original_seed = parser1.getSEED() 

                del parser1 

                # Now read the file, parse it, write XSEED, read XSEED and 

                # write SEED again. The output should be totally identical. 

                parser2 = Parser(original_seed) 

                xseed_string = parser2.getXSEED(version=version) 

                del parser2 

                # Validate XSEED. 

                doc = etree.parse(StringIO(xseed_string)) 

                self.assertTrue(xmlschema.validate(doc)) 

                del doc 

                parser3 = Parser(xseed_string) 

                new_seed = parser3.getSEED() 

                self.assertEqual(original_seed, new_seed) 

                del parser3, original_seed, new_seed 

 

    def test_readFullSEED(self): 

        """ 

        Test the reading of a full-SEED file. The data portion will be omitted. 

        """ 

        filename = os.path.join(self.path, 'arclink_full.seed') 

        sp = Parser(filename) 

        # Just checks whether certain blockettes are written. 

        self.assertEqual(len(sp.stations), 1) 

        self.assertEqual([_i.id for _i in sp.volume], [10]) 

        self.assertEqual([_i.id for _i in sp.abbreviations], 

                [30, 33, 33, 34, 34, 34, 34, 41, 43, 44, 47, 47, 48, 48, 48]) 

        self.assertEqual([_i.id for _i in sp.stations[0]], [50, 52, 60, 58]) 

        self.assertEqual(sp.stations[0][0].network_code, 'GR') 

        self.assertEqual(sp.stations[0][0].station_call_letters, 'FUR') 

 

    def test_getPAZ(self): 

        """ 

        Test extracting poles and zeros information 

        """ 

        filename = os.path.join(self.path, 'arclink_full.seed') 

        sp = Parser(filename) 

        paz = sp.getPAZ('BHE') 

        self.assertEqual(paz['gain'], +6.00770e+07) 

        self.assertEqual(paz['zeros'], [0j, 0j]) 

        self.assertEqual(paz['poles'], [(-3.70040e-02 + 3.70160e-02j), 

            (-3.70040e-02 - 3.70160e-02j), (-2.51330e+02 + 0.00000e+00j), 

            (-1.31040e+02 - 4.67290e+02j), (-1.31040e+02 + 4.67290e+02j)]) 

        self.assertEqual(paz['sensitivity'], +7.86576e+08) 

        self.assertEqual(paz['seismometer_gain'], +1.50000E+03) 

        # Raise exception for undefined channels 

        self.assertRaises(SEEDParserException, sp.getPAZ, 'EHE') 

        # 

        # Do the same for another dataless file 

        # 

        filename = os.path.join(self.path, 'dataless.seed.BW_FURT') 

        sp = Parser(filename) 

        paz = sp.getPAZ('EHE') 

        self.assertEqual(paz['gain'], +1.00000e+00) 

        self.assertEqual(paz['zeros'], [0j, 0j, 0j]) 

        self.assertEqual(paz['poles'], [(-4.44400e+00 + 4.44400e+00j), 

                                        (-4.44400e+00 - 4.44400e+00j), 

                                        (-1.08300e+00 + 0.00000e+00j)]) 

        self.assertEqual(paz['sensitivity'], +6.71140E+08) 

        self.assertEqual(paz['seismometer_gain'], 4.00000E+02) 

        # Raise exception for undefined channels 

        self.assertRaises(SEEDParserException, sp.getPAZ, 'BHE') 

        # Raise UserWarning if not a Laplacian transfer function ('A'). 

        # Modify transfer_fuction_type on the fly 

        for blk in sp.blockettes[53]: 

            blk.transfer_function_types = 'X' 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("error", UserWarning) 

            self.assertRaises(UserWarning, sp.getPAZ, 'EHE') 

        # 

        # And the same for yet another dataless file 

        # 

        filename = os.path.join(self.path, 'nied.dataless.gz') 

        f = StringIO(gzip.open(filename).read()) 

        sp = Parser(f) 

        gain = [+3.94857E+03, +4.87393E+04, +3.94857E+03] 

        zeros = [[+0.00000E+00 + 0.00000E+00j, +0.00000E+00 + 0.00000E+00j], 

                 [+0.00000E+00 + 0.00000E+00j, +0.00000E+00 + 0.00000E+00j, 

                  -6.32511E+02 + 0.00000E+00j], 

                 [+0.00000E+00 + 0.00000E+00j, +0.00000E+00 + 0.00000E+00j]] 

        poles = [[-1.23413E-02 + 1.23413E-02j, -1.23413E-02 - 1.23413E-02j, 

                  -3.91757E+01 + 4.91234E+01j, -3.91757E+01 - 4.91234E+01j], 

                 [-3.58123E-02 - 4.44766E-02j, -3.58123E-02 + 4.44766E-02j, 

                  -5.13245E+02 + 0.00000E+00j, -6.14791E+04 + 0.00000E+00j], 

                 [-1.23413E-02 + 1.23413E-02j, -1.23413E-02 - 1.23413E-02j, 

                  -3.91757E+01 + 4.91234E+01j, -3.91757E+01 - 4.91234E+01j]] 

        sensitivity = [+4.92360E+08, +2.20419E+06, +9.84720E+08] 

        seismometer_gain = [+2.29145E+03, +1.02583E+01, +2.29145E+03] 

        for i, channel in enumerate(['BHZ', 'BLZ', 'LHZ']): 

            paz = sp.getPAZ(channel) 

            self.assertEqual(paz['gain'], gain[i]) 

            self.assertEqual(paz['zeros'], zeros[i]) 

            self.assertEqual(paz['poles'], poles[i]) 

            self.assertEqual(paz['sensitivity'], sensitivity[i]) 

            self.assertEqual(paz['seismometer_gain'], seismometer_gain[i]) 

        sp = Parser(os.path.join(self.path, 'dataless.seed.BW_RJOB')) 

        paz = sp.getPAZ("BW.RJOB..EHZ", UTCDateTime("2007-01-01")) 

        result = {'gain': 1.0, 

                  'poles': [(-4.444 + 4.444j), (-4.444 - 4.444j), 

                            (-1.083 + 0j)], 

                  'seismometer_gain': 400.0, 

                  'sensitivity': 671140000.0, 

                  'zeros': [0j, 0j, 0j], 

                  'digitizer_gain': 1677850.0} 

        self.assertEqual(paz, result) 

        paz = sp.getPAZ("BW.RJOB..EHZ", UTCDateTime("2010-01-01")) 

        result = {'gain': 60077000.0, 

                  'poles': [(-0.037004000000000002 + 0.037016j), 

                            (-0.037004000000000002 - 0.037016j), 

                            (-251.33000000000001 + 0j), 

                            (-131.03999999999999 - 467.29000000000002j), 

                            (-131.03999999999999 + 467.29000000000002j)], 

                  'seismometer_gain': 1500.0, 

                  'sensitivity': 2516800000.0, 

                  'zeros': [0j, 0j], 

                  'digitizer_gain':  1677850.0} 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

        # last test again, check arg name changed in [3722] 

        paz = sp.getPAZ(channel_id="BW.RJOB..EHZ", 

                        datetime=UTCDateTime("2010-01-01")) 

        result = {'gain': 60077000.0, 

                  'poles': [(-0.037004000000000002 + 0.037016j), 

                            (-0.037004000000000002 - 0.037016j), 

                            (-251.33000000000001 + 0j), 

                            (-131.03999999999999 - 467.29000000000002j), 

                            (-131.03999999999999 + 467.29000000000002j)], 

                  'seismometer_gain': 1500.0, 

                  'sensitivity': 2516800000.0, 

                  'zeros': [0j, 0j], 

                  'digitizer_gain':  1677850.0} 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

 

    def test_getPAZFromXSEED(self): 

        """ 

        Get PAZ from XSEED file, testcase for #146 

        """ 

        filename = os.path.join(self.path, 'dataless.seed.BW_FURT') 

        sp1 = Parser(filename) 

        sp2 = Parser(sp1.getXSEED()) 

        paz = sp2.getPAZ('EHE') 

        result = {'gain': 1.00000e+00, 

                  'zeros': [0j, 0j, 0j], 

                  'poles': [(-4.44400e+00 + 4.44400e+00j), 

                            (-4.44400e+00 - 4.44400e+00j), 

                            (-1.08300e+00 + 0.00000e+00j)], 

                  'sensitivity': 6.71140E+08, 

                  'seismometer_gain': 4.00000E+02, 

                  'digitizer_gain': 1677850.0} 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

 

    def test_getCoordinates(self): 

        """ 

        Test extracting coordinates for SEED and XSEED (including #146) 

        """ 

        # SEED 

        sp = Parser(os.path.join(self.path, 'dataless.seed.BW_RJOB')) 

        result = {'elevation': 860.0, 'latitude': 47.737166999999999, 

            'longitude': 12.795714, 'local_depth': 0} 

        paz = sp.getCoordinates("BW.RJOB..EHZ", UTCDateTime("2007-01-01")) 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

        paz = sp.getCoordinates("BW.RJOB..EHZ", UTCDateTime("2010-01-01")) 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

        # XSEED 

        sp2 = Parser(sp.getXSEED()) 

        paz = sp2.getCoordinates("BW.RJOB..EHZ", UTCDateTime("2007-01-01")) 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

        paz = sp2.getCoordinates("BW.RJOB..EHZ", UTCDateTime("2010-01-01")) 

        self.assertEqual(sorted(paz.items()), sorted(result.items())) 

 

    def test_selectDoesNotChangeTheParserFormat(self): 

        """ 

        Test that using the _select() method of the Parser object does 

        not change the _format attribute. 

        """ 

        p = Parser(os.path.join(self.path, "dataless.seed.BW_FURT.xml")) 

        self.assertEqual(p._format, "XSEED") 

        p._select(p.getInventory()["channels"][0]["channel_id"]) 

        self.assertEqual(p._format, "XSEED") 

 

    def test_createRESPFromXSEED(self): 

        """ 

        Tests RESP file creation from XML-SEED. 

        """ 

        ### example 1 

        # parse Dataless SEED 

        filename = os.path.join(self.path, 'dataless.seed.BW_FURT') 

        sp1 = Parser(filename) 

        # write XML-SEED 

        tempfile = NamedTemporaryFile().name 

        sp1.writeXSEED(tempfile) 

        # parse XML-SEED 

        sp2 = Parser(tempfile) 

        # create RESP files 

        _resp_list = sp2.getRESP() 

        os.remove(tempfile) 

        ### example 2 

        # parse Dataless SEED 

        filename = os.path.join(self.path, 'arclink_full.seed') 

        sp1 = Parser(filename) 

        # write XML-SEED 

        tempfile = NamedTemporaryFile().name 

        sp1.writeXSEED(tempfile) 

        # parse XML-SEED 

        sp2 = Parser(tempfile) 

        # create RESP files 

        _resp_list = sp2.getRESP() 

        os.remove(tempfile) 

 

    def test_compareBlockettes(self): 

        """ 

        Tests the comparison of two blockettes. 

        """ 

        p = Parser() 

        b010_1 = "0100042 2.4082008,001~2038,001~2009,001~~~" 

        blockette1 = Blockette010(strict=True, compact=True, 

                                  xseed_version='1.0') 

        blockette1.parseSEED(b010_1) 

        blockette2 = Blockette010() 

        blockette2.parseSEED(b010_1) 

        b010_3 = "0100042 2.4082009,001~2038,001~2009,001~~~" 

        blockette3 = Blockette010(strict=True, compact=True) 

        blockette3.parseSEED(b010_3) 

        blockette4 = Blockette010(xseed_version='1.0') 

        blockette4.parseSEED(b010_3) 

        self.assertTrue(p._compareBlockettes(blockette1, blockette2)) 

        self.assertFalse(p._compareBlockettes(blockette1, blockette3)) 

        self.assertFalse(p._compareBlockettes(blockette2, blockette3)) 

        self.assertTrue(p._compareBlockettes(blockette3, blockette4)) 

 

    def test_missingRequiredDateTimes(self): 

        """ 

        A warning should be raised if a blockette misses a required date. 

        """ 

        # blockette 10 - missing start time 

        b010 = "0100034 2.408~2038,001~2009,001~~~" 

        # strict raises an exception 

        blockette = Blockette010(strict=True) 

        self.assertRaises(SEEDParserException, blockette.parseSEED, b010) 

        # If strict is false, a warning is raised. This is tested in 

        # test_bug165. 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("ignore", UserWarning) 

            blockette = Blockette010() 

            blockette.parseSEED(b010) 

            self.assertEquals(b010, blockette.getSEED()) 

        # blockette 10 - missing volume time 

        b010 = "0100034 2.4082008,001~2038,001~~~~" 

        # strict raises an exception 

        blockette = Blockette010(strict=True) 

        self.assertRaises(SEEDParserException, blockette.parseSEED, b010) 

        # non-strict 

        blockette = Blockette010() 

        # The warning cannot be tested due to being issued only once. 

        # A similar case is tested in test_bug165. 

        blockette.parseSEED(b010) 

        self.assertEquals(b010, blockette.getSEED()) 

 

    def test_issue298a(self): 

        """ 

        Test case for issue #298: blockette size exceeds 9999 bytes. 

        """ 

        file = os.path.join(self.path, "AI.ESPZ._.BHE.dataless") 

        parser = Parser(file) 

        parser.getRESP() 

 

    def test_issue298b(self): 

        """ 

        Second test case for issue #298: blockette size exceeds 9999 bytes. 

        """ 

        file = os.path.join(self.path, "AI.ESPZ._.BH_.dataless") 

        parser = Parser(file) 

        parser.getRESP() 

 

    def test_issue319(self): 

        """ 

        Test case for issue #319: multiple abbreviation dictionaries. 

        """ 

        filename = os.path.join(self.path, 'BN.LPW._.BHE.dataless') 

        # raises a UserWarning: More than one Abbreviation Dictionary Control 

        # Headers found! 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("error", UserWarning) 

            self.assertRaises(UserWarning, Parser, filename) 

            warnings.simplefilter("ignore", UserWarning) 

            parser = Parser(filename) 

            self.assertEquals(parser.version, 2.3) 

 

    def test_issue157(self): 

        """ 

        Test case for issue #157: re-using parser object. 

        """ 

        expected = {'latitude': 48.162899, 'elevation': 565.0, 

            'longitude': 11.2752, 'local_depth': 0.0} 

        filename1 = os.path.join(self.path, 'dataless.seed.BW_FURT') 

        filename2 = os.path.join(self.path, 'dataless.seed.BW_MANZ') 

        t = UTCDateTime("2010-07-01") 

        parser = Parser() 

        parser.read(filename2) 

        # parsing a second time will raise a UserWarning: Clearing parser 

        # before every subsequent read() 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("error", UserWarning) 

            self.assertRaises(UserWarning, parser.read, filename1) 

            warnings.simplefilter("ignore", UserWarning) 

            parser.read(filename1) 

            result = parser.getCoordinates("BW.FURT..EHZ", t) 

            self.assertEqual(expected, result) 

 

    def test_issue358(self): 

        """ 

        Test case for issue #358. 

        """ 

        filename = os.path.join(self.path, 'CL.AIO.dataless') 

        parser = Parser() 

        parser.read(filename) 

        dt = UTCDateTime('2012-01-01') 

        parser.getPAZ('CL.AIO.00.EHZ', dt) 

 

    def test_issue361(self): 

        """ 

        Test case for issue #361. 

        """ 

        filename = os.path.join(self.path, 'G.SPB.dataless') 

        parser = Parser() 

        parser.read(filename) 

        # 1 - G.SPB..BHZ - raises UserWarning - no Laplace transform 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("error", UserWarning) 

            self.assertRaises(UserWarning, parser.getPAZ, 'G.SPB..BHZ') 

        # 2 - G.SPB.00.BHZ - raises exception because of multiple results 

        self.assertRaises(SEEDParserException, parser.getPAZ, 'G.SPB.00.BHZ') 

        # 3 - G.SPB.00.BHZ with datetime - again no Laplace transform 

        dt = UTCDateTime('2007-01-01') 

        with warnings.catch_warnings(record=True): 

            warnings.simplefilter("error", UserWarning) 

            self.assertRaises(UserWarning, parser.getPAZ, 'G.SPB.00.BHZ', dt) 

        # 4 - G.SPB.00.BHZ with later datetime works 

        dt = UTCDateTime('2012-01-01') 

        parser.getPAZ('G.SPB.00.BHZ', dt) 

 

    def test_splitStationsDataless2XSEED(self): 

        """ 

        Test case for writing dataless to XSEED with multiple entries. 

        """ 

        filename = os.path.join(self.path, 'dataless.seed.BW_DHFO') 

        parser = Parser() 

        parser.read(filename) 

        tempfile = NamedTemporaryFile().name 

        # this will create two files due to two entries in dataless 

        parser.writeXSEED(tempfile, split_stations=True) 

        os.remove(tempfile) 

        # the second filename is appended with the timestamp of start period 

        os.remove(tempfile + '.1301529600.0.xml') 

 

 

def suite(): 

    return unittest.makeSuite(ParserTestCase, 'test') 

 

 

if __name__ == '__main__': 

    unittest.main(defaultTest='suite')