pysmo.lib
#
Pysmo library module.
Modules:
-
decorators
–Decorators for pysmo.
-
defaults
–Defaults for pysmo functions/classes.
-
io
–I/O classes.
-
typing
–Typing related items.
-
validators
–Validators for pysmo classes using
attrs
.
decorators
#
Decorators for pysmo.
Functions:
-
add_doc
–Decorator to add a docstring to a function via decorator.
-
value_not_none
–Decorator to ensure the value in Class properties is not None.
add_doc
#
Decorator to add a docstring to a function via decorator.
Useful to use e.g. f-strings in the docstring.
Attributes:
-
docstring
–The docstring to add.
Returns:
-
Callable
–Function with docstring applied.
Source code in pysmo/lib/decorators.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
value_not_none
#
Decorator to ensure the value in Class properties is not None.
Parameters:
Returns:
Source code in pysmo/lib/decorators.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
defaults
#
Defaults for pysmo functions/classes.
Classes:
-
SEISMOGRAM_DEFAULTS
–Defaults for classes related to
Seismogram
.
SEISMOGRAM_DEFAULTS
#
Bases: Enum
Defaults for classes related to Seismogram
.
Attributes:
-
begin_time
–Seismogram begin time.
-
delta
–Sampling interval.
Source code in pysmo/lib/defaults.py
9 10 11 12 13 14 15 |
|
begin_time
class-attribute
instance-attribute
#
begin_time = fromtimestamp(0, tz=utc)
Seismogram begin time.
io
#
I/O classes.
This module contains classes that are not compatible with pysmo types, but serve as bases for classes that are. This means all functionality in this modules is available elsewhere, and these classes should not be used directly by users.
Classes:
-
SacIO
–Access SAC files in Python.
SacIO
#
Bases: SacIOBase
Access SAC files in Python.
The SacIO
class reads and writes data and header values to and from a
SAC file. Instances of SacIO
provide attributes named identially to
header names in the SAC file format. Additonal attributes may be set, but
are not written to a SAC file (because there is no space reserved for them
there). Class attributes with corresponding header fields in a SAC file
(for example the begin time b
) are checked for a
valid format before being saved in the SacIO
instance.
Warning
This class should typically never be used directly. Instead please
use the SAC
class, which inherits all attributes
and methods from here.
Examples:
Create a new instance from a file and print seismogram data:
>>> from pysmo._io import SacIO
>>> my_sac = SacIO.from_file('testfile.sac')
>>> data = my_sac.data
>>> data
array([-1616.0, -1609.0, -1568.0, -1606.0, -1615.0, -1565.0, ...
Read the sampling rate:
>>> delta = my_sac.delta
>>> delta
0.019999999552965164
Change the sampling rate:
>>> newdelta = 0.05
>>> my_sac.delta = newdelta
>>> my_sac.delta
0.05
Create a new instance from IRIS services:
>>> from pysmo._io import SacIO
>>> my_sac = SacIO.from_iris(
>>> net="C1",
>>> sta="VA01",
>>> cha="BHZ",
>>> loc="--",
>>> start="2021-03-22T13:00:00",
>>> duration=1 * 60 * 60,
>>> scale="AUTO",
>>> demean="true",
>>> force_single_result=True)
>>> my_sac.npts
144001
For each SAC(file) header field there is a corresponding attribute in this
class. There are a lot of header fields in a SAC file, which are all called
the same way when using SacIO
.
Methods:
-
from_buffer
–Create a new SAC instance from a SAC data buffer.
-
from_file
–Create a new SAC instance from a SAC file.
-
from_iris
–Create a list of SAC instances from a single IRIS
-
read
–Read data and headers from a SAC file into an existing SAC instance.
-
read_buffer
–Read data and headers from a SAC byte buffer into an existing SAC instance.
-
write
–Writes data and header values to a SAC file.
Attributes:
-
a
(float | None
) –First arrival time (seconds relative to reference time).
-
az
(float
) –Event to station azimuth (degrees).
-
b
(float
) –Beginning value of the independent variable.
-
baz
(float
) –Station to event azimuth (degrees).
-
cmpaz
(float | None
) –Component azimuth (degrees clockwise from north).
-
cmpinc
(float | None
) –Component incident angle (degrees from upward vertical; SEED/MINISEED uses dip: degrees from horizontal down).
-
data
(NDArray
) –Seismogram data.
-
delta
(float
) –Increment between evenly spaced samples (nominal value).
-
depmax
(float | None
) –Maximum value of dependent variable.
-
depmen
(float | None
) –Mean value of dependent variable.
-
depmin
(float | None
) –Minimum value of dependent variable.
-
dist
(float
) –Station to event distance (km).
-
e
(float
) –Ending value of the independent variable.
-
evdp
(float | None
) –Event depth below surface (kilometers -- previously meters).
-
evel
(float | None
) –Event elevation (meters).
-
evla
(float | None
) –Event latitude (degrees, north positive).
-
evlo
(float | None
) –Event longitude (degrees, east positive).
-
f
(float | None
) –Fini or end of event time (seconds relative to reference time).
-
gcarc
(float
) –Station to event great circle arc length (degrees).
-
ibody
(str | None
) –Body / Spheroid definition used in Distance Calculations.
-
idep
(str
) –Type of dependent variable.
-
ievreg
(str | None
) –Event geographic region.
-
ievtyp
(str
) –Type of event.
-
iftype
(str
) –Type of file.
-
iinst
(str | None
) –Type of recording instrument.
-
imagsrc
(str | None
) –Source of magnitude information.
-
imagtyp
(str | None
) –Magnitude type.
-
iqual
(str | None
) –Quality of data.
-
istreg
(str | None
) –Station geographic region.
-
isynth
(str | None
) –Synthetic data flag.
-
iztype
(str
) –Reference time equivalence.
-
ka
(str | None
) –First arrival time identification.
-
kcmpnm
(str | None
) –Channel name. SEED volumes use three character names, and the third is the component/orientation. For horizontals, the current trend is to use 1 and 2 instead of N and E.
-
kdatrd
(str | None
) –Date data was read onto computer.
-
kevnm
(str | None
) –Event name.
-
kf
(str | None
) –Fini identification.
-
khole
(str | None
) –Nuclear: hole identifier; Other: location identifier (LOCID).
-
kinst
(str | None
) –Generic name of recording instrument.
-
knetwk
(str | None
) –Name of seismic network.
-
ko
(str | None
) –Event origin time identification.
-
kstnm
(str | None
) –Station name.
-
kt0
(str | None
) –User defined time pick identification.
-
kt1
(str | None
) –User defined time pick identification.
-
kt2
(str | None
) –User defined time pick identification.
-
kt3
(str | None
) –User defined time pick identification.
-
kt4
(str | None
) –User defined time pick identification.
-
kt5
(str | None
) –User defined time pick identification.
-
kt6
(str | None
) –User defined time pick identification.
-
kt7
(str | None
) –User defined time pick identification.
-
kt8
(str | None
) –User defined time pick identification.
-
kt9
(str | None
) –User defined time pick identification.
-
kuser0
(str | None
) –User defined variable storage area.
-
kuser1
(str | None
) –User defined variable storage area.
-
kuser2
(str | None
) –User defined variable storage area.
-
kzdate
(str | None
) –ISO 8601 format of GMT reference date.
-
kztime
(str | None
) –Alphanumeric form of GMT reference time.
-
lcalda
(Literal[True]
) –TRUE if DIST, AZ, BAZ, and GCARC are to be calculated from station and event coordinates.
-
leven
(bool
) –TRUE if data is evenly spaced.
-
lovrok
(bool | None
) –TRUE if it is okay to overwrite this file on disk.
-
lpspol
(bool | None
) –TRUE if station components have a positive polarity (left-hand rule).
-
mag
(float | None
) –Event magnitude.
-
nevid
(int | None
) –Event ID (CSS 3.0).
-
norid
(int | None
) –Origin ID (CSS 3.0).
-
npts
(int
) –Number of points per data component.
-
nvhdr
(int
) –Header version number.
-
nwfid
(int | None
) –Waveform ID (CSS 3.0).
-
nxsize
(int | None
) –Spectral Length (Spectral files only).
-
nysize
(int | None
) –Spectral Width (Spectral files only).
-
nzhour
(int | None
) –GMT hour.
-
nzjday
(int | None
) –GMT julian day.
-
nzmin
(int | None
) –GMT minute.
-
nzmsec
(int | None
) –GMT millisecond.
-
nzsec
(int | None
) –GMT second.
-
nzyear
(int | None
) –GMT year corresponding to reference (zero) time in file.
-
o
(float | None
) –Event origin time (seconds relative to reference time).
-
odelta
(float | None
) –Observed increment if different from nominal value.
-
resp0
(float | None
) –Instrument response parameter 0 (not currently used).
-
resp1
(float | None
) –Instrument response parameter 1 (not currently used).
-
resp2
(float | None
) –Instrument response parameter 2 (not currently used).
-
resp3
(float | None
) –Instrument response parameter 3 (not currently used).
-
resp4
(float | None
) –Instrument response parameter 4 (not currently used).
-
resp5
(float | None
) –Instrument response parameter 5 (not currently used).
-
resp6
(float | None
) –Instrument response parameter 6 (not currently used).
-
resp7
(float | None
) –Instrument response parameter 7 (not currently used).
-
resp8
(float | None
) –Instrument response parameter 8 (not currently used).
-
resp9
(float | None
) –Instrument response parameter 9 (not currently used).
-
stdp
(float | None
) –Station depth below surface (meters).
-
stel
(float | None
) –Station elevation above sea level (meters).
-
stla
(float | None
) –Station latitude (degrees, north positive).
-
stlo
(float | None
) –Station longitude (degrees, east positive).
-
t0
(float | None
) –User defined time pick or marker 0 (seconds relative to reference time).
-
t1
(float | None
) –User defined time pick or marker 1 (seconds relative to reference time).
-
t2
(float | None
) –User defined time pick or marker 2 (seconds relative to reference time).
-
t3
(float | None
) –User defined time pick or marker 3 (seconds relative to reference time).
-
t4
(float | None
) –User defined time pick or marker 4 (seconds relative to reference time).
-
t5
(float | None
) –User defined time pick or marker 5 (seconds relative to reference time).
-
t6
(float | None
) –User defined time pick or marker 6 (seconds relative to reference time).
-
t7
(float | None
) –User defined time pick or marker 7 (seconds relative to reference time).
-
t8
(float | None
) –User defined time pick or marker 8 (seconds relative to reference time).
-
t9
(float | None
) –User defined time pick or marker 9 (seconds relative to reference time).
-
user0
(float | None
) –User defined variable storage area.
-
user1
(float | None
) –User defined variable storage area.
-
user2
(float | None
) –User defined variable storage area.
-
user3
(float | None
) –User defined variable storage area.
-
user4
(float | None
) –User defined variable storage area.
-
user5
(float | None
) –User defined variable storage area.
-
user6
(float | None
) –User defined variable storage area.
-
user7
(float | None
) –User defined variable storage area.
-
user8
(float | None
) –User defined variable storage area.
-
user9
(float | None
) –User defined variable storage area.
-
xmaximum
(float | None
) –Maximum value of X (Spectral files only).
-
xminimum
(float | None
) –Minimum value of X (Spectral files only).
-
ymaximum
(float | None
) –Maximum value of Y (Spectral files only).
-
yminimum
(float | None
) –Minimum value of Y (Spectral files only).
Source code in pysmo/lib/io/_sacio/sacio.py
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 |
|
a
class-attribute
instance-attribute
#
a: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
First arrival time (seconds relative to reference time).
b
class-attribute
instance-attribute
#
Beginning value of the independent variable.
cmpaz
class-attribute
instance-attribute
#
cmpaz: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Component azimuth (degrees clockwise from north).
cmpinc
class-attribute
instance-attribute
#
cmpinc: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Component incident angle (degrees from upward vertical; SEED/MINISEED uses dip: degrees from horizontal down).
data
class-attribute
instance-attribute
#
Seismogram data.
delta
class-attribute
instance-attribute
#
Increment between evenly spaced samples (nominal value).
evdp
class-attribute
instance-attribute
#
evdp: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Event depth below surface (kilometers -- previously meters).
evel
class-attribute
instance-attribute
#
evel: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Event elevation (meters).
evla
class-attribute
instance-attribute
#
evla: float | None = field(default=None, converter=optional(float), validator=optional([type_validator(), ge(-90), le(90)]))
Event latitude (degrees, north positive).
evlo
class-attribute
instance-attribute
#
evlo: float | None = field(default=None, converter=optional(float), validator=optional([type_validator(), gt(-180), le(180)]))
Event longitude (degrees, east positive).
f
class-attribute
instance-attribute
#
f: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Fini or end of event time (seconds relative to reference time).
ibody
class-attribute
instance-attribute
#
Body / Spheroid definition used in Distance Calculations.
idep
class-attribute
instance-attribute
#
Type of dependent variable.
ievreg
class-attribute
instance-attribute
#
Event geographic region.
ievtyp
class-attribute
instance-attribute
#
Type of event.
iftype
class-attribute
instance-attribute
#
Type of file.
iinst
class-attribute
instance-attribute
#
Type of recording instrument.
imagsrc
class-attribute
instance-attribute
#
Source of magnitude information.
imagtyp
class-attribute
instance-attribute
#
Magnitude type.
iqual
class-attribute
instance-attribute
#
Quality of data.
istreg
class-attribute
instance-attribute
#
Station geographic region.
isynth
class-attribute
instance-attribute
#
Synthetic data flag.
iztype
class-attribute
instance-attribute
#
Reference time equivalence.
ka
class-attribute
instance-attribute
#
First arrival time identification.
kcmpnm
class-attribute
instance-attribute
#
Channel name. SEED volumes use three character names, and the third is the component/orientation. For horizontals, the current trend is to use 1 and 2 instead of N and E.
kdatrd
class-attribute
instance-attribute
#
Date data was read onto computer.
kevnm
class-attribute
instance-attribute
#
Event name.
kf
class-attribute
instance-attribute
#
Fini identification.
khole
class-attribute
instance-attribute
#
Nuclear: hole identifier; Other: location identifier (LOCID).
kinst
class-attribute
instance-attribute
#
Generic name of recording instrument.
knetwk
class-attribute
instance-attribute
#
Name of seismic network.
ko
class-attribute
instance-attribute
#
Event origin time identification.
kstnm
class-attribute
instance-attribute
#
Station name.
kt0
class-attribute
instance-attribute
#
User defined time pick identification.
kt1
class-attribute
instance-attribute
#
User defined time pick identification.
kt2
class-attribute
instance-attribute
#
User defined time pick identification.
kt3
class-attribute
instance-attribute
#
User defined time pick identification.
kt4
class-attribute
instance-attribute
#
User defined time pick identification.
kt5
class-attribute
instance-attribute
#
User defined time pick identification.
kt6
class-attribute
instance-attribute
#
User defined time pick identification.
kt7
class-attribute
instance-attribute
#
User defined time pick identification.
kt8
class-attribute
instance-attribute
#
User defined time pick identification.
kt9
class-attribute
instance-attribute
#
User defined time pick identification.
kuser0
class-attribute
instance-attribute
#
User defined variable storage area.
kuser1
class-attribute
instance-attribute
#
User defined variable storage area.
kuser2
class-attribute
instance-attribute
#
User defined variable storage area.
lcalda
property
#
lcalda: Literal[True]
TRUE if DIST, AZ, BAZ, and GCARC are to be calculated from station and event coordinates.
Note
Above fields are all read only properties in this class, so they are always calculated.
leven
class-attribute
instance-attribute
#
TRUE if data is evenly spaced.
lovrok
class-attribute
instance-attribute
#
TRUE if it is okay to overwrite this file on disk.
lpspol
class-attribute
instance-attribute
#
TRUE if station components have a positive polarity (left-hand rule).
mag
class-attribute
instance-attribute
#
mag: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Event magnitude.
nevid
class-attribute
instance-attribute
#
Event ID (CSS 3.0).
norid
class-attribute
instance-attribute
#
Origin ID (CSS 3.0).
nvhdr
class-attribute
instance-attribute
#
Header version number.
nwfid
class-attribute
instance-attribute
#
Waveform ID (CSS 3.0).
nzhour
class-attribute
instance-attribute
#
GMT hour.
nzjday
class-attribute
instance-attribute
#
GMT julian day.
nzmin
class-attribute
instance-attribute
#
GMT minute.
nzmsec
class-attribute
instance-attribute
#
GMT millisecond.
nzsec
class-attribute
instance-attribute
#
GMT second.
nzyear
class-attribute
instance-attribute
#
GMT year corresponding to reference (zero) time in file.
o
class-attribute
instance-attribute
#
o: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Event origin time (seconds relative to reference time).
odelta
class-attribute
instance-attribute
#
odelta: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Observed increment if different from nominal value.
resp0
class-attribute
instance-attribute
#
resp0: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 0 (not currently used).
resp1
class-attribute
instance-attribute
#
resp1: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 1 (not currently used).
resp2
class-attribute
instance-attribute
#
resp2: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 2 (not currently used).
resp3
class-attribute
instance-attribute
#
resp3: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 3 (not currently used).
resp4
class-attribute
instance-attribute
#
resp4: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 4 (not currently used).
resp5
class-attribute
instance-attribute
#
resp5: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 5 (not currently used).
resp6
class-attribute
instance-attribute
#
resp6: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 6 (not currently used).
resp7
class-attribute
instance-attribute
#
resp7: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 7 (not currently used).
resp8
class-attribute
instance-attribute
#
resp8: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 8 (not currently used).
resp9
class-attribute
instance-attribute
#
resp9: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Instrument response parameter 9 (not currently used).
stdp
class-attribute
instance-attribute
#
stdp: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Station depth below surface (meters).
stel
class-attribute
instance-attribute
#
stel: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
Station elevation above sea level (meters).
stla
class-attribute
instance-attribute
#
stla: float | None = field(default=None, converter=optional(float), validator=optional([type_validator(), ge(-90), le(90)]))
Station latitude (degrees, north positive).
stlo
class-attribute
instance-attribute
#
stlo: float | None = field(default=None, converter=optional(float), validator=optional([type_validator(), gt(-180), le(180)]))
Station longitude (degrees, east positive).
t0
class-attribute
instance-attribute
#
t0: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 0 (seconds relative to reference time).
t1
class-attribute
instance-attribute
#
t1: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 1 (seconds relative to reference time).
t2
class-attribute
instance-attribute
#
t2: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 2 (seconds relative to reference time).
t3
class-attribute
instance-attribute
#
t3: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 3 (seconds relative to reference time).
t4
class-attribute
instance-attribute
#
t4: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 4 (seconds relative to reference time).
t5
class-attribute
instance-attribute
#
t5: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 5 (seconds relative to reference time).
t6
class-attribute
instance-attribute
#
t6: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 6 (seconds relative to reference time).
t7
class-attribute
instance-attribute
#
t7: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 7 (seconds relative to reference time).
t8
class-attribute
instance-attribute
#
t8: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 8 (seconds relative to reference time).
t9
class-attribute
instance-attribute
#
t9: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined time pick or marker 9 (seconds relative to reference time).
user0
class-attribute
instance-attribute
#
user0: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user1
class-attribute
instance-attribute
#
user1: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user2
class-attribute
instance-attribute
#
user2: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user3
class-attribute
instance-attribute
#
user3: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user4
class-attribute
instance-attribute
#
user4: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user5
class-attribute
instance-attribute
#
user5: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user6
class-attribute
instance-attribute
#
user6: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user7
class-attribute
instance-attribute
#
user7: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user8
class-attribute
instance-attribute
#
user8: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
user9
class-attribute
instance-attribute
#
user9: float | None = field(default=None, converter=optional(float), validator=optional([type_validator()]))
User defined variable storage area.
from_buffer
classmethod
#
Create a new SAC instance from a SAC data buffer.
Parameters:
-
buffer
(bytes
) –Buffer containing SAC file content.
Returns:
-
Self
–A new SacIO instance.
Source code in pysmo/lib/io/_sacio/sacio.py
333 334 335 336 337 338 339 340 341 342 343 344 345 |
|
from_file
classmethod
#
Create a new SAC instance from a SAC file.
Parameters:
-
filename
(str
) –Name of the SAC file to read.
Returns:
-
Self
–A new SacIO instance.
Source code in pysmo/lib/io/_sacio/sacio.py
319 320 321 322 323 324 325 326 327 328 329 330 331 |
|
from_iris
classmethod
#
from_iris(net: str, sta: str, cha: str, loc: str, force_single_result: bool = False, **kwargs: Any) -> Self | dict[str, Self] | None
Create a list of SAC instances from a single IRIS request using the output format as "sac.zip".
Parameters:
-
net
(str
) –Network code (e.g. "US")
-
sta
(str
) –Station code (e.g. "BSS")
-
cha
(str
) –Channel code (e.g. "BHZ")
-
loc
(str
) –Location code (e.g. "00")
-
force_single_result
(bool
, default:False
) –If true, the function will return a single SAC object or None if the requests returns nothing.
Returns:
Source code in pysmo/lib/io/_sacio/sacio.py
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 |
|
read
#
read(filename: str) -> None
Read data and headers from a SAC file into an existing SAC instance.
Parameters:
-
filename
(str
) –Name of the sac file to read.
Source code in pysmo/lib/io/_sacio/sacio.py
244 245 246 247 248 249 250 251 252 |
|
read_buffer
#
read_buffer(buffer: bytes) -> None
Read data and headers from a SAC byte buffer into an existing SAC instance.
Parameters:
-
buffer
(bytes
) –Buffer containing SAC file content.
Source code in pysmo/lib/io/_sacio/sacio.py
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 |
|
write
#
write(filename: str) -> None
Writes data and header values to a SAC file.
Parameters:
-
filename
(str
) –Name of the sacfile to write to.
Source code in pysmo/lib/io/_sacio/sacio.py
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 |
|
typing
#
Typing related items.
Functions:
-
matching_pysmo_types
–Returns pysmo types that objects may be an instance of.
-
proto2mini
–Returns valid Mini classes for a given pysmo type.
_AnyMini
module-attribute
#
_AnyMini: TypeAlias = MiniEvent | MiniLocation | MiniLocationWithDepth | MiniSeismogram | MiniStation
Type alias for any pysmo Mini class.
_AnyProto
module-attribute
#
_AnyProto: TypeAlias = Event | Location | LocationWithDepth | Seismogram | Station
Type alias for any pysmo Protocol class.
matching_pysmo_types
#
Returns pysmo types that objects may be an instance of.
Parameters:
-
obj
(object
) –Name of the object to check.
Returns:
Examples:
Pysmo types matching instances of
MiniLocationWithDepth
or the class
itself:
>>> from pysmo._lib.typing import matching_pysmo_types
>>> from pysmo import MiniLocationWithDepth
>>>
>>> mini = MiniLocationWithDepth(latitude=12, longitude=34, depth=56)
>>> matching_pysmo_types(mini)
(<class 'pysmo._types._location.Location'>, <class 'pysmo._types._location_with_depth.LocationWithDepth'>)
>>>
>>> matching_pysmo_types(MiniLocationWithDepth)
(<class 'pysmo._types._location.Location'>, <class 'pysmo._types._location_with_depth.LocationWithDepth'>)
Source code in pysmo/lib/typing.py
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 |
|
proto2mini
#
Returns valid Mini classes for a given pysmo type.
Source code in pysmo/lib/typing.py
26 27 28 29 30 |
|
validators
#
Validators for pysmo classes using attrs
.
Functions:
-
datetime_is_utc
–Ensure
datetime
datetime objects havetzdata=timezone.utc
set.
datetime_is_utc
#
Ensure datetime
datetime objects have tzdata=timezone.utc
set.
Source code in pysmo/lib/validators.py
10 11 12 13 |
|