Romain Hugonnet

Results 122 issues of Romain Hugonnet

Ideas based on Astropy and their amazing NDData class to work in a World CRS with unit/uncertainty (we've been working quite a lot on the error subject also! :stuck_out_tongue:): https://github.com/astropy/astropy/blob/main/astropy/nddata/nddata.py...

enhancement

Work in progress in NumPy to add `__array_ufunc__` and `__array_function__` to `np.ma`, after which we'll be able to integrate that much more easily in GeoUtils: https://github.com/numpy/numpy/pull/22914 https://github.com/numpy/numpy/pull/22913

enhancement

It seems we are using this kind of code quite often when we want to select one or several geometries (e.g., https://github.com/GlacioHack/xdem/blob/main/tests/test_volume.py#L22): ```python outlines = orig_outlines.copy() outlines.ds = outlines.ds.loc[outlines.ds["NAME"] ==...

enhancement

Ongoing Resolves #561 Resolves #485 Resolves #546 Resolves #327 (except plot but those are mentioned in https://github.com/GlacioHack/xdem/issues/139) Big step forward for #435 TO-DO: - [x] Fix resolution error in `NuthKaab`...

Should be "Dartnell et al. (2004)" and not "Dartnell (2000)". To address in #502

documentation

Addressing this in #530 right now. Right now we use different code for `NuthKaab`, `GradientDescending`, and we will need this Python code for `ICP` (#483).

enhancement
priority
architecture

See https://github.com/GlacioHack/xdem/pull/526#issuecomment-2134784437

documentation
priority

We have a lot of steps that extract the NumPy array/transform from a `Raster`/`Xarray` dataset, and then re-build the object in the `fit` function to be able to apply the...

performance
architecture

The `scipy.interpolate.RectBivariateSpline` interpolator is a special-case of regular grid interpolation (corresponding to `scipy.interpn(method="splinef2d")`, while our 2D point interpolation/resampling can use any other method of `interpn` (`"linear"` which is the default,...

Right now the example files are loaded with `Raster`, and I think I remember a couple issues popping up with a `DEM` in some specific cases

test-suite