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
ImageTool hangs on opening data that includes a non-uniform coord with int64 dtype.
Should behave the same way as float64
import numpy as np import xarray as xr import erlab xr.DataArray( np.random.rand(5, 5), coords=dict( x=np.arange(5, dtype=np.float64), y=np.array([1.0, 2.0, 6.0, 7.0, 9.0], dtype=np.int64), ), ).qshow()
No response
The text was updated successfully, but these errors were encountered:
kmnhan
No branches or pull requests
Description
ImageTool hangs on opening data that includes a non-uniform coord with int64 dtype.
Expected behavior
Should behave the same way as float64
Minimal Complete Verifiable Example
MVCE confirmation
Additional context
No response
The text was updated successfully, but these errors were encountered: