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
The name property of DataArray matches up with getName() of Dataset and ImgPlus.
name
DataArray
getName()
Dataset
ImgPlus
The text was updated successfully, but these errors were encountered:
Hi Curtis! I also ran into this here: spatial-image/multiscale-spatial-image#23
Additional note -- it was helpful to convert getName() from a Java String object to a Python string with str so it could be serialized to Zarr:
str
# The DataArray name needs to be set image_da.name = str(image.getName())
Sorry, something went wrong.
Thanks @thewtex. I commented on your PR. I also filed #200 here to cover the conversion issue leading to serialization woes.
Successfully merging a pull request may close this issue.
The
name
property ofDataArray
matches up withgetName()
ofDataset
andImgPlus
.The text was updated successfully, but these errors were encountered: