Dan Baston

Results 264 comments of Dan Baston

The two cases (width=2162 or width=2163) and up hitting a different path around here: https://github.com/mapserver/mapserver/blob/master/mapresample.c#L976 In the 2162 case, `dfDeltaX` is computed to be positive, and the resampling takes place...

Here's what seems to be going on. - `msApproxTransformer` wants to transform a scanline in map pixel space (0.5 to 2162.5) to image space (0-719). - It first uses PROJ...

This particular case could be fixed by using PROJ to transform five points instead of three and then checking that, in addition to a successful interpolation of the center point,...

@jmckenna can you please re-open? The commit message in 5f89b67 references this issue by accident.

FWIW, the workaround I'm currently using is to copy PROJ strings for the EPSG codes I need into a a new file saved as `/usr/share/proj/epsg`, and then adding new codes...

`NA` values in the primary raster are always ignored. `NA` values in the weighting raster propagate to the result. To avoid this, you can set the `default_weight` argument.

I suppose it's possible to add, but would there be any advantage over `raster::extract` ?

Thanks @jeffreyevans , I'm glad you find the package useful. Some thoughts: - if you're using this package as a replacement for `raster` or `velox`, take care that the handling...

terra `SpatRaster` is supported and I would strongly recommend using it. I can look into `SpatVector`. I would not expect `exactextractr` to do any better than `terra` for point extraction,...