pysmo.classes
#
Classes that work with pysmo types.
Classes:
-
SAC
–Access and modify data stored in SAC files.
-
SacEvent
–Helper class for SAC event attributes.
-
SacSeismogram
–Helper class for SAC seismogram attributes.
-
SacStation
–Helper class for SAC station attributes.
-
SacTimestamps
–Helper class to access times stored in SAC headers as datetime objects.
SAC
#
Bases: SacIO
Access and modify data stored in SAC files.
The SAC
class inherits all attributes and methods
of the SacIO
class, and extends it with attributes
that allow using pysmo types. The extra attributes are themselves instances
of "helper" classes that cannot be instantiated directly.
Examples:
SAC instances are typically created by reading a SAC file. Users familiar with the SAC file format can access header and data using the names they are used to:
>>> from pysmo.classes import SAC
>>> my_sac = SAC.from_file('testfile.sac')
>>> my_sac.delta
0.019999999552965164
>>> my_sac.data
array([2302., 2313., 2345., ..., 2836., 2772., 2723.])
>>> my_sac.evla
23.14
>>>
Presenting the data in the above way is not compatible with pysmo
types. For example, event coordinates are stored in the
evla
and evlo
attributes, which do not match the pysmo Location
type. Renaming or aliasing evla
to latitude
and evlo
to
longitude
would solve the problem for the event coordinates, but
since the SAC format also specifies station coordinates
(stla
, stlo
)
we still run into compatibility issues.
In order to map these incompatible attributes to ones that can be used with pysmo types, we use helper classes as a way to access the attributes under different names that are compatible with pysmo types:
>>> # Import the Seismogram type to check if the nested class is compatible.
>>> from pysmo import Seismogram
>>>
>>> # First verify that a SAC instance is not a pysmo Seismogram:
>>> isinstance(my_sac, Seismogram)
False
>>> # The my_sac.seismogram object is, however:
>>> isinstance(my_sac.seismogram, Seismogram)
True
>>>
Because the SAC file format defines a large amount of header fields for
metadata, it needs to allow for many of these to be optional. Since the
helper classes are more specific (and intended to be used with pysmo
types), their attributes typically may not be None
:
>>> my_sac.evla = None
>>> # No error: a SAC file doesn't have to contain event information.
>>> my_sac.event.latitude = None
TypeError: SacEvent.latitude may not be of None type.
>>> # Error: the my_sac.event object may not have attributes set to `None`.
>>>
Tip
The SAC
class directly inherits from the
SacIO
class. This gives access to all
SAC headers, ability to load from a file, download data, and so on.
Using SAC
is therefore almost always
preferred over using SacIO
.
Attributes:
-
event
(SacEvent
) –Access data stored in the SAC object compatible with the
Event
type. -
seismogram
(SacSeismogram
) –Access data stored in the SAC object compatible with the
Seismogram
type. -
station
(SacStation
) –Access data stored in the SAC object compatible with the
Station
type. -
timestamps
(SacTimestamps
) –Maps a SAC times such as B, E, O, T0-T9 to datetime objects.
Source code in pysmo/classes/_sac.py
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 |
|
event
class-attribute
instance-attribute
#
Access data stored in the SAC object compatible with the Event
type.
seismogram
class-attribute
instance-attribute
#
seismogram: SacSeismogram = field(init=False)
Access data stored in the SAC object compatible with the Seismogram
type.
station
class-attribute
instance-attribute
#
station: SacStation = field(init=False)
Access data stored in the SAC object compatible with the Station
type.
timestamps
class-attribute
instance-attribute
#
timestamps: SacTimestamps = field(init=False)
Maps a SAC times such as B, E, O, T0-T9 to datetime objects.
SacEvent
#
Bases: _SacNested
Helper class for SAC event attributes.
The SacEvent
class is used to map SAC attributes in a way that
matches pysmo types. An instance of this class is created for each
new (parent) SAC
instance to enable pysmo
types compatibility.
Examples:
Checking if a SacEvent matches the pysmo
Event
type:
>>> from pysmo import SAC, Event
>>> my_sac = SAC.from_file("testfile.sac")
>>> isinstance(my_sac.event, Event)
True
>>>
Note
Not all SAC files contain event information.
Attributes:
-
depth
(float
) –Event depth in meters.
-
latitude
(float
) –Event Latitude.
-
longitude
(float
) –Event Longitude.
-
time
(datetime
) –Event origin time (UTC).
Source code in pysmo/classes/_sac.py
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 |
|
SacSeismogram
#
Bases: _SacNested
Helper class for SAC seismogram attributes.
The SacSeismogram
class is used to map SAC attributes in a way that
matches pysmo types. An instance of this class is created for each new
(parent) SAC
instance to enable pysmo types
compatibility.
Examples:
Checking if a SacSeismogram matches the pysmo
Seismogram
type:
>>> from pysmo import Seismogram
>>> from pysmo.classes import SAC
>>> my_sac = SAC.from_file("testfile.sac")
>>> isinstance(my_sac.seismogram, Seismogram)
True
>>>
Timing operations in a SAC file use a reference time, and all times
(begin time, event origin time, picks, etc.) are relative to this
reference time. In pysmo only absolute times are used. The example
below shows the begin_time
is the absolute time (in UTC) of the first
data point:
>>> from pysmo import SAC
>>> my_sac = SAC.from_file("testfile.sac")
>>> my_sac.seismogram.begin_time
datetime.datetime(2005, 3, 1, 7, 23, 2, 160000, tzinfo=datetime.timezone.utc)
>>>
Attributes:
-
begin_time
(datetime
) –Seismogram begin time.
-
data
(NDArray
) –Seismogram data.
-
delta
(timedelta
) –Sampling interval.
-
end_time
(datetime
) –Seismogram end time.
Source code in pysmo/classes/_sac.py
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 |
|
SacStation
#
Bases: _SacNested
Helper class for SAC station attributes.
The SacStation
class is used to map SAC attributes in a way that
matches pysmo types. An instance of this class is created for each
new (parent) SAC
instance to enable pysmo
types compatibility.
Examples:
Checking if a SacStation matches the pysmo
Station
type:
>>> from pysmo import SAC, Station
>>> my_sac = SAC.from_file("testfile.sac")
>>> isinstance(my_sac.station, Station)
True
>>>
Attributes:
-
elevation
(float | None
) –Station elevation in meters.
-
latitude
(float
) –Station latitude.
-
longitude
(float
) –Station longitude.
-
name
(str
) –Station name or code.
-
network
(str | None
) –Network name or code.
Source code in pysmo/classes/_sac.py
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 |
|
SacTimestamps
#
Bases: _SacNested
Helper class to access times stored in SAC headers as datetime objects.
The SacTimestamps
class is used to map SAC attributes in a way that
matches pysmo types. An instance of this class is created for each
new (parent) SAC
instance to enable pysmo
types compatibility.
Examples:
Relative seismogram begin time as a float vs absolute begin time as a datetime object.
>>> from pysmo import SAC
>>> my_sac = SAC.from_file("testfile.sac")
>>> # SAC header "B" as stored in a SAC file
>>> my_sac.b
-63.34
>>> # the output above is the number of seconds relative
>>> # to the reference time and date:
>>> my_sac.kzdate , my_sac.kztime
('2005-03-01', '07:24:05.500')
>>> # Accessing the same SAC header via a `SacTimestamps` object
>>> # yields a corresponding datetime object with the absolute time:
>>> my_sac.timestamps.b
datetime.datetime(2005, 3, 1, 7, 23, 2, 160000, tzinfo=datetime.timezone.utc)
Changing timestamp values:
>>> from datetime import timedelta
>>> from pysmo.classes import SAC
>>> my_sac = SAC.from_file("testfile.sac")
>>> # Original value of the "B" SAC header:
>>> my_sac.b
-63.34
>>> # Add 30 seconds to the absolute time:
>>> my_sac.timestamps.b += timedelta(seconds=30)
>>> # The relative time also changes by the same amount:
>>> my_sac.b
-33.34
Attributes:
-
a
(SacTimeConverter
) –First arrival time.
-
b
(SacTimeConverter
) –Beginning time of the independent variable.
-
e
(SacTimeConverter
) –Ending time of the independent variable (read-only).
-
f
(SacTimeConverter
) –Fini or end of event time.
-
o
(SacTimeConverter
) –Event origin time.
-
t0
(SacTimeConverter
) –User defined time pick or marker 0.
-
t1
(SacTimeConverter
) –User defined time pick or marker 1.
-
t2
(SacTimeConverter
) –User defined time pick or marker 2.
-
t3
(SacTimeConverter
) –User defined time pick or marker 3.
-
t4
(SacTimeConverter
) –User defined time pick or marker 4.
-
t5
(SacTimeConverter
) –User defined time pick or marker 5.
-
t6
(SacTimeConverter
) –User defined time pick or marker 6.
-
t7
(SacTimeConverter
) –User defined time pick or marker 7.
-
t8
(SacTimeConverter
) –User defined time pick or marker 8.
-
t9
(SacTimeConverter
) –User defined time pick or marker 9.
Source code in pysmo/classes/_sac.py
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 |
|
b
class-attribute
instance-attribute
#
b: SacTimeConverter = SacTimeConverter()
Beginning time of the independent variable.
e
class-attribute
instance-attribute
#
e: SacTimeConverter = SacTimeConverter(readonly=True)
Ending time of the independent variable (read-only).
f
class-attribute
instance-attribute
#
f: SacTimeConverter = SacTimeConverter()
Fini or end of event time.
t0
class-attribute
instance-attribute
#
t0: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 0.
t1
class-attribute
instance-attribute
#
t1: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 1.
t2
class-attribute
instance-attribute
#
t2: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 2.
t3
class-attribute
instance-attribute
#
t3: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 3.
t4
class-attribute
instance-attribute
#
t4: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 4.
t5
class-attribute
instance-attribute
#
t5: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 5.
t6
class-attribute
instance-attribute
#
t6: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 6.
t7
class-attribute
instance-attribute
#
t7: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 7.
t8
class-attribute
instance-attribute
#
t8: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 8.
t9
class-attribute
instance-attribute
#
t9: SacTimeConverter = SacTimeConverter()
User defined time pick or marker 9.