Takuya Iwanaga
Takuya Iwanaga
I'm running some code on two separate computers and have experienced an issue where after an update, most approaches to indexing stopped working on one computer, but not the other....
In this section of the docs on [handling axes names](https://juliadatacubes.github.io/YAXArrays.jl/dev/UserGuide/faq#Extract-the-axes-names-from-a-Cube) it is stated: > WARNING > To get the axes of a YAXArray use the dims function instead of the...
The resample method with filename argument provided outputs uncompressed data. ```julia resample( a_raster_to_write; crs=some_crs, filename="test.tiff" ) ``` I understand it uses `gdalwarp` under the hood, but due to the way...
Cross-posting with the hope of increasing visibility and receiving advice: https://github.com/JuliaDataCubes/YAXArrays.jl/issues/416
Addresses #180 caused by lack of support for vector-based indexing. (related issue: https://github.com/JuliaDataCubes/YAXArrays.jl/issues/416)
Looking at how Rasters interacts with GDAL, it seems that I should be able to output a [COG](https://gdal.org/drivers/raster/cog.html). ```julia Rasters.write( mask_path, a_raster; ext=".tiff", source="gdal", driver="COG" ) ``` As I understand...
Note to future selves that this deprecation warning is also thrown: ```python [SALib/util/__init__.py:274): FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and...
Had to reinstall my OS recently so taking the opportunity to properly document setting up a development environment.
Correct the bootstrapping method applied for FAST analysis by replacing the sampling with replacement approach with a block boostrapping approach which, in my view, better preserves the local frequency structure....
As encountered in #643 , it is not immediately clear why NaN values occur when performing grouped analyses with the Morris method. The documentation can clarify this to reduce friction.