Anshul Singhvi

Results 385 issues of Anshul Singhvi

- `spatialslices = false`: if true, run `f` on the slices of the datacube in `X, Y`. You can also pass a tuple of dimensions to specify which dims to...

I forgot parens for namedtuple here ```julia-repl julia> precip_cellarea_stack = RasterStack(; precip = precip, cellarea = cellarea(precip)) ERROR: StackOverflowError: Stacktrace: [1] RasterStack(layers::@NamedTuple{}; resize::Rasters.NoKW, _layers::@NamedTuple{}, dims::Tuple{}, refdims::Tuple{}, missingval::@NamedTuple{}, metadata::DimensionalData.Dimensions.Lookups.NoMetadata, layermetadata::@NamedTuple{}, layerdims::@NamedTuple{},...

bug

not sure if we want this size or not but that's easy to configure

enhancement
performance

Successor to #775. This provides a switch that allows you to iterate directly over the values of a rasterstack, instead of iterating over the layers and then the layer values....

we still cannot load CF CRS natively, but most writers will also write the CRS in string form, which we can read. The key indicates the format. Fix #935 Partially...

It seems that with Interpolations.jl and Proj.jl, we can already get native resampling pretty easily using Images.jl's inverse warp functionality. This is only doable if we have a known desired...

enhancement
performance
needs thought

See the files in this zipfile: https://github.com/user-attachments/files/19419830/sub_leaf_type_2021.zip ```julia using ArchGDAL dataset = ArchGDAL.read("sub_leaf_type_2021/sub_leaf_type_2021.tif") ArchGDAL.metadata(dataset) ``` yields ```julia 2-element Vector{String}: "AREA_OR_POINT=Area" "DataType=Generic" ``` but if I open it as a Raster...

bug

It would be very cool to get https://github.com/eumetsat/MetopDatasets.jl as a backend for Rasters. It also looks like all the metopdatasets stuff has matrix lookups, so it would be a good...

enhancement

Since GeometryOps will have the natural indexing structure soon, it may be useful to explore whether we should use that in Rasters as well. We can use it to accelerate...

enhancement
performance

seems we need this now, will move the code to GeometryOps / Proj / GFT / wherever later but want to at least get a working implementation here. this is...