v0.14.0
Rasters v0.14.0
Breaking changes
missingval
is nowmissing
by default. You can set it withmissingval=somethingelse
likeNaN
.missingval=Rasters.missingval
will just run themissingval
function on the source dataset to find the existing missing value, which is pretty much the behaviour before this PR. You can also domissingval=source=>dest
with aPair
if you know there is a missing value that is incorrectly/not specified in the files metadata - there will be no automatic detection at all.scale
andoffset
are applied by default where found in array metadata.scaled=false
inRaster
orRasterStack
will turn this off.raw=true
will too, and also use the original missing value - the source array will be unchanged.
-aggregated
anddisaggregate
have slightly changed arguments and keywords, along with optimisations
-mosaic
also has some argument/keyword changes
Merged pull requests:
- Breaking: Faster/better
aggregate
(#763) (@rafaqz) - CompatHelper: bump compat for GRIBDatasets in [weakdeps] to 0.4, (keep existing compat) (#805) (@github-actions[bot])
- Faster
mosaic
(#839) (@rafaqz) - CompatHelper: bump compat for Makie in [weakdeps] to 0.22, (keep existing compat) (#858) (@github-actions[bot])
- add multidimensional spatial means tutorial (#860) (@tiemvanderdeure)
- Merge breaking changes (#863) (@rafaqz)