-
Notifications
You must be signed in to change notification settings - Fork 13
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
GeoArrays.read(ga, masked=false) should probably be default #124
Comments
Could you specify how much slower? And are you only accessing a smaller part of a larger raster? Because Also, there's an open issue #108 for handling masked/nodata values in Once I fixed that issue, I agree that everything could be lazy by default. |
@evetion I'm working with subsets drawn from global .vrts, when |
That sounds familiar indeed. How do you handle nodata/missing values in that use case? Or do you have a separate mask vrt? |
It's depends a bit, sometimes I leave the no data value in the data and work with it that way... sometimes I fill the no_data value with NAN's after subsetting |
In all of my workflows I need to set masked=false when using GeoArrays.read otherwise I get really slow read times. Also masked=false results in a change in Type as
missings
are added. For this reason I thinkmasked=false
should be set as the defaultThe text was updated successfully, but these errors were encountered: