Amaury Dehecq

Results 93 comments of Amaury Dehecq

> This will be helpfull for a nice report with the CLI, we must detail this ticket :) Yes, I would love to have these plots generated automatically by the...

Hi, I agree, this would be a useful functionality that many people would use. This would not be too complicated to implement, using our [point interpolation](https://geoutils.readthedocs.io/en/stable/raster_vector_point.html#point-interpolation). If you feel like...

Hi Gabin, Thanks for raising the issue! Indeed, a quick workaround is to run: ``` raster_3b = gu.Raster(gu.examples.get_path("everest_landsat_rgb"), load_data=True) # make sure data is loaded raster_1b = gu.Raster(gu.examples.get_path("everest_landsat_b4_cropped")) raster_3b.reproject(raster_1b) ```...

> Good idea, would basically be the equivalent of `crop` + `create_mask` + `set_mask`? I think so !

Mmmh, both good points... Although I find it more intuitive to do e.g. `rst.nodata = -9999` than `rst = rst.set_nodata(-9999)`, it's also a good idea to match geopandas syntax. After...

I think before going down the road of downsampling on our side (which might be less transparent/understable for the users), I would first try with different interpolation schemes: https://matplotlib.org/stable/gallery/images_contours_and_fields/interpolation_methods.html Maybe...

> Is this what you meant [@adehecq](https://github.com/adehecq)? I'm not sure I fully grasp how it makes sense to 3D transform an ortho-image relative to a DEM. Well, in the case...

Seems ok to me. Just a few comments: - I don't think you need the argument `resolution`. It's only needed when the input is not a Raster/DEM object, but a...

I'm struggling to understand all the commands in the Makefile. Could you please show an example of which commands would be run when typing `make install`? But in general, I'm...