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

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

 

from obspy.xseed.blockette import Blockette 

from obspy.xseed.fields import Integer, VariableString 

 

 

class Blockette032(Blockette): 

    """ 

    Blockette 032: Cited Source Dictionary Blockette. 

 

    This blockette identifies the contributing institution that provides 

    the hypocenter and magnitude information. This blockette is used in event 

    oriented network volumes. 

    """ 

    id = 32 

    name = "Cited Source Dictionary" 

    fields = [ 

        Integer(3, "Source lookup code", 2), 

        VariableString(4, "Name of publication author", 1, 70, 'UNLPS'), 

        VariableString(5, "Date published catalog", 1, 70, 'UNLPS'), 

        VariableString(6, "Publisher name", 1, 70, 'UNLPS'), 

    ]