Skip to content
New issue

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

Sc 50 disk backed operations #93

Merged
merged 4 commits into from
Feb 11, 2025
Merged

Conversation

ArneDefauw
Copy link
Collaborator

PR fixes issue when spatialdata object is disk-backed, see #90.

Fix was to do the following, e.g.

            if sdata.is_backed():
                sdata.write_element(output_layer)
                sdata_temp = read_zarr(sdata.path, selection=["images"])
                del sdata[output_layer]
                sdata[output_layer] = sdata_temp[output_layer]
                del sdata_temp

if spatialdata would support write_element( reload=True ), we should adapt our code, and use the reload parameter.

@ArneDefauw ArneDefauw merged commit 72c603a into main Feb 11, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant