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
|
int
|
int, The start of the TSSlice |
TIME_MIN
|
stop
|
int
|
int, The stop of the TSSlice |
TIME_MAX
|
Source code in sgnts/base/slice_tools.py
18 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 | |
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
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 | |
__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
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 | |
__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
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 | |
__gt__(o)
¶
Check if a slice is greater than another slice.
Examples:
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=2, stop=5)
>>> A>B
False
>>> B>A
True
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=4, stop=6)
>>> A>B
False
>>> B>A
True
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=None, stop=None)
>>> A>B
False
>>> B>A
False
Source code in sgnts/base/slice_tools.py
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 | |
__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
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 | |
__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)]
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=4, stop=6)
>>> A-B
[]
>>> B-A
[]
>>> A = TSSlice(start=0, stop=3)
>>> B = TSSlice(start=None, stop=None)
>>> A-B
[]
>>> B-A
[]
Source code in sgnts/base/slice_tools.py
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 | |
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
268 269 270 271 272 273 274 275 276 | |
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
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 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 | |
slice
property
¶
Provide a slice that corresponds to the start and end offset
__iadd__(other)
¶
Inplace add (a new instance is made though)
Source code in sgnts/base/slice_tools.py
300 301 302 | |
align_to_rate(target_rate)
¶
Align TSSlices to integer sample boundaries at a target sample rate.
This method is useful for downsampling representations by expanding gaps and shrinking data slices to align with integer sample boundaries at a lower sampling rate.
For each slice: - The start boundary is rounded UP to the next integer sample - The stop boundary is rounded DOWN to the previous integer sample - This effectively expands gaps and shrinks data slices - Slices that become zero-length or sub-sample are eliminated
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target_rate
|
int
|
The target sample rate to align to. Must be in ALLOWED_RATES. |
required |
Returns:
| Type | Description |
|---|---|
TSSlices
|
New TSSlices with boundaries aligned to integer samples at target_rate. |
TSSlices
|
Slices that become sub-sample at the target rate are eliminated. |
Examples:
>>> from sgnts.base.offset import Offset
>>> Offset.set_max_rate(16384)
>>> # At 4 Hz, offsets are at multiples of 16384/4 = 4096
>>> # (0, 4096) = 1 sample at 4Hz, (8192, 16384) = 2 samples at 4Hz
>>> slices = TSSlices([TSSlice(0, 4096), TSSlice(8192, 16384)])
>>> # Downsample to 2 Hz (offsets at multiples of 8192)
>>> result = slices.align_to_rate(2)
>>> # First slice (0, 4096) becomes (0, 0) - eliminated
>>> # Second slice (8192, 16384) stays as (8192, 16384) - 1 sample at 2Hz
>>> result
TSSlices(slices=[TSSlice(start=8192, stop=16384)])
Source code in sgnts/base/slice_tools.py
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 | |
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
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
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)])
>>> # Empty case
>>> TSSlices.intersection_of_multiple([])
TSSlices(slices=[])
>>> # 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
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 | |
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
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 | |
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
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 | |
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)])
Source code in sgnts/base/slice_tools.py
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | |