pysmo.functions
#
Simple operations using pysmo types.
This module provides functions that perform common operations using pysmo
types (mostly Seismogram
). They are meant to be building
blocks that can be used to construct more complex processing algorithms.
Many functions have a clone
argument that controls whether the function
should operate on the input directly, or first create a clone of it (using
deepcopy
) and return the clone after using it for the
the function. For example:
>>> from pysmo.function import resample
>>> from pysmo.classes import SAC
>>> sac_seis = SAC.from_file('testfile.sac').seismogram
>>> new_delta = sac_seis.delta * 2
>>>
>>> # create a clone and modify data in clone instead of sac_seis:
>>> new_sac_seis = resample(sac_seis, new_delta, clone=True)
>>>
>>> # modify data in sac_seis directly:
>>> resample(sac_seis, new_delta)
>>>
>>> # because the deepcopy operation can be computationaly expensive,
>>> # you should NOT use the following pattern:
>>> sac_seis = resample(sac_seis, new_delta, clone=True)
Hint
Additional functions may be found in pysmo.tools
.
Functions:
-
clone_to_mini
–Create a new instance of a Mini class from a matching other one.
-
copy_from_mini
–Copy attributes from a Mini instance to matching other one.
-
crop
–Shorten a seismogram by providing a start and end time.
-
detrend
–Remove linear and/or constant trends from a seismogram.
-
normalize
–Normalize a seismogram with its absolute max value
-
resample
–Resample Seismogram object data using the Fourier method.
-
time2index
–Retuns data index corresponding to a given time.
clone_to_mini
#
Create a new instance of a Mini class from a matching other one.
This function is creates a clone of an exising class by
copying the attributes defined in mini_cls
from the source
to the target. Attributes only present in the source object are ignored,
potentially resulting in a smaller and more performant object.
Parameters:
-
mini_cls
(type[TMini]
) –The type of Mini class to create.
-
source
(_AnyProto
) –The instance to clone (must contain all attributes present in
mini_cls
).
Returns:
-
TMini
–A new Mini instance type mini_cls.
Raises:
-
AttributeError
–If the source instance does not contain all attributes in mini_cls.
Examples:
Create a MiniSeismogram
from a
SacSeismogram
instance.
>>> from pysmo.funtions import clone_to_mini
>>> from pysmo import MiniSeismogram
>>> from pysmo.classes import SAC
>>> sac_seismogram = SAC.from_file("testfile.sac").seismogram
>>> mini_seismogram = clone_to_mini(MiniSeismogram, sac_seismogram)
See Also
copy_from_mini
: Copy attributes
from a Mini instance to matching other one.
Source code in pysmo/functions/_utils.py
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 |
|
copy_from_mini
#
Copy attributes from a Mini instance to matching other one.
This function copies all attributes in the source
Mini class
instance to a compatible target
instance.
Parameters:
-
source
(_AnyMini
) –The Mini instance to copy attributes from.
-
target
(_AnyProto
) –Compatible target instance.
Raises:
-
AttributeError
–If the
target
instance does not contain all attributes in thesource
instance.
See Also
clone_to_mini
: Create a new
instance of a Mini class from a matching other one.
Source code in pysmo/functions/_utils.py
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 |
|
crop
#
Shorten a seismogram by providing a start and end time.
Parameters:
-
seismogram
(T
) –Seismogram
object. -
begin_time
(datetime
) –New start time.
-
end_time
(datetime
) –New end time.
-
clone
(bool
, default:False
) –Operate on a clone of the input seismogram.
Returns:
-
None | T
–Cropped
Seismogram
object if called withclone=True
.
Examples:
>>> from pysmo.functions import crop
>>> from pysmo.classes import SAC
>>> from datetime import timedelta
>>> sac_seis = SAC.from_file('testfile.sac').seismogram
>>> new_begin_time = sac_seis.begin_time + timedelta(seconds=10)
>>> new_end_time = sac_seis.end_time - timedelta(seconds=10)
>>> crop(sac_seis, new_begin_time, new_end_time)
Note
The returned seismogram may not have the exact new begin and end times that are specified as input, as no resampling is performed. Instead the nearest earlier sample is used as new begin time, and the nearest later sample as new end time.
Source code in pysmo/functions/_seismogram.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 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 |
|
detrend
#
detrend(seismogram: T, clone: bool = False) -> None | T
Remove linear and/or constant trends from a seismogram.
Parameters:
-
seismogram
(T
) –Seismogram object.
-
clone
(bool
, default:False
) –Operate on a clone of the input seismogram.
Returns:
-
None | T
–Detrended
Seismogram
object if called withclone=True
.
Examples:
>>> import numpy as np
>>> import pytest
>>> from pysmo.functions detrend
>>> from pysmo.classes import SAC
>>> sac_seis = SAC.from_file('testfile.sac').seismogram
>>> assert 0 == pytest.approx(np.mean(sac_seis.data), abs=1e-11)
False
>>> detrend(sac_seis)
>>> assert 0 == pytest.approx(np.mean(sac_seis.data), abs=1e-11)
True
Source code in pysmo/functions/_seismogram.py
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 |
|
normalize
#
normalize(seismogram: T, clone: bool = False) -> None | T
Normalize a seismogram with its absolute max value
Parameters:
-
seismogram
(T
) –Seismogram object.
-
clone
(bool
, default:False
) –Operate on a clone of the input seismogram.
Returns:
-
None | T
–Normalized
Seismogram
object ifclone=True
.
Examples:
>>> import numpy as np
>>> from pysmo.functions import normalize
>>> from pysmo.classes import SAC
>>> sac_seis = SAC.from_file('testfile.sac').seismogram
>>> normalize(sac_seis)
>>> assert np.max(sac_seis.data) <= 1
True
Source code in pysmo/functions/_seismogram.py
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 |
|
resample
#
Resample Seismogram object data using the Fourier method.
Parameters:
-
seismogram
(T
) –Seismogram object.
-
delta
(timedelta
) –New sampling interval.
-
clone
(bool
, default:False
) –Operate on a clone of the input seismogram.
Returns:
-
None | T
–Resampled
Seismogram
object if called withclone=True
.
Examples:
>>> from pysmo.functions import resample
>>> from pysmo.classes import SAC
>>> sac_seis = SAC.from_file('testfile.sac').seismogram
>>> len(sac_seis)
180000
>>> original_delta = sac_seis.delta
>>> new_delta = original_delta * 2
>>> resample(sac_seis, new_delta)
>>> len(sac_seis)
90000
Source code in pysmo/functions/_seismogram.py
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 |
|
time2index
#
time2index(seismogram: Seismogram, time: datetime, method: Literal['round', 'ceil', 'floor'] = 'round') -> int
Retuns data index corresponding to a given time.
This function converts time to index of a seismogram's data array. In most cases the time will not have an exact match in the data array. This function allows choosing how to select the index to return when that is the case with the method parameter:
- round: round to nearest index.
- ceil: always round up to next higher index.
- floor: always round down to next lower index.
Parameters:
-
seismogram
(Seismogram
) –Seismogram object.
-
time
(datetime
) –Time to convert to index.
-
method
(Literal['round', 'ceil', 'floor']
, default:'round'
) –Method to use for selecting the index to return.
Returns:
-
int
–Index of the sample corresponding to the given time.
Source code in pysmo/functions/_seismogram.py
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 |
|