Skip to content

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:

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
@define(kw_only=True)
class SAC(SacIO):
    """Access and modify data stored in SAC files.

    The [`SAC`][pysmo.classes.SAC] class inherits all attributes and methods
    of the [`SacIO`][pysmo.lib.io.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:

        ```python
        >>> 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`][pysmo.lib.io.SacIO.evla] and [`evlo`][pysmo.lib.io.SacIO.evlo]
        attributes, which do not match the pysmo [`Location`][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`][pysmo.lib.io.SacIO.stla], [`stlo`][pysmo.lib.io.SacIO.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:

        ```python
        >>> # 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`][None]:

        ```python
        >>> 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`][pysmo.classes.SAC] class directly inherits from the
        [`SacIO`][pysmo.lib.io.SacIO] class. This gives access to all
        SAC headers, ability to load from a file, download data, and so on.
        Using [`SAC`][pysmo.classes.SAC] is therefore almost always
        preferred over using [`SacIO`][pysmo.lib.io.SacIO].
    """

    seismogram: SacSeismogram = field(init=False)
    """Access data stored in the SAC object compatible with the [`Seismogram`][pysmo.Seismogram] type."""

    station: SacStation = field(init=False)
    """Access data stored in the SAC object compatible with the [`Station`][pysmo.Station] type."""

    event: SacEvent = field(init=False)
    """Access data stored in the SAC object compatible with the [`Event`][pysmo.Event] type."""

    timestamps: SacTimestamps = field(init=False)
    """Maps a SAC times such as B, E, O, T0-T9 to datetime objects."""

    def __attrs_post_init__(self) -> None:
        self.seismogram = SacSeismogram(parent=self)
        self.station = SacStation(parent=self)
        self.event = SacEvent(parent=self)
        self.timestamps = SacTimestamps(parent=self)

event class-attribute instance-attribute #

event: SacEvent = field(init=False)

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:

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
@define(kw_only=True)
class SacEvent(_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`][pysmo.classes.SAC] instance to enable pysmo
    types compatibility.

    Examples:
        Checking if a SacEvent matches the pysmo
        [`Event`][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.
    """

    @property
    def latitude(self) -> float:
        """Event Latitude."""

        if self._parent.evla is None:
            raise SacHeaderUndefined(header="evla")
        return self._parent.evla

    @latitude.setter
    @value_not_none
    def latitude(self, value: float) -> None:
        setattr(self._parent, "evla", value)

    @property
    def longitude(self) -> float:
        """Event Longitude."""

        if self._parent.evlo is None:
            raise SacHeaderUndefined(header="evlo")
        return self._parent.evlo

    @longitude.setter
    @value_not_none
    def longitude(self, value: float) -> None:
        setattr(self._parent, "evlo", value)

    @property
    def depth(self) -> float:
        """Event depth in meters."""

        if self._parent.evdp is None:
            raise SacHeaderUndefined(header="evdp")
        return self._parent.evdp * 1000

    @depth.setter
    @value_not_none
    def depth(self, value: float) -> None:
        setattr(self._parent, "evdp", value / 1000)

    @property
    def time(self) -> datetime:
        """Event origin time (UTC)."""

        event_time = self._get_datetime_from_sac("o")
        if event_time is None:
            raise SacHeaderUndefined(header="o")
        return event_time

    @time.setter
    @value_not_none
    def time(self, value: datetime) -> None:
        self._set_sac_from_datetime("o", value)

depth property writable #

depth: float

Event depth in meters.

latitude property writable #

latitude: float

Event Latitude.

longitude property writable #

longitude: float

Event Longitude.

time property writable #

time: datetime

Event origin time (UTC).

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:

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
@define(kw_only=True)
class SacSeismogram(_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`][pysmo.classes.SAC] instance to enable pysmo types
    compatibility.

    Examples:
        Checking if a SacSeismogram matches the pysmo
        [`Seismogram`][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)
        >>>
    """

    def __len__(self) -> int:
        return np.size(self.data)

    @property
    def data(self) -> npt.NDArray:
        """Seismogram data."""

        return self._parent.data

    @data.setter
    def data(self, value: npt.NDArray) -> None:
        self._parent.data = value

    @property
    def delta(self) -> timedelta:
        """Sampling interval."""
        return timedelta(seconds=self._parent.delta)

    @delta.setter
    def delta(self, value: timedelta) -> None:
        self._parent.delta = value.total_seconds()

    @property
    def begin_time(self) -> datetime:
        """Seismogram begin time."""

        value = self._get_datetime_from_sac("b")
        if value is None:
            raise SacHeaderUndefined(header="b")
        return value

    @begin_time.setter
    @value_not_none
    def begin_time(self, value: datetime) -> None:
        self._set_sac_from_datetime("b", value)

    @property
    def end_time(self) -> datetime:
        """Seismogram end time."""

        if len(self) == 0:
            return self.begin_time
        return self.begin_time + self.delta * (len(self) - 1)

begin_time property writable #

begin_time: datetime

Seismogram begin time.

data property writable #

data: NDArray

Seismogram data.

delta property writable #

delta: timedelta

Sampling interval.

end_time property #

end_time: datetime

Seismogram end time.

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) SACinstance 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:

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
@define(kw_only=True)
class SacStation(_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`][pysmo.classes.SAC]instance to enable pysmo
    types compatibility.

    Examples:
        Checking if a SacStation matches the pysmo
        [`Station`][pysmo.Station] type:

        >>> from pysmo import SAC, Station
        >>> my_sac = SAC.from_file("testfile.sac")
        >>> isinstance(my_sac.station, Station)
        True
        >>>
    """

    @property
    def name(self) -> str:
        """Station name or code."""

        if self._parent.kstnm is None:
            raise SacHeaderUndefined(header="kstnm")
        return self._parent.kstnm

    @name.setter
    @value_not_none
    def name(self, value: str) -> None:
        setattr(self._parent, "kstnm", value)

    @property
    def network(self) -> str | None:
        """Network name or code."""

        return self._parent.knetwk

    @network.setter
    def network(self, value: str) -> None:
        setattr(self._parent, "knetwk", value)

    @property
    def latitude(self) -> float:
        """Station latitude."""

        if self._parent.stla is None:
            raise SacHeaderUndefined(header="stla")
        return self._parent.stla

    @latitude.setter
    @value_not_none
    def latitude(self, value: float) -> None:
        setattr(self._parent, "stla", value)

    @property
    def longitude(self) -> float:
        """Station longitude."""

        if self._parent.stlo is None:
            raise SacHeaderUndefined(header="stlo")
        return self._parent.stlo

    @longitude.setter
    @value_not_none
    def longitude(self, value: float) -> None:
        setattr(self._parent, "stlo", value)

    @property
    def elevation(self) -> float | None:
        """Station elevation in meters."""

        return self._parent.stel

    @elevation.setter
    def elevation(self, value: float) -> None:
        setattr(self._parent, "stel", value)

elevation property writable #

elevation: float | None

Station elevation in meters.

latitude property writable #

latitude: float

Station latitude.

longitude property writable #

longitude: float

Station longitude.

name property writable #

name: str

Station name or code.

network property writable #

network: str | None

Network name or code.

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
class SacTimestamps(_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`][pysmo.classes.SAC] instance to enable pysmo
    types compatibility.


    Examples:
        Relative seismogram begin time as a float vs absolute begin time
        as a [datetime][datetime] object.

        ```python
        >>> 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:

        ```python
        >>> 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
        ```
    """

    b: SacTimeConverter = SacTimeConverter()
    """Beginning time of the independent variable."""

    e: SacTimeConverter = SacTimeConverter(readonly=True)
    """Ending time of the independent variable (read-only)."""

    o: SacTimeConverter = SacTimeConverter()
    """Event origin time."""

    a: SacTimeConverter = SacTimeConverter()
    """First arrival time."""

    f: SacTimeConverter = SacTimeConverter()
    """Fini or end of event time."""

    t0: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 0."""

    t1: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 1."""

    t2: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 2."""

    t3: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 3."""

    t4: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 4."""

    t5: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 5."""

    t6: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 6."""

    t7: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 7."""

    t8: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 8."""

    t9: SacTimeConverter = SacTimeConverter()
    """User defined time pick or marker 9."""

a class-attribute instance-attribute #

a: SacTimeConverter = SacTimeConverter()

First arrival time.

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.

o class-attribute instance-attribute #

o: SacTimeConverter = SacTimeConverter()

Event origin 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.