-
Notifications
You must be signed in to change notification settings - Fork 140
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
Enable data editing for SubImage #151
Comments
What happens if you try this:
|
The first lines give me the shape of the original image: But the second part fails: Edit: The issue appears to be unique to older Python versions! |
Ah, I didn't notice it was python 2.x. And if it was 32-bit python, then |
Out of curiosity, what does this print for your python version:
|
|
Ok, so that looks like it is the problem. For your system & python version, it can only handle a max file size of 2 GB but yours is larger than that. |
I have large .bsq images I cannot load into memory.
Spectral
fails to apply the.open_memmap
method to theBsqFile
instance created from images (see this post).Lacking other options, I wondered whether it would be possible to enable editing for single pixels, bands, or regions in order to assign values? Could a
writable = True
option be added to.read_band()
,.read_bands()
,.read_pixel()
, and.read_subimage()
, or is this not possible?The text was updated successfully, but these errors were encountered: