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

from obspy.core.util import Enum 

 

OriginUncertaintyDescription = Enum([ 

    "horizontal uncertainty", 

    "uncertainty ellipse", 

    "confidence ellipsoid", 

]) 

 

AmplitudeCategory = Enum([ 

    "point", 

    "mean", 

    "duration", 

    "period", 

    "integral", 

    "other", 

]) 

 

OriginDepthType = Enum([ 

    "from location", 

    "from moment tensor inversion", 

    "from modeling of broad-band P waveforms", 

    "constrained by depth phases", 

    "constrained by direct phases", 

    "constrained by depth and direct phases", 

    "operator assigned", 

    "other", 

]) 

 

OriginType = Enum([ 

    "hypocenter", 

    "centroid", 

    "amplitude", 

    "macroseismic", 

    "rupture start", 

    "rupture end", 

]) 

 

MTInversionType = Enum([ 

    "general", 

    "zero trace", 

    "double couple", 

]) 

 

EvaluationMode = Enum([ 

    "manual", 

    "automatic", 

]) 

 

EvaluationStatus = Enum([ 

    "preliminary", 

    "confirmed", 

    "reviewed", 

    "final", 

    "rejected", 

]) 

 

PickOnset = Enum([ 

    "emergent", 

    "impulsive", 

    "questionable", 

]) 

 

DataUsedWaveType = Enum([ 

    "P waves", 

    "body waves", 

    "surface waves", 

    "mantle waves", 

    "combined", 

    "unknown", 

]) 

 

AmplitudeUnit = Enum([ 

    "m", 

    "s", 

    "m/s", 

    "m/(s*s)", 

    "m*s", 

    "dimensionless", 

    "other", 

]) 

 

EventDescriptionType = Enum([ 

    "felt report", 

    "Flinn-Engdahl region", 

    "local time", 

    "tectonic summary", 

    "nearest cities", 

    "earthquake name", 

    "region name", 

]) 

 

MomentTensorCategory = Enum([ 

    "teleseismic", 

    "regional", 

]) 

 

EventType = Enum([ 

    "not reported", 

    "earthquake", 

    "anthropogenic event", 

    "collapse", 

    "cavity collapse", 

    "mine collapse", 

    "building collapse", 

    "explosion", 

    "accidental explosion", 

    "chemical explosion", 

    "controlled explosion", 

    "experimental explosion", 

    "industrial explosion", 

    "mining explosion", 

    "quarry blast", 

    "road cut", 

    "blasting levee", 

    "nuclear explosion", 

    "induced or triggered event", 

    "rock burst", 

    "reservoir loading", 

    "fluid injection", 

    "fluid extraction", 

    "crash", 

    "plane crash", 

    "train crash", 

    "boat crash", 

    "other event", 

    "atmospheric event", 

    "sonic boom", 

    "sonic blast", 

    "acoustic noise", 

    "thunder", 

    "avalanche", 

    "snow avalanche", 

    "debris avalanche", 

    "hydroacoustic event", 

    "ice quake", 

    "slide", 

    "landslide", 

    "rockslide", 

    "meteorite", 

    "volcanic eruption", 

]) 

 

EventTypeCertainty = Enum([ 

    "known", 

    "suspected", 

]) 

 

SourceTimeFunctionType = Enum([ 

    "box car", 

    "triangle", 

    "trapezoid", 

    "unknown", 

]) 

 

PickPolarity = Enum([ 

    "positive", 

    "negative", 

    "undecidable", 

])