sgnts.base.slice_tools
¶
Utilities for working with intervals of time
TSSlice
dataclass
¶
A class to support operations on an ordered tuple of integers start, stop.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
start
|
Union[int, float]
|
Union[int, float], The start of the TSSlice. Must be int unless units=SECONDS. |
TIME_MIN
|
stop
|
Union[int, float]
|
Union[int, float], The stop of the TSSlice. Must be int unless units=SECONDS. |
TIME_MAX
|
units
|
TimeUnits
|
TimeUnits, The unit of time for start and stop. Defaults to OFFSETS. |
OFFSETS
|
Source code in sgnts/base/slice_tools.py
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 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 | |
slice
property
¶
Convert to a python slice object with a stride of 1.
__add__(o)
¶
Add two TSSlices together producing a single TSSlice if they intersect otherwise returning each in a list.
Examples:
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=2, stop=5)
>>> A+B
[TSSlice(start=0, stop=5)]
>>> B+A
[TSSlice(start=0, stop=5)]
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=4, stop=6)
>>> A+B
[TSSlice(start=0, stop=3), TSSlice(start=4, stop=6)]
>>> B+A
[TSSlice(start=0, stop=3), TSSlice(start=4, stop=6)]
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=None, stop=None)
>>> A+B
[TSSlice(start=0, stop=3), TSSlice(start=None, stop=None)]
>>> B+A
[TSSlice(start=None, stop=None), TSSlice(start=0, stop=3)]
Source code in sgnts/base/slice_tools.py
__and__(o)
¶
Find the intersection of two TSSlices
Examples:
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=2, stop=5)
>>> A&B
TSSlice(start=2, stop=3)
>>> B&A
TSSlice(start=2, stop=3)
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=4, stop=6)
>>> A&B
TSSlice(start=None, stop=None)
>>> B&A
TSSlice(start=None, stop=None)
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=None, stop=None)
>>> A&B
TSSlice(start=None, stop=None)
>>> B&A
TSSlice(start=None, stop=None)
Source code in sgnts/base/slice_tools.py
__bool__()
¶
Check the truth value of this TSSlice.
Examples:
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=2, stop=5)
>>> True if A else False
True
>>> True if B else False
True
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=4, stop=6)
>>> True if A else False
True
>>> True if B else False
True
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=None, stop=None)
>>> True if A else False
True
>>> True if B else False
False
Source code in sgnts/base/slice_tools.py
__gt__(o)
¶
Check if a slice is greater than another slice.
Examples:
Source code in sgnts/base/slice_tools.py
__or__(o)
¶
Find the TSSlice that spans both self and o.
Examples:
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=2, stop=5)
>>> A|B
TSSlice(start=0, stop=5)
>>> B|A
TSSlice(start=0, stop=5)
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=4, stop=6)
>>> A|B
TSSlice(start=0, stop=6)
>>> B|A
TSSlice(start=0, stop=6)
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=None, stop=None)
>>> A|B
TSSlice(start=None, stop=None)
>>> B|A
TSSlice(start=None, stop=None)
Source code in sgnts/base/slice_tools.py
__sub__(o)
¶
Find the difference of two overlapping slices, it not overlapping return an empty list.
Examples:
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=2, stop=5)
>>> A-B
[TSSlice(start=0, stop=2), TSSlice(start=3, stop=5)]
>>> B-A
[TSSlice(start=0, stop=2), TSSlice(start=3, stop=5)]
Source code in sgnts/base/slice_tools.py
convert(target_unit, from_sample_rate=None, to_sample_rate=None)
¶
Convert this TSSlice to a new TSSlice with different units.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target_unit
|
TimeUnits
|
The unit to convert to. |
required |
from_sample_rate
|
Optional[int]
|
Required if converting FROM samples. |
None
|
to_sample_rate
|
Optional[int]
|
Required if converting TO samples. |
None
|
Returns:
| Type | Description |
|---|---|
'TSSlice'
|
A new TSSlice instance in the target units. |
Source code in sgnts/base/slice_tools.py
split(o)
¶
Split the slice with the given boundary value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
o
|
int
|
int, the boundary to split the tsslice |
required |
Source code in sgnts/base/slice_tools.py
TSSlices
dataclass
¶
A class that holds a list of TSSlice objects and defines some operations on them.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
slices
|
list
|
list, A list of TSSlice objects. These will be stored in a sorted order and are assumed to be immutable |
required |
Source code in sgnts/base/slice_tools.py
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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | |
slice
property
¶
Provide a slice that corresponds to the start and end offset
__iadd__(other)
¶
align_to_rate(target_rate)
¶
Align TSSlices to integer sample boundaries at a target sample rate. Forces conversion to OFFSETS to perform alignment logic.
Source code in sgnts/base/slice_tools.py
convert(target_unit, from_sample_rate=None, to_sample_rate=None)
¶
Convert all contained slices to a new unit.
Source code in sgnts/base/slice_tools.py
intersection()
¶
Find the intersection of all slices. Might be empty.
Examples:
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6)])
>>> slices.intersection()
TSSlice(start=2, stop=3)
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6),
... TSSlice(start=8, stop=10)])
>>> slices.intersection()
TSSlice(start=None, stop=None)
Source code in sgnts/base/slice_tools.py
intersection_of_multiple(tsslices_list)
classmethod
¶
Find the intersection of multiple TSSlices objects.
This method computes regions that are present in ALL input TSSlices. It's useful for finding common valid data regions across multiple streams.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tsslices_list
|
list['TSSlices']
|
List of TSSlices objects to intersect |
required |
Returns:
| Type | Description |
|---|---|
'TSSlices'
|
TSSlices containing only regions present in all inputs |
Examples:
>>> slices1 = TSSlices([TSSlice(0, 10), TSSlice(20, 30)])
>>> slices2 = TSSlices([TSSlice(5, 15), TSSlice(25, 35)])
>>> slices3 = TSSlices([TSSlice(7, 12), TSSlice(22, 28)])
>>> TSSlices.intersection_of_multiple([slices1, slices2, slices3])
TSSlices(slices=[TSSlice(start=7, stop=10), TSSlice(start=25, stop=28)])
>>> # No overlap case
>>> slices1 = TSSlices([TSSlice(0, 10)])
>>> slices2 = TSSlices([TSSlice(20, 30)])
>>> TSSlices.intersection_of_multiple([slices1, slices2])
TSSlices(slices=[])
Source code in sgnts/base/slice_tools.py
invert(boundary_slice)
¶
Within boundary_slice, return an inverted set of TSSlice's.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
boundary_slice
|
TSSlice
|
TSSlice, the boundary to invert the TSSlices |
required |
Examples:
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6)])
>>> slices.invert(TSSlice(2,4))
TSSlices(slices=[])
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6),
... TSSlice(start=8, stop=10)])
>>> slices.invert(TSSlice(2,4))
TSSlices(slices=[TSSlice(start=6, stop=8)])
Source code in sgnts/base/slice_tools.py
search(tsslice, align=True)
¶
Search for the set of TSSlices that overlap wtih tsslice. If align=True the returned slices will be truncated to exactly fall within tsslice.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tsslice
|
TSSlice
|
TSSlice, the tsslice to search for overlap with |
required |
align
|
bool
|
bool, whether to align the tsslices |
True
|
Examples:
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6)])
>>> slices.search(TSSlice(2,4), align=True)
TSSlices(slices=[TSSlice(start=2, stop=4), TSSlice(start=2, stop=3),
TSSlice(start=2, stop=4)])
>>> slices.search(TSSlice(2,4), align=False)
TSSlices(slices=[TSSlice(start=0, stop=4), TSSlice(start=1, stop=3),
TSSlice(start=2, stop=6)])
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6),
... TSSlice(start=8, stop=10)])
>>> slices.search(TSSlice(2,4), align=True)
TSSlices(slices=[TSSlice(start=2, stop=4), TSSlice(start=2, stop=3),
TSSlice(start=2, stop=4)])
>>> slices.search(TSSlice(2,4), align=False)
TSSlices(slices=[TSSlice(start=0, stop=4), TSSlice(start=1, stop=3),
TSSlice(start=2, stop=6)])
Source code in sgnts/base/slice_tools.py
simplify()
¶
Merge overlapping slices and return a new instance of TSSlices.
Examples:
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6)])
>>> slices.simplify()
TSSlices(slices=[TSSlice(start=0, stop=6)])
>>> slices = TSSlices(slices=[TSSlice(start=0, stop=4),
... TSSlice(start=1, stop=3), TSSlice(start=2, stop=6),
... TSSlice(start=8, stop=10)])
>>> slices.simplify()
TSSlices(slices=[TSSlice(start=0, stop=6), TSSlice(start=8, stop=10)])