Edzer Pebesma

Results 708 comments of Edzer Pebesma

Cool, looks like someone finally implements support for spatially intensive / extensive variables in file formats. This could be used as the default value for the `extensive` argument in [st_interpolate_aw](https://r-spatial.github.io/sf/reference/interpolate_aw.html)....

Please provide a working reprex: ```r > library(ggplot2) > library(stars) Loading required package: abind Loading required package: sf Linking to GEOS 3.10.2, GDAL 3.4.3, PROJ 8.2.0; sf_use_s2() is TRUE >...

As I mentioned, the first plot is a matter of two base plot methods (`plot` and `contour`) that make different assumptions, so don't match, but also have nothing to do...

> Given stars::st_contour is using the same input file as graphics::contour & fishtrack3d (read in by stars::read_stars for all), one would expect the same contours for each of them, no?...

Thanks, I hope this clarifies more.

See section `subsetting` [here](https://r-spatial.github.io/stars/articles/stars1.html#subsetting) which shows that by default the cells with cell center intersecting the geometry are selected. However (read `?st_crop`) when you want all cells touched then use...

Users also have the option to suppress messages, and I've seen packages that use `sf` using `suppressMessages()` around those calls to `sf` that generate messages. But they can't make a...

No idea, but with ``` > library(sf) Linking to GEOS 3.8.1, GDAL 3.1.3, PROJ 7.1.1 ``` I see for the first transformation ``` Warning messages: 1: In CPL_crs_parameters(x) : GDAL...

Please try a similar experiment with GDAL standalone tools, or PROJ standalone tools, in order to identify whether your issue is with `sf` or with the underlying software (GDAL and/or...

`st_graticule` segmentizes the polygon formed by the bounding rectangle, and transforms that to get the coordinate range in the transformed space. That shape, projected, is typically no longer a box....