We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in https://github.com/Project-OSmOSE/OSEkit/blob/main/src/OSmOSE/Spectrogram.py , we need to revise the definiton of list_timestamps , currently defined as
list_timestamps
list_timestamps.append( current_timestamp + timedelta(seconds=int(start)) )
should be defined as the middle value of the wav (or the tuile if self.zoom_level>0) time boundaries
The text was updated successfully, but these errors were encountered:
I didn't see this issue, sorry!
If i'm not mistaken, it just centers the time values on the tuiles instead of marking their start?
We have the tile_duration in this scope, and thus could use it directly?
tile_duration
for tile in range(nber_tiles_lowest_zoom_level): start = tile * tile_duration end = start + tile_duration if not adjust: list_timestamps.append( current_timestamp + timedelta(seconds=int(start + tile_duration//2)), ) )
I've not tested it yet, that just to clarify that I understand correctly the issue!
Sorry, something went wrong.
No branches or pull requests
in https://github.com/Project-OSmOSE/OSEkit/blob/main/src/OSmOSE/Spectrogram.py , we need to revise the definiton of
list_timestamps
, currently defined asshould be defined as the middle value of the wav (or the tuile if self.zoom_level>0) time boundaries
The text was updated successfully, but these errors were encountered: