Ocean-Data-Lab / ooipy

Python library and demo code for processing and visualization of data from Ocean Observatories Initiative (OOI)
https://ooipy.readthedocs.io/en/latest/
MIT License
15 stars 7 forks source link

Fix spectrogram plot function #103

Closed John-Ragland closed 1 year ago

John-Ragland commented 2 years ago

spectrogram plot function uses contourf, which takes a long time for larger spectrograms since it has to compute a contour

Using plt.imshow() and make the x and y axis would be prefered

John-Ragland commented 1 year ago

This should be fixed by changing spectrogram object #135